diff --git a/MANIFEST.in b/MANIFEST.in index b25045b8213..ac545d3d8d4 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -9,8 +9,9 @@ include bin/server.pkey include bin/gpl.txt include man/openerp-server.1 include man/openerp_serverrc.5 -recursive-include pixmaps +recursive-include pixmaps * +recursive-include win32 * recursive-include doc * recursive-include bin *xml *xsl *sql *rml *sxw *csv *rng -graft bin/addons/ +graft bin/addons global-exclude *pyc *~ diff --git a/README b/README index 80fb4701288..5725ce9f866 100644 --- a/README +++ b/README @@ -15,16 +15,3 @@ database, dynamic GUIs, customizable reports, NET-RPC and XML-RPC interfaces, .. For more information, please visit: http://www.openerp.com -About Tiny.be ----------------- - -Tiny.be is a company specialising in the development of high-level applications -and websites. All the company products are free software, released under the -GNU GPL license. - -Our main products include: OpenERP (ERP & CRM for SMB), Tiny eCommerce -(complete eCommerce system), OpenReport (automated generation of complex -documents), Tiny Raytracer, ... - -For more information, please visit: -http://www.tiny.be diff --git a/bin/addons/__init__.py b/bin/addons/__init__.py index e07fdd07bbc..72e9fb2c6e2 100644 --- a/bin/addons/__init__.py +++ b/bin/addons/__init__.py @@ -3,6 +3,7 @@ # # OpenERP, Open Source Management Solution # Copyright (C) 2004-2009 Tiny SPRL (). +# Copyright (C) 2010 OpenERP s.a. (). # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -27,12 +28,11 @@ import zipimport import osv import tools import tools.osutil +from tools.safe_eval import safe_eval as eval import pooler import netsvc -from osv import fields -import addons import zipfile import release @@ -63,9 +63,6 @@ ad_paths.append(_ad) # for get_module_path # Modules already loaded loaded = [] -#Modules whch raised error -not_loaded = [] - class Graph(dict): def addNode(self, name, deps): @@ -80,14 +77,15 @@ class Graph(dict): Node(name, self) def update_from_db(self, cr): + if not len(self): + return # 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(self.keys(), {'id': 0, 'state': 'uninstalled', 'dbdemo': False, 'installed_version': None}) ## Then we get the values from the database cr.execute('SELECT name, id, state, demo AS dbdemo, latest_version AS installed_version' ' FROM ir_module_module' - ' WHERE name in (%s)' % (','.join(['%s'] * len(self))), - additional_data.keys() + ' WHERE name IN %s',(tuple(additional_data),) ) ## and we update the default values with values from the database @@ -97,8 +95,6 @@ class Graph(dict): for k, v in additional_data[package.name].items(): setattr(package, k, v) - - def __iter__(self): level = 0 done = set(self.keys()) @@ -207,14 +203,14 @@ def get_module_filetree(module, dir='.'): return tree -def get_module_as_zip_from_module_directory(module_directory, b64enc=True, src=True): - """Compress a module directory +def zip_directory(directory, b64enc=True, src=True): + """Compress a directory - @param module_directory: The module directory + @param directory: The directory to compress @param base64enc: if True the function will encode the zip file with base64 @param src: Integrate the source files - @return: a stream to store in a file-like object + @return: a string containing the zip file """ RE_exclude = re.compile('(?:^\..+\.swp$)|(?:\.py[oc]$)|(?:\.bak$)|(?:\.~.~$)', re.I) @@ -229,16 +225,16 @@ def get_module_as_zip_from_module_directory(module_directory, b64enc=True, src=T archname = StringIO() archive = PyZipFile(archname, "w", ZIP_DEFLATED) - archive.writepy(module_directory) - _zippy(archive, module_directory, src=src) + archive.writepy(directory) + _zippy(archive, directory, src=src) archive.close() - val = archname.getvalue() + archive_data = archname.getvalue() archname.close() if b64enc: - val = base64.encodestring(val) + return base64.encodestring(archive_data) - return val + return archive_data def get_module_as_zip(modulename, b64enc=True, src=True): """Generate a module as zip file with the source or not and can do a base64 encoding @@ -260,7 +256,7 @@ def get_module_as_zip(modulename, b64enc=True, src=True): if b64enc: val = base64.encodestring(val) else: - val = get_module_as_zip_from_module_directory(ap, b64enc, src) + val = zip_directory(ap, b64enc, src) return val @@ -274,7 +270,17 @@ def get_module_resource(module, *args): @return: absolute path to the resource """ a = get_module_path(module) - return a and opj(a, *args) or False + res = a and opj(a, *args) or False + if zipfile.is_zipfile( a +'.zip') : + zip = zipfile.ZipFile( a + ".zip") + files = ['/'.join(f.split('/')[1:]) for f in zip.namelist()] + res = '/'.join(args) + if res in files: + return opj(a, res) + elif os.path.isfile(res): + return res + return False + def get_modules(): @@ -301,12 +307,16 @@ def load_information_from_description_file(module): """ :param module: The name of the module (sale, purchase, ...) """ + for filename in ['__openerp__.py', '__terp__.py']: - description_file = addons.get_module_resource(module, filename) - if os.path.isfile(description_file): + description_file = get_module_resource(module, filename) + if description_file : return eval(tools.file_open(description_file).read()) - logging.warning('The module %s does not contain a description file: __openerp__.py or __terp__.py (deprecated)' % module) + #TODO: refactor the logger in this file to follow the logging guidelines + # for 6.0 + logging.getLogger('addons').debug('The module %s does not contain a description file:'\ + '__openerp__.py or __terp__.py (deprecated)', module) return {} def get_modules_with_version(): @@ -333,15 +343,11 @@ def upgrade_graph(graph, cr, module_list, force=None): for module in module_list: mod_path = get_module_path(module) terp_file = get_module_resource(module, '__openerp__.py') - if not os.path.isfile(terp_file): + if not terp_file: terp_file = get_module_resource(module, '__terp__.py') - if not mod_path or not terp_file: - global not_loaded - not_loaded.append(module) - logger.notifyChannel('init', netsvc.LOG_WARNING, 'module %s: not installable' % (module)) - raise osv.osv.except_osv('Error!',"Module '%s' was not found" % (module,)) - + logger.notifyChannel('init', netsvc.LOG_WARNING, 'module %s: not found, skipped' % (module)) + continue if os.path.isfile(terp_file) or zipfile.is_zipfile(mod_path+'.zip'): try: @@ -351,7 +357,8 @@ def upgrade_graph(graph, cr, module_list, force=None): raise if info.get('installable', True): packages.append((module, info.get('depends', []), info)) - + else: + logger.notifyChannel('init', netsvc.LOG_WARNING, 'module %s: not installable, skipped' % (module)) dependencies = dict([(p, deps) for p, deps, data in packages]) current, later = set([p for p, dep, data in packages]), set() @@ -589,8 +596,85 @@ class MigrationManager(object): if mod: del mod +log = logging.getLogger('init') def load_module_graph(cr, graph, status=None, perform_checks=True, **kwargs): + + def process_sql_file(cr, fp): + queries = fp.read().split(';') + for query in queries: + new_query = ' '.join(query.split()) + if new_query: + cr.execute(new_query) + + def load_init_update_xml(cr, m, idref, mode, kind): + for filename in package.data.get('%s_xml' % kind, []): + logger.notifyChannel('init', netsvc.LOG_INFO, 'module %s: loading %s' % (m, filename)) + _, ext = os.path.splitext(filename) + fp = tools.file_open(opj(m, filename)) + if ext == '.csv': + noupdate = (kind == 'init') + tools.convert_csv_import(cr, m, os.path.basename(filename), fp.read(), idref, mode=mode, noupdate=noupdate) + elif ext == '.sql': + process_sql_file(cr, fp) + elif ext == '.yml': + tools.convert_yaml_import(cr, m, fp, idref, mode=mode, **kwargs) + else: + tools.convert_xml_import(cr, m, fp, idref, mode=mode, **kwargs) + fp.close() + + def load_demo_xml(cr, m, idref, mode): + for xml in package.data.get('demo_xml', []): + name, ext = os.path.splitext(xml) + logger.notifyChannel('init', netsvc.LOG_INFO, 'module %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), fp.read(), idref, mode=mode, noupdate=True) + elif ext == '.yml': + tools.convert_yaml_import(cr, m, fp, idref, mode=mode, noupdate=True, **kwargs) + else: + tools.convert_xml_import(cr, m, fp, idref, mode=mode, noupdate=True, **kwargs) + fp.close() + + def load_data(cr, module_name, id_map, mode): + _load_data(cr, module_name, id_map, mode, 'data') + + def load_demo(cr, module_name, id_map, mode): + _load_data(cr, module_name, id_map, mode, 'demo') + + def load_test(cr, module_name, id_map, mode): + cr.commit() + if not tools.config.options['test_disable']: + try: + _load_data(cr, module_name, id_map, mode, 'test') + except Exception, e: + logger.notifyChannel('ERROR', netsvc.LOG_TEST, e) + pass + finally: + if tools.config.options['test_commit']: + cr.commit() + else: + cr.rollback() + + def _load_data(cr, module_name, id_map, mode, kind): + noupdate = (kind == 'demo') + for filename in package.data.get(kind, []): + _, ext = os.path.splitext(filename) + log.info("module %s: loading %s", module_name, filename) + pathname = os.path.join(module_name, filename) + file = tools.file_open(pathname) + # TODO manage .csv file with noupdate == (kind == 'init') + if ext == '.sql': + process_sql_file(cr, file) + elif ext == '.csv': + noupdate = (kind == 'init') + tools.convert_csv_import(cr, module_name, pathname, file.read(), id_map, mode, noupdate) + elif ext == '.yml': + tools.convert_yaml_import(cr, module_name, file, id_map, mode, noupdate) + else: + tools.convert_xml_import(cr, module_name, file, id_map, mode, noupdate) + file.close() + # **kwargs is passed directly to convert_xml_import if not status: status = {} @@ -639,48 +723,21 @@ def load_module_graph(cr, graph, status=None, perform_checks=True, **kwargs): for kind in ('init', 'update'): if package.state=='to upgrade': # upgrading the module information - modobj.write(cr, 1, [mid], { - 'description': package.data.get('description', ''), - 'shortdesc': package.data.get('name', ''), - 'author': package.data.get('author', 'Unknown'), - 'website': package.data.get('website', ''), - 'license': package.data.get('license', 'GPL-2'), - 'certificate': package.data.get('certificate') or None, - }) - for filename in package.data.get('%s_xml' % kind, []): - logger.notifyChannel('init', netsvc.LOG_INFO, 'module %s: loading %s' % (m, filename)) - name, ext = os.path.splitext(filename) - fp = tools.file_open(opj(m, filename)) - if ext == '.csv': - noupdate=False - if kind == 'init': - noupdate=True - tools.convert_csv_import(cr, m, os.path.basename(filename), fp.read(), idref, mode=mode, noupdate=noupdate) - elif ext == '.sql': - queries = fp.read().split(';') - for query in queries: - new_query = ' '.join(query.split()) - if new_query: - cr.execute(new_query) - elif ext == '.yml': - tools.convert_yaml_import(cr, m, fp, idref, mode=mode, **kwargs) - else: - tools.convert_xml_import(cr, m, fp, idref, mode=mode, **kwargs) - fp.close() + modobj.write(cr, 1, [mid], modobj.get_values_from_terp(package.data)) + load_init_update_xml(cr, m, idref, mode, kind) + load_data(cr, m, idref, mode) if hasattr(package, 'demo') or (package.dbdemo and package.state != 'installed'): status['progress'] = (float(statusi)+0.75) / len(graph) - for xml in package.data.get('demo_xml', []): - name, ext = os.path.splitext(xml) - logger.notifyChannel('init', netsvc.LOG_INFO, 'module %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), fp.read(), idref, mode=mode, noupdate=True) - elif ext == '.yml': - tools.convert_yaml_import(cr, m, fp, idref, mode=mode, **kwargs) - else: - tools.convert_xml_import(cr, m, fp, idref, mode=mode, noupdate=True, **kwargs) - fp.close() + load_demo_xml(cr, m, idref, mode) + load_demo(cr, m, idref, mode) cr.execute('update ir_module_module set demo=%s where id=%s', (True, mid)) + + # launch tests only in demo mode, as most tests will depend + # on demo data. Other tests can be added into the regular + # 'data' section, but should probably not alter the data, + # as there is no rollback. + load_test(cr, m, idref, mode) + package_todo.append(package.name) migrations.migrate_module(package, 'post') @@ -710,6 +767,20 @@ def load_module_graph(cr, graph, status=None, perform_checks=True, **kwargs): return has_updates +def _check_module_names(cr, module_names): + mod_names = set(module_names) + if 'base' in mod_names: + # ignore dummy 'all' module + if 'all' in mod_names: + mod_names.remove('all') + if mod_names: + cr.execute("SELECT count(id) AS count FROM ir_module_module WHERE name in %s", (tuple(mod_names),)) + if cr.dictfetchone()['count'] != len(mod_names): + # find out what module name(s) are incorrect: + cr.execute("SELECT name FROM ir_module_module") + incorrect_names = mod_names.difference([x['name'] for x in cr.dictfetchall()]) + logging.getLogger('init').warning('invalid module names, ignored: %s', ", ".join(incorrect_names)) + def load_modules(db, force_demo=False, status=None, update_module=False): if not status: status = {} @@ -732,19 +803,19 @@ def load_modules(db, force_demo=False, status=None, update_module=False): # NOTE: Try to also load the modules that have been marked as uninstallable previously... STATES_TO_LOAD = ['installed', 'to upgrade', 'uninstallable'] graph = create_graph(cr, ['base'], force) + if not graph: + logger.notifyChannel('init', netsvc.LOG_CRITICAL, 'module base cannot be loaded! (hint: verify addons-path)') + raise osv.osv.except_osv('Could not load base module', 'module base cannot be loaded! (hint: verify addons-path)') has_updates = load_module_graph(cr, graph, status, perform_checks=(not update_module), report=report) - global not_loaded - if not_loaded: - #If some module is not loaded don't proceed further - not_loaded = [] - return if update_module: modobj = pool.get('ir.module.module') logger.notifyChannel('init', netsvc.LOG_INFO, 'updating modules list') if ('base' in tools.config['init']) or ('base' in tools.config['update']): modobj.update_list(cr, 1) + _check_module_names(cr, itertools.chain(tools.config['init'].keys(), tools.config['update'].keys())) + mods = [k for k in tools.config['init'] if tools.config['init'][k]] if mods: ids = modobj.search(cr, 1, ['&', ('state', '=', 'uninstalled'), ('name', 'in', mods)]) @@ -765,8 +836,8 @@ def load_modules(db, force_demo=False, status=None, update_module=False): while True: loop_guardrail += 1 if loop_guardrail > 100: - raise ProgrammingError() - cr.execute("SELECT name from ir_module_module WHERE state in (%s)" % ','.join(['%s']*len(STATES_TO_LOAD)), STATES_TO_LOAD) + raise ValueError('Possible recursive module tree detected, aborting.') + cr.execute("SELECT name from ir_module_module WHERE state IN %s" ,(tuple(STATES_TO_LOAD),)) module_list = [name for (name,) in cr.fetchall() if name not in graph] if not module_list: @@ -782,9 +853,19 @@ def load_modules(db, force_demo=False, status=None, update_module=False): has_updates = has_updates or r if has_updates: - cr.execute("""select model,name from ir_model where id not in (select model_id from ir_model_access)""") + cr.execute("""select model,name from ir_model where id NOT IN (select distinct model_id from ir_model_access)""") for (model, name) in cr.fetchall(): - logger.notifyChannel('init', netsvc.LOG_WARNING, 'object %s (%s) has no access rules!' % (model, name)) + model_obj = pool.get(model) + if not isinstance(model_obj, osv.osv.osv_memory): + logger.notifyChannel('init', netsvc.LOG_WARNING, 'object %s (%s) has no access rules!' % (model, name)) + + # Temporary warning while we remove access rights on osv_memory objects, as they have + # been replaced by owner-only access rights + cr.execute("""select distinct mod.model, mod.name from ir_model_access acc, ir_model mod where acc.model_id = mod.id""") + for (model, name) in cr.fetchall(): + model_obj = pool.get(model) + if isinstance(model_obj, osv.osv.osv_memory): + logger.notifyChannel('init', netsvc.LOG_WARNING, 'In-memory object %s (%s) should not have explicit access rules!' % (model, name)) cr.execute("SELECT model from ir_model") for (model,) in cr.fetchall(): @@ -819,11 +900,11 @@ def load_modules(db, force_demo=False, status=None, update_module=False): cr.execute('''delete from ir_ui_menu where - (id not in (select parent_id from ir_ui_menu where parent_id is not null)) + (id not IN (select parent_id from ir_ui_menu where parent_id is not null)) and - (id not in (select res_id from ir_values where model='ir.ui.menu')) + (id not IN (select res_id from ir_values where model='ir.ui.menu')) and - (id not in (select res_id from ir_model_data where model='ir.ui.menu'))''') + (id not IN (select res_id from ir_model_data where model='ir.ui.menu'))''') cr.commit() if not cr.rowcount: break diff --git a/bin/addons/base/__terp__.py b/bin/addons/base/__openerp__.py similarity index 62% rename from bin/addons/base/__terp__.py rename to bin/addons/base/__openerp__.py index f6d31660335..492c397754d 100644 --- a/bin/addons/base/__terp__.py +++ b/bin/addons/base/__openerp__.py @@ -1,8 +1,9 @@ # -*- coding: utf-8 -*- ############################################################################## -# +# # OpenERP, Open Source Management Solution # Copyright (C) 2004-2009 Tiny SPRL (). +# Copyright (C) 2010 OpenERP s.a. (). # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as @@ -15,54 +16,78 @@ # GNU Affero General Public License for more details. # # You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . +# along with this program. If not, see . # ############################################################################## { 'name': 'Base', - 'version': '1.1', + 'version': '1.2', 'category': 'Generic Modules/Base', 'description': """The kernel of OpenERP, needed for all installation.""", - 'author': 'Tiny', + 'author': 'OpenERP SA', + 'maintainer': 'OpenERP SA', 'website': 'http://www.openerp.com', 'depends': [], 'init_xml': [ 'base_data.xml', - 'base_menu.xml', 'security/base_security.xml', + 'base_menu.xml', 'res/res_security.xml', 'res/res_config.xml', - 'maintenance/maintenance_security.xml' + 'data/res.country.state.csv' ], 'update_xml': [ 'base_update.xml', 'ir/wizard/wizard_menu_view.xml', 'ir/ir.xml', 'ir/workflow/workflow_view.xml', - 'module/module_wizard.xml', 'module/module_view.xml', - 'module/module_web_view.xml', 'module/module_data.xml', 'module/module_report.xml', + 'module/wizard/base_module_import_view.xml', + 'module/wizard/base_module_update_view.xml', + 'module/wizard/base_language_install_view.xml', + 'module/wizard/base_import_language_view.xml', + 'module/wizard/base_module_upgrade_view.xml', + 'module/wizard/base_module_configuration_view.xml', + 'module/wizard/base_export_language_view.xml', + 'module/wizard/base_update_translations_view.xml', 'res/res_request_view.xml', 'res/res_lang_view.xml', - 'res/res_company_view.xml', + 'res/res_log_view.xml', 'res/partner/partner_report.xml', 'res/partner/partner_view.xml', - 'res/partner/partner_wizard.xml', 'res/bank_view.xml', 'res/country_view.xml', 'res/res_currency_view.xml', 'res/partner/crm_view.xml', + 'res/partner/wizard/partner_sms_send_view.xml', + 'res/partner/wizard/partner_wizard_spam_view.xml', + 'res/partner/wizard/partner_clear_ids_view.xml', + 'res/partner/wizard/partner_wizard_ean_check_view.xml', 'res/partner/partner_data.xml', + 'res/ir_property_view.xml', 'security/base_security.xml', 'maintenance/maintenance_view.xml', - 'security/ir.model.access.csv' + + 'security/ir.model.access.csv', + 'res/res_widget_view.xml', + 'res/res_widget_data.xml', + ], + 'demo_xml': [ + 'base_demo.xml', + 'res/partner/partner_demo.xml', + 'res/partner/crm_demo.xml', + ], + 'test': [ + 'test/base_test.xml', + #'test/base_test.yml' + 'test/test_context.xml', + 'test/bug_lp541545.xml', ], - 'demo_xml': ['base_demo.xml', 'res/partner/partner_demo.xml', 'res/partner/crm_demo.xml'], 'installable': True, 'active': True, 'certificate': '0076807797149', diff --git a/bin/addons/base/base.sql b/bin/addons/base/base.sql index 1f7955eff10..71bfda541c4 100644 --- a/bin/addons/base/base.sql +++ b/bin/addons/base/base.sql @@ -145,9 +145,10 @@ CREATE TABLE res_users ( email varchar(64) default null, context_tz varchar(64) default null, signature text, --- action_id int references ir_act_window on delete set null, context_lang varchar(64) default '', - action_id int, + -- No FK references below, will be added later by ORM + -- (when the destination rows exist) + company_id int, primary key(id) ); alter table res_users add constraint res_users_login_uniq unique (login); @@ -158,20 +159,6 @@ CREATE TABLE res_groups ( primary key(id) ); -create table res_roles ( - id serial NOT NULL, - parent_id int references res_roles on delete set null, - name varchar(64) NOT NULL, - primary key(id) -); - -CREATE TABLE res_roles_users_rel ( - uid integer NOT NULL references res_users on delete cascade, - rid integer NOT NULL references res_roles on delete cascade -); -create index res_roles_users_rel_uid_idx on res_roles_users_rel (uid); -create index res_roles_users_rel_rid_idx on res_roles_users_rel (rid); - CREATE TABLE res_groups_users_rel ( uid integer NOT NULL references res_users on delete cascade, gid integer NOT NULL references res_groups on delete cascade @@ -221,7 +208,7 @@ create table wkf_transition trigger_expr_id varchar(128) default NULL, signal varchar(64) default null, - role_id int references res_roles on delete set null, + group_id int references res_groups on delete set null, primary key(id) ); @@ -300,6 +287,7 @@ CREATE TABLE ir_module_module ( certificate character varying(64), description text, demo boolean default False, + web boolean DEFAULT FALSE, primary key(id) ); ALTER TABLE ir_module_module add constraint name_uniq unique (name); @@ -342,7 +330,7 @@ CREATE TABLE ir_model_data ( -- Users --------------------------------- -insert into res_users (id,login,password,name,action_id,active) values (1,'admin',NULL,'Administrator',NULL,True); +insert into res_users (id,login,password,name,active,company_id,context_lang) values (1,'admin','admin','Administrator',True,1,'en_US'); insert into ir_model_data (name,module,model,noupdate,res_id) values ('user_root','base','res.users',True,1); -- Compatibility purpose, to remove V6.0 diff --git a/bin/addons/base/base_data.xml b/bin/addons/base/base_data.xml index 4f61dd1ddfc..b4340e3faf0 100644 --- a/bin/addons/base/base_data.xml +++ b/bin/addons/base/base_data.xml @@ -1000,7 +1000,9 @@ - Tiny sprl + OpenERP S.A. + + @@ -1011,292 +1013,370 @@ (+32).81.81.37.00 default + + - + EUR EUR + 0.01 4 + + 1.0 - + - Tiny sprl + OpenERP S.A. Free Business Solutions - Web: http://tiny.be - Tel: (+32).81.81.37.00 - Bank: CPH 126-2013269-07 - IBAN: BE74 1262 0132 6907 - SWIFT: GKCCBEBB - VAT: BE0477.472.701 + Web: http://www.openerp.com - Tel: (+32).81.81.37.00 - Bank: CPH 126-2013269-07 + IBAN: BE74 1262 0132 6907 - SWIFT: CPHBBE75 - VAT: BE0477.472.701 - + - Tiny sprl + OpenERP S.A. - + + + Administrator + - + + + + + + + + + + - + + + + + USD USD + $ 0.01 4 - 1.3785 + 1.2834 - + Bs VEB + Bs 2.95 4 - 3132.9 + 2768.45 - + CAD CAD + $ 0.01 4 - 1.451 + 1.3388 - - + + CHF CHF + CHF 0.01 4 - 1.644 + 1.3086 - + BRL BRL + R$ 0.01 4 - 2.588 + 2.2344 - + CNY CNY + ¥ 0.01 4 - 10.4311 + 8.7556 - - + + COP COP + $ 0.01 4 + + 2933.8378 + + + CZK + 0.01 4 - + + 26.5634 + + + + kr DKK + kr 0.01 4 - 7.4416 + 7.4445 - - + + Ft HUF + Ft 0.01 4 + + 271.5621 + + + Rs IDR + Rs 0.01 4 - + + 65.8287 + + + + + 58.8287 + + + + Ls LVL + Ls 0.01 4 - 0.71 + 0.7086 - - + + kr NOK + kr 0.01 4 - 7.93 + 7.8668 - - + + PAB PAB + B/. 0.01 4 - 1.3813 + 1.2676 - - + PLN + 0.01 4 + + 4.1005 + + + kr SEK + kr 0.01 4 + + 10.3004 + + + GBP GBP + 0.01 4 - 0.675 + 0.8333 - + ARS ARS + $ 0.01 4 + + + 5.0881 + + - - - 5.6 - - - - + - INR - Rs + Rs + INR + Rs 0.01 4 - 0.634 + 59.9739 - + AUD AUD + $ 0.01 4 - 1.5266 + 1.4070 - + UAH UAH + 0.01 4 - 10.8266 + 10.1969 - + + Reserve + RSV + diff --git a/bin/addons/base/base_demo.xml b/bin/addons/base/base_demo.xml index 235e7e77b75..7779171fe08 100644 --- a/bin/addons/base/base_demo.xml +++ b/bin/addons/base/base_demo.xml @@ -6,8 +6,6 @@ demo Demo User Mr Demo - - diff --git a/bin/addons/base/base_menu.xml b/bin/addons/base/base_menu.xml index 0b85b6a49f8..676fd2ff015 100644 --- a/bin/addons/base/base_menu.xml +++ b/bin/addons/base/base_menu.xml @@ -1,18 +1,33 @@ - - - - - - + + + + + + + - - + + - - + + + + + + diff --git a/bin/addons/base/base_update.xml b/bin/addons/base/base_update.xml index 2f20199a4d8..0cf6eae845e 100644 --- a/bin/addons/base/base_update.xml +++ b/bin/addons/base/base_update.xml @@ -6,7 +6,7 @@ Languages ====================== --> - + - - - 10 + never + done - + always 1 - diff --git a/bin/addons/base/data/res.country.state.csv b/bin/addons/base/data/res.country.state.csv new file mode 100644 index 00000000000..d6b902e493b --- /dev/null +++ b/bin/addons/base/data/res.country.state.csv @@ -0,0 +1,52 @@ +"id","country_id:id","name","code" +state_us_1,us,"Alabama","AL" +state_us_2,us,"Alaska","AK" +state_us_3,us,"Arizona","AZ" +state_us_4,us,"Arkansas","AR" +state_us_5,us,"California","CA" +state_us_6,us,"Colorado","CO" +state_us_7,us,"Connecticut","CT" +state_us_8,us,"Delaware","DE" +state_us_9,us,"District of Columbia","DC" +state_us_10,us,"Florida","FL" +state_us_11,us,"Georgia","GA" +state_us_12,us,"Hawaii","HI" +state_us_13,us,"Idaho","ID" +state_us_14,us,"Illinois","IL" +state_us_15,us,"Indiana","IN" +state_us_16,us,"Iowa","IA" +state_us_17,us,"Kansas","KS" +state_us_18,us,"Kentucky","KY" +state_us_19,us,"Louisiana","LA" +state_us_20,us,"Maine","ME" +state_us_21,us,"Montana","MT" +state_us_22,us,"Nebraska","NE" +state_us_23,us,"Nevada","NV" +state_us_24,us,"New Hampshire","NH" +state_us_25,us,"New Jersey","NJ" +state_us_26,us,"New Mexico","NM" +state_us_27,us,"New York","NY" +state_us_28,us,"North Carolina","NC" +state_us_29,us,"North Dakota","ND" +state_us_30,us,"Ohio","OH" +state_us_31,us,"Oklahoma","OK" +state_us_32,us,"Oregon","OR" +state_us_33,us,"Maryland","MD" +state_us_34,us,"Massachusetts","MA" +state_us_35,us,"Michigan","MI" +state_us_36,us,"Minnesota","MN" +state_us_37,us,"Mississippi","MS" +state_us_38,us,"Missouri","MO" +state_us_39,us,"Pennsylvania","PA" +state_us_40,us,"Rhode Island","RI" +state_us_41,us,"South Carolina","SC" +state_us_42,us,"South Dakota","SD" +state_us_43,us,"Tennessee","TN" +state_us_44,us,"Texas","TX" +state_us_45,us,"Utah","UT" +state_us_46,us,"Vermont","VT" +state_us_47,us,"Virginia","VA" +state_us_48,us,"Washington","WA" +state_us_49,us,"West Virginia","WV" +state_us_50,us,"Wisconsin","WI" +state_us_51,us,"Wyoming","WY" diff --git a/bin/addons/base/i18n/am.po b/bin/addons/base/i18n/am.po index 6197c7c5cce..2c1cb0945d4 100644 --- a/bin/addons/base/i18n/am.po +++ b/bin/addons/base/i18n/am.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-03-10 04:45+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -249,11 +249,6 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -796,11 +791,6 @@ msgstr "" msgid "Website" msgstr "" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1327,7 +1317,6 @@ msgstr "" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1376,10 +1365,7 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." msgstr "" #. module: base @@ -1428,11 +1414,6 @@ msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2142,11 +2123,6 @@ msgstr "" msgid "Countries" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2757,11 +2733,6 @@ msgstr "" msgid "Benin" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3081,7 +3052,6 @@ msgstr "" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3196,9 +3166,7 @@ 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" +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 @@ -3741,11 +3709,6 @@ msgstr "" msgid "ir.translation" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4073,11 +4036,6 @@ msgstr "" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4694,11 +4652,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4945,7 +4898,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6058,7 +6010,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7807,12 +7758,6 @@ msgstr "" msgid "Seychelles" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7940,3 +7885,130 @@ msgstr "" #: selection:module.lang.install,init,lang:0 msgid "Russian / русский язык" msgstr "" + +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" diff --git a/bin/addons/base/i18n/ar.po b/bin/addons/base/i18n/ar.po index 01887ba31d2..7949bf77f5e 100644 --- a/bin/addons/base/i18n/ar.po +++ b/bin/addons/base/i18n/ar.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-01-14 04:45+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -248,11 +248,6 @@ msgstr "%y - السنة بدون القرن (من 00 إلى 99)" msgid "STOCK_GOTO_FIRST" msgstr "" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -795,11 +790,6 @@ msgstr "" msgid "Website" msgstr "" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1326,7 +1316,6 @@ msgstr "" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1375,10 +1364,7 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." msgstr "" #. module: base @@ -1427,11 +1413,6 @@ msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2141,11 +2122,6 @@ msgstr "" msgid "Countries" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2756,11 +2732,6 @@ msgstr "" msgid "Benin" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3080,7 +3051,6 @@ msgstr "" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3195,9 +3165,7 @@ 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" +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 @@ -3740,11 +3708,6 @@ msgstr "" msgid "ir.translation" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4072,11 +4035,6 @@ msgstr "" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4693,11 +4651,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4944,7 +4897,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6057,7 +6009,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7806,12 +7757,6 @@ msgstr "" msgid "Seychelles" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7939,3 +7884,130 @@ msgstr "" #: selection:module.lang.install,init,lang:0 msgid "Russian / русский язык" msgstr "" + +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" diff --git a/bin/addons/base/i18n/base.pot b/bin/addons/base/i18n/base.pot index 4bf5a808e5e..48ce827f149 100644 --- a/bin/addons/base/i18n/base.pot +++ b/bin/addons/base/i18n/base.pot @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.6\n" +"Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2009-12-18 08:39:22+0000\n" -"PO-Revision-Date: 2009-12-18 08:39:22+0000\n" +"POT-Creation-Date: 2010-10-18 17:46:15+0000\n" +"PO-Revision-Date: 2010-10-18 17:46:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -15,14 +15,23 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: base +#: view:ir.filters:0 +#: field:ir.model.fields,domain:0 +#: field:ir.rule,domain:0 +#: field:ir.rule,domain_force:0 +#: field:res.partner.title,domain:0 +msgid "Domain" +msgstr "" + #. module: base #: model:res.country,name:base.sh msgid "Saint Helena" msgstr "" #. module: base -#: wizard_view:res.partner.sms_send,init:0 -msgid "SMS - Gateway: clickatell" +#: view:ir.actions.report.xml:0 +msgid "Other Configuration" msgstr "" #. module: base @@ -31,6 +40,12 @@ msgid "%j - Day of the year as a decimal number [001,366]." msgstr "" #. module: base +#: selection:ir.property,type:0 +msgid "DateTime" +msgstr "" + +#. module: base +#: view:ir.values:0 #: field:ir.values,meta_unpickle:0 msgid "Metadata" msgstr "" @@ -48,24 +63,27 @@ msgid "You can not create this kind of document! (%s)" msgstr "" #. module: base -#: wizard_field:module.lang.import,init,code:0 +#: field:base.language.import,code:0 msgid "Code (eg:en__US)" msgstr "" #. module: base #: view:workflow:0 +#: view:workflow.activity:0 #: field:workflow.activity,wkf_id:0 #: field:workflow.instance,wkf_id:0 +#: field:workflow.transition,wkf_id:0 +#: field:workflow.workitem,wkf_id:0 msgid "Workflow" msgstr "" #. module: base -#: view:wizard.module.lang.export:0 -msgid "To browse official translations, you can visit this link: " +#: view:partner.sms.send:0 +msgid "SMS - Gateway: clickatell" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "Hungarian / Magyar" msgstr "" @@ -74,19 +92,24 @@ msgstr "" msgid "Workflow On" msgstr "" +#. module: base +#: field:ir.actions.act_window,display_menu_tip:0 +msgid "Display Menu Tips" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Created Views" msgstr "" #. module: base -#: view:workflow.activity:0 -msgid "Outgoing transitions" +#: selection:ir.ui.menu,icon:0 +msgid "terp-emblem-important" msgstr "" #. module: base -#: selection:ir.report.custom,frequency:0 -msgid "Yearly" +#: field:res.partner,ref:0 +msgid "Reference" msgstr "" #. module: base @@ -94,20 +117,6 @@ msgstr "" msgid "Target Window" msgstr "" -#. module: base -#: model:ir.actions.todo,note:base.config_wizard_simple_view -msgid "Choose between the \"Simplified Interface\" or the extended one.\n" -"If you are testing or using OpenERP for the first time, we suggest you to use\n" -"the simplified interface, which has less options and fields but is easier to\n" -"understand. You will be able to switch to the extended view later.\n" -" " -msgstr "" - -#. module: base -#: field:ir.rule,operand:0 -msgid "Operand" -msgstr "" - #. module: base #: model:res.country,name:base.kr msgid "South Korea" @@ -130,20 +139,14 @@ msgstr "" msgid "Swaziland" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_actions_report_custom -#: selection:ir.ui.menu,action:0 -msgid "ir.actions.report.custom" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CANCEL" msgstr "" #. module: base -#: field:ir.report.custom,sortby:0 -msgid "Sorted By" +#: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 +msgid "Wood Suppliers" msgstr "" #. module: base @@ -157,18 +160,19 @@ msgstr "" msgid "Company's Structure" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_report_custom_fields -msgid "ir.report.custom.fields" -msgstr "" - #. module: base #: view:res.partner:0 msgid "Search Partner" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "\"smtp_server\" needs to be set to send mails to users" +msgstr "" + +#. module: base +#: code:addons/base/module/wizard/base_export_language.py:0 #, python-format msgid "new" msgstr "" @@ -179,7 +183,6 @@ msgid "STOCK_GOTO_TOP" msgstr "" #. module: base -#: field:ir.actions.report.custom,multi:0 #: field:ir.actions.report.xml,multi:0 msgid "On multiple doc." msgstr "" @@ -189,6 +192,11 @@ msgstr "" msgid "Number of Modules" msgstr "" +#. module: base +#: help:multi_company.default,company_dest_id:0 +msgid "Company to store the current record" +msgstr "" + #. module: base #: field:res.partner.bank.type.field,size:0 msgid "Max. Size" @@ -200,7 +208,7 @@ msgid "Contact Name" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#: code:addons/base/module/wizard/base_export_language.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 "" @@ -210,18 +218,6 @@ msgstr "" msgid "STOCK_DELETE" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Password mismatch !" -msgstr "" - -#. module: base -#: code:addons/base/module/module.py:0 -#, python-format -msgid "This url '%s' must provide an html file with links to zip modules" -msgstr "" - #. module: base #: selection:res.request,state:0 msgid "active" @@ -238,23 +234,13 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_GOTO_FIRST" +#: selection:maintenance.contract.wizard,state:0 +msgid "Validated" msgstr "" #. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Get Max" -msgstr "" - -#. module: base -#: help:ir.actions.act_window,limit:0 -msgid "Default limit for the list view" +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" msgstr "" #. module: base @@ -262,15 +248,18 @@ msgstr "" msgid "Update Date" msgstr "" +#. module: base +#: view:ir.attachment:0 +msgid "Owner" +msgstr "" + #. module: base #: field:ir.actions.act_window,src_model:0 msgid "Source Object" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form #: view:ir.actions.todo:0 -#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form msgid "Config Wizard Steps" msgstr "" @@ -280,8 +269,14 @@ msgid "ir.ui.view_sc" msgstr "" #. module: base +#: field:res.widget.user,widget_id:0 +msgid "Widget" +msgstr "" + +#. module: base +#: view:ir.model.access:0 #: field:ir.model.access,group_id:0 -#: field:ir.rule,rule_group:0 +#: view:res.config.users:0 msgid "Group" msgstr "" @@ -292,28 +287,12 @@ msgstr "" msgid "Field Name" msgstr "" -#. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_uninstall -#: model:ir.ui.menu,name:base.menu_module_tree_uninstall -msgid "Uninstalled modules" -msgstr "" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "txt" -msgstr "" - #. module: base #: wizard_view:server.action.create,init:0 #: wizard_field:server.action.create,init,type:0 msgid "Select Action Type" msgstr "" -#. module: base -#: selection:ir.actions.todo,type:0 -msgid "Configure" -msgstr "" - #. module: base #: model:res.country,name:base.tv msgid "Tuvalu" @@ -321,7 +300,6 @@ msgstr "" #. module: base #: selection:ir.model,state:0 -#: selection:ir.model.grid,state:0 msgid "Custom Object" msgstr "" @@ -353,18 +331,18 @@ msgid "French Guyana" msgstr "" #. module: base -#: field:ir.ui.view.custom,ref_id:0 -msgid "Original View" +#: selection:base.language.install,lang:0 +msgid "Greek / Ελληνικά" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "Bosnian / bosanski jezik" msgstr "" #. module: base -#: help:ir.actions.report.xml,attachment_use:0 -msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." +#: selection:base.language.install,lang:0 +msgid "Serbian / Serbia" msgstr "" #. module: base @@ -379,6 +357,7 @@ msgstr "" #. module: base #: field:ir.actions.todo,note:0 +#: selection:ir.property,type:0 msgid "Text" msgstr "" @@ -388,7 +367,7 @@ msgid "Country Name" msgstr "" #. module: base -#: model:res.country,name:base.coreturn +#: model:res.country,name:base.co msgid "Colombia" msgstr "" @@ -398,8 +377,8 @@ msgid "Schedule Upgrade" msgstr "" #. module: base -#: field:ir.actions.report.custom,report_id:0 -msgid "Report Ref." +#: selection:base.language.install,lang:0 +msgid "Mongolian / Mongolia" msgstr "" #. module: base @@ -409,9 +388,13 @@ msgid "The ISO country code in two chars.\n" msgstr "" #. module: base -#: selection:workflow.activity,join_mode:0 -#: selection:workflow.activity,split_mode:0 -msgid "Xor" +#: model:res.country,name:base.pw +msgid "Palau" +msgstr "" + +#. module: base +#: view:ir.values:0 +msgid "Action To Launch" msgstr "" #. module: base @@ -420,9 +403,13 @@ msgid "Sales & Purchases" msgstr "" #. module: base -#: view:ir.actions.wizard:0 -#: field:wizard.ir.model.menu.create.line,wizard_id:0 -msgid "Wizard" +#: view:ir.translation:0 +msgid "Untranslated" +msgstr "" + +#. module: base +#: help:ir.actions.act_window,context:0 +msgid "Context dictionary as Python expression, empty by default (Default: {})" msgstr "" #. module: base @@ -438,8 +425,8 @@ msgid "Wizards" msgstr "" #. module: base -#: selection:res.config.view,view:0 -msgid "Extended Interface" +#: model:res.partner.category,name:base.res_partner_category_miscellaneoussuppliers0 +msgid "Miscellaneous Suppliers" msgstr "" #. module: base @@ -454,7 +441,12 @@ msgid "Select the Action Window, Report, Wizard to be executed." msgstr "" #. module: base -#: view:wizard.module.lang.export:0 +#: selection:ir.ui.menu,icon:0 +msgid "terp-gtk-jump-to-ltr" +msgstr "" + +#. module: base +#: view:base.language.export:0 msgid "Export done" msgstr "" @@ -463,20 +455,29 @@ msgstr "" msgid "Model Description" msgstr "" +#. module: base +#: help:ir.actions.act_window,src_model:0 +msgid "Optional model name of the objects on which this action should be visible" +msgstr "" + #. module: base #: field:workflow.transition,trigger_expr_id:0 msgid "Trigger Expression" msgstr "" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Korean / Korea, Democratic Peoples Republic of" +msgstr "" + #. module: base #: model:res.country,name:base.jo msgid "Jordan" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not remove the model '%s' !" +#: view:ir.module.module:0 +msgid "Certified" msgstr "" #. module: base @@ -485,13 +486,13 @@ msgid "Eritrea" msgstr "" #. module: base -#: view:res.config.view:0 -msgid "Configure simple view" +#: selection:base.language.install,lang:0 +msgid "Bulgarian / български" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Bulgarian / български" +#: model:ir.ui.menu,name:base.menu_base_action_rule +msgid "Automated Actions" msgstr "" #. module: base @@ -500,14 +501,13 @@ msgid "ir.actions.actions" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_report_custom -#: view:ir.report.custom:0 -msgid "Custom Report" +#: view:partner.wizard.ean.check:0 +msgid "Want to check Ean ? " msgstr "" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Bar Chart" +#: field:ir.values,key2:0 +msgid "Event Type" msgstr "" #. module: base @@ -515,6 +515,16 @@ msgstr "" msgid "STOCK_DIALOG_ERROR" msgstr "" +#. module: base +#: view:base.language.export:0 +msgid "OpenERP translations (core, modules, clients) are managed through Launchpad.net, our open source project management facility. We use their online interface to synchronize all translations efforts." +msgstr "" + +#. module: base +#: field:res.partner,title:0 +msgid "Partner Form" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_INDEX" @@ -543,6 +553,21 @@ msgstr "" msgid "Sequences" msgstr "" +#. module: base +#: model:ir.model,name:base.model_base_language_import +msgid "Language Import" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_config_users +msgid "res.config.users" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_base_language_export +msgid "base.language.export" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DIALOG_QUESTION" @@ -553,13 +578,23 @@ msgstr "" msgid "Papua New Guinea" msgstr "" +#. module: base +#: help:ir.actions.report.xml,report_type:0 +msgid "Report Type, e.g. pdf, html, raw, sxw, odt, html2html, mako2html, ..." +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-folder-yellow" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_4 msgid "Basic Partner" msgstr "" #. module: base -#: rml:ir.module.reference:0 +#: report:ir.module.reference.graph:0 msgid "," msgstr "" @@ -568,18 +603,39 @@ msgstr "" msgid "My Partners" msgstr "" +#. module: base +#: view:ir.actions.report.xml:0 +msgid "XML Report" +msgstr "" + #. module: base #: model:res.country,name:base.es msgid "Spain" msgstr "" #. module: base -#: wizard_view:module.upgrade,end:0 -#: wizard_view:module.upgrade,start:0 -msgid "You may have to reinstall some language pack." +#: model:ir.ui.menu,name:base.menu_translation_export +msgid "Import / Export" msgstr "" #. module: base +#: help:ir.actions.act_window,domain:0 +msgid "Optional domain filtering of the destination data, as a Python expression" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_view_base_module_upgrade +#: model:ir.model,name:base.model_base_module_upgrade +msgid "Module Upgrade" +msgstr "" + +#. module: base +#: view:res.config.users:0 +msgid "Groups are used to define access rights on objects and the visibility of screens and menus" +msgstr "" + +#. module: base +#: field:res.partner,mobile:0 #: field:res.partner.address,mobile:0 msgid "Mobile" msgstr "" @@ -595,6 +651,12 @@ msgstr "" msgid "Payment term" msgstr "" +#. module: base +#: code:addons/base/res/res_config.py:0 +#, python-format +msgid "\n\nThis addon is already installed on your system" +msgstr "" + #. module: base #: model:res.country,name:base.nu msgid "Niue" @@ -606,8 +668,14 @@ msgid "Work Days" msgstr "" #. module: base -#: help:ir.values,action_id:0 -msgid "This field is not used, it only helps you to select the right action." +#: selection:ir.module.module,license:0 +msgid "Other OSI Approved Licence" +msgstr "" + +#. module: base +#: help:res.config.users,context_lang:0 +#: help:res.users,context_lang:0 +msgid "Sets the language for the user's user interface, when UI translations are available" msgstr "" #. module: base @@ -626,6 +694,12 @@ msgstr "" msgid "maintenance contract modules" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.res_request_link-act +#: model:ir.ui.menu,name:base.menu_res_request_link_act +msgid "Request Reference Types" +msgstr "" + #. module: base #: view:ir.values:0 msgid "client_action_multi, client_action_relate" @@ -643,27 +717,28 @@ msgid "Child Categories" msgstr "" #. module: base -#: selection:wizard.module.lang.export,format:0 +#: selection:base.language.export,format:0 msgid "TGZ Archive" msgstr "" -#. module: base -#: field:res.partner.som,factor:0 -msgid "Factor" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%B - Full month name." msgstr "" #. module: base -#: field:ir.actions.report.xml,report_type:0 -#: field:ir.actions.todo,type:0 +#: view:ir.attachment:0 +#: field:ir.attachment,type:0 +#: field:ir.model,state:0 +#: field:ir.model.fields,state:0 +#: field:ir.property,type:0 #: field:ir.server.object.lines,type:0 #: field:ir.translation,type:0 +#: view:ir.ui.view:0 +#: view:ir.values:0 #: field:ir.values,key:0 #: view:res.partner:0 +#: view:res.partner.address:0 msgid "Type" msgstr "" @@ -678,8 +753,13 @@ msgid "Guam (USA)" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_model_grid -msgid "Objects Security Grid" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_EDIT" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_hr_project +msgid "Human Resources Dashboard" msgstr "" #. module: base @@ -709,29 +789,17 @@ msgid "Cayman Islands" msgstr "" #. module: base -#: model:res.country,name:base.ir -msgid "Iran" +#: field:ir.module.module,contributors:0 +msgid "Contributors" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.res_request-act -#: model:ir.ui.menu,name:base.menu_res_request_act -msgid "My Requests" +#: selection:ir.property,type:0 +msgid "Char" msgstr "" #. module: base -#: field:ir.sequence,name:0 -#: field:ir.sequence.type,name:0 -msgid "Sequence Name" -msgstr "" - -#. module: base -#: model:res.country,name:base.td -msgid "Chad" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "Spanish (AR) / Español (AR)" msgstr "" @@ -740,24 +808,29 @@ msgstr "" msgid "Uganda" msgstr "" +#. module: base +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Access" +msgstr "" + #. module: base #: model:res.country,name:base.ne msgid "Niger" msgstr "" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Chinese (HK)" +msgstr "" + #. module: base #: model:res.country,name:base.ba msgid "Bosnia-Herzegovina" msgstr "" #. module: base -#: field:ir.report.custom.fields,alignment:0 -msgid "Alignment" -msgstr "" - -#. module: base -#: selection:ir.rule,operator:0 -msgid ">=" +#: view:base.language.export:0 +msgid "To improve or expand the official translations, you should use directly Lauchpad's web interface (Rosetta). If you need to perform mass translation, Launchpad also allows uploading full .po files at once" msgstr "" #. module: base @@ -765,32 +838,12 @@ msgstr "" msgid "%W - Week number of the year (Monday as the first day of the week) as a decimal number [00,53]. All days in a new year preceding the first Monday are considered to be in week 0." msgstr "" -#. module: base -#: field:res.partner.event,planned_cost:0 -msgid "Planned Cost" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_model_config -msgid "ir.model.config" -msgstr "" - #. module: base #: field:ir.module.module,website:0 #: field:res.partner,website:0 msgid "Website" msgstr "" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "" - -#. module: base -#: view:ir.module.repository:0 -msgid "Repository" -msgstr "" - #. module: base #: model:res.country,name:base.gs msgid "S. Georgia & S. Sandwich Isls." @@ -801,6 +854,11 @@ msgstr "" msgid "Action URL" msgstr "" +#. module: base +#: field:base.module.import,module_name:0 +msgid "Module Name" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_JUSTIFY_FILL" @@ -817,26 +875,36 @@ msgid "Haiti" msgstr "" #. module: base -#: selection:ir.translation,type:0 -msgid "RML" -msgstr "" - -#. module: base +#: view:ir.ui.view:0 #: selection:ir.ui.view,type:0 msgid "Search" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Pie charts need exactly two fields" +#: view:ir.rule:0 +msgid "2. Group-specific rules are combined together with a logical AND operator" msgstr "" #. module: base -#: help:wizard.module.lang.export,lang:0 +#: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." msgstr "" +#. module: base +#: view:res.request:0 +msgid "Request Date" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_hr_dasboard +msgid "Dashboard" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_purchase_root +msgid "Purchases" +msgstr "" + #. module: base #: model:res.country,name:base.md msgid "Moldavia" @@ -848,20 +916,16 @@ msgid "Features" msgstr "" #. module: base -#: field:ir.report.custom,frequency:0 -msgid "Frequency" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,fc0_op:0 -#: field:ir.report.custom.fields,fc1_op:0 -#: field:ir.report.custom.fields,fc2_op:0 -#: field:ir.report.custom.fields,fc3_op:0 -msgid "Relation" +#: view:ir.module.module:0 +#: report:ir.module.reference.graph:0 +#: field:maintenance.contract.module,version:0 +msgid "Version" msgstr "" #. module: base +#: view:ir.model.access:0 #: field:ir.model.access,perm_read:0 +#: view:ir.rule:0 msgid "Read Access" msgstr "" @@ -875,19 +939,15 @@ msgstr "" msgid "STOCK_MISSING_IMAGE" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Define New Users" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REMOVE" msgstr "" #. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "raw" +#: code:addons/base/module/wizard/base_update_translations.py:0 +#, python-format +msgid "No language with code \"%s\" exists" msgstr "" #. module: base @@ -896,20 +956,15 @@ msgid "Provides the fields that will be used to fetch the email address, e.g. wh msgstr "" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "" - -#. module: base -#: field:res.partner,user_id:0 -msgid "Dedicated Salesman" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 +#: report:ir.module.reference.graph:0 msgid "-" msgstr "" +#. module: base +#: view:wizard.ir.model.menu.create:0 +msgid "Create _Menu" +msgstr "" + #. module: base #: field:res.payterm,name:0 msgid "Payment Term (short name)" @@ -923,12 +978,24 @@ msgid "Bank" msgstr "" #. module: base -#: view:res.lang:0 -msgid "Examples" +#: model:ir.model,name:base.model_ir_exports_line +msgid "ir.exports.line" msgstr "" #. module: base +#: help:base.language.install,overwrite:0 +msgid "If you check this box, your customized translations will be overwritten and replaced by the official ones." +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,report_rml:0 +msgid "Main report file path" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_report_xml #: field:ir.module.module,reports_by_module:0 +#: model:ir.ui.menu,name:base.menu_ir_action_report_xml msgid "Reports" msgstr "" @@ -938,8 +1005,9 @@ msgid "On Create" msgstr "" #. module: base -#: wizard_view:base.module.import,init:0 -msgid "Please give your module .ZIP file to import." +#: 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 "" #. module: base @@ -948,11 +1016,17 @@ msgid "Default Value" msgstr "" #. module: base -#: wizard_field:res.partner.sms_send,init,user:0 +#: field:partner.sms.send,user:0 +#: field:res.config.users,login:0 #: field:res.users,login:0 msgid "Login" msgstr "" +#. module: base +#: view:ir.actions.server:0 +msgid "Access all the fields related to the current object using expressions, i.e. object.partner_id.name " +msgstr "" + #. module: base #: view:maintenance.contract:0 #: field:maintenance.contract,module_ids:0 @@ -960,14 +1034,18 @@ msgid "Covered Modules" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_COPY" +#: model:ir.model,name:base.model_res_country_state +msgid "Country state" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Model %s Does not Exist !" +#: selection:ir.property,type:0 +msgid "Float" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_COPY" msgstr "" #. module: base @@ -982,8 +1060,8 @@ msgid "res.request.link" msgstr "" #. module: base -#: wizard_button:module.module.update,init,update:0 -msgid "Check new modules" +#: field:ir.actions.wizard,name:0 +msgid "Wizard Info" msgstr "" #. module: base @@ -992,10 +1070,8 @@ msgid "Comoros" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_server_action -#: view:ir.actions.server:0 -#: model:ir.ui.menu,name:base.menu_server_action -msgid "Server Actions" +#: help:res.log,secondary:0 +msgid "Do not display this log if it belongs to the same object the user is working on" msgstr "" #. module: base @@ -1004,8 +1080,19 @@ msgid "East Timor" msgstr "" #. module: base -#: view:ir.rule:0 -msgid "Simple domain setup" +#: model:res.company,follow_up_msg:base.main_company +msgid "Date : %(date)s\n" +"\n" +"Dear %(partner_name)s,\n" +"\n" +"Please find in attachment a reminder of all your unpaid invoices, for a total amount due of:\n" +"\n" +"%(followup_amount).2f %(company_currency)s\n" +"\n" +"Thanks,\n" +"--\n" +"%(user_signature)s\n" +"%(company_name)s" msgstr "" #. module: base @@ -1023,6 +1110,11 @@ msgstr "" msgid "wizard.ir.model.menu.create.line" msgstr "" +#. module: base +#: field:ir.attachment,res_id:0 +msgid "Attached ID" +msgstr "" + #. module: base #: view:ir.sequence:0 msgid "Day: %(day)s" @@ -1059,16 +1151,6 @@ msgstr "" msgid "Days" msgstr "" -#. module: base -#: field:ir.report.custom.fields,width:0 -msgid "Fixed Width" -msgstr "" - -#. module: base -#: model:res.company,overdue_msg:base.main_company -msgid "Would your payment have been carried out after this mail was sent, please consider the present one as void. Do not hesitate to contact our accounting department at (+32).81.81.37.00." -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-calendar" @@ -1080,32 +1162,32 @@ msgid "STOCK_YES" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.ir_action_report_custom -#: model:ir.ui.menu,name:base.menu_ir_action_report_custom -msgid "Report Custom" +#: help:ir.actions.server,condition:0 +msgid "Condition that is to be tested before action is executed, e.g. object.list_price > object.cost_price" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 #: code:addons/base/res/res_company.py:0 -#: code:addons/base/res/res_user.py:0 #, python-format msgid " (copy)" msgstr "" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - #. module: base #: view:res.lang:0 msgid "7. %H:%M:%S ==> 18:25:20" msgstr "" #. module: base -#: help:res.users,company_id:0 -msgid "The company this user is currently working on." +#: view:res.partner:0 +#: view:res.partner.category:0 +#: field:res.partner.category,partner_ids:0 +msgid "Partners" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.res_widget_act_window +#: model:ir.ui.menu,name:base.menu_res_widget_act_window +msgid "Homepage Widgets" msgstr "" #. module: base @@ -1113,6 +1195,16 @@ msgstr "" msgid "Specify the message. You can use the fields from the object. e.g. `Dear [[ object.partner_id.name ]]`" msgstr "" +#. module: base +#: field:ir.attachment,res_model:0 +msgid "Attached Model" +msgstr "" + +#. module: base +#: view:ir.rule:0 +msgid "Domain Setup" +msgstr "" + #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" @@ -1125,7 +1217,6 @@ msgstr "" #. module: base #: field:ir.cron,priority:0 -#: field:ir.ui.view,priority:0 #: field:res.request,priority:0 #: field:res.request.link,priority:0 msgid "Priority" @@ -1162,19 +1253,20 @@ msgstr "" msgid "Malawi" msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "%s (copy)" +msgstr "" + #. module: base #: field:res.partner.address,type:0 msgid "Address Type" msgstr "" #. module: base -#: selection:ir.actions.todo,start_on:0 -msgid "Auto" -msgstr "" - -#. module: base -#: view:res.request:0 -msgid "End of Request" +#: view:ir.ui.menu:0 +msgid "Full Path" msgstr "" #. module: base @@ -1188,18 +1280,31 @@ msgid "%U - Week number of the year (Sunday as the first day of the week) as a d msgstr "" #. module: base -#: wizard_view:module.lang.install,init:0 -msgid "Note that this operation may take a few minutes." +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "Model %s Does not Exist !\" % vals['relation']))\n" +"\n" +" if self.pool.get(vals['model']):\n" +" self.pool.get(vals['model']).__init__(self.pool, cr)\n" +" #Added context to _auto_init for special treatment to custom field for select_level\n" +" ctx = context.copy()\n" +" ctx.update({'field_name':vals['name'],'field_state':'manual','select':vals.get('select_level','0" msgstr "" #. module: base -#: help:ir.sequence,condition:0 -msgid "If set, sequence will only be used in case this python expression matches, and will precede other sequences." +#: view:ir.ui.view:0 +msgid "Advanced" +msgstr "" + +#. module: base +#: model:res.country,name:base.fi +msgid "Finland" msgstr "" #. module: base #: selection:ir.actions.act_window,view_type:0 #: selection:ir.actions.act_window.view,view_mode:0 +#: view:ir.ui.view:0 #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Tree" @@ -1216,21 +1321,48 @@ msgid "STOCK_CLEAR" msgstr "" #. module: base +#: help:res.config.users,password:0 #: 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 +#: view:ir.actions.server:0 +msgid "Create / Write / Copy" +msgstr "" + +#. module: base +#: view:base.language.export:0 +msgid "https://help.launchpad.net/Translations" +msgstr "" + #. module: base #: field:ir.actions.act_window,view_mode:0 -#: field:res.config.view,view:0 msgid "View Mode" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: view:base.language.import:0 +msgid "When using CSV format, please also check that the first line of your file is one of the following:" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.res_log_act_window +#: model:ir.ui.menu,name:base.menu_res_log_act_window +#: view:res.log:0 +msgid "Logs" +msgstr "" + +#. module: base +#: selection:base.language.install,lang:0 msgid "Spanish / Español" msgstr "" +#. module: base +#: view:base.module.update:0 +msgid "This wizard will scan all module repositories on the server side to detect newly added modules as well as any change to existing modules." +msgstr "" + #. module: base #: field:res.company,logo:0 msgid "Logo" @@ -1262,11 +1394,6 @@ msgstr "" msgid "Bahamas" msgstr "" -#. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Commercial Prospect" -msgstr "" - #. module: base #: code:addons/base/res/partner/partner.py:0 #, python-format @@ -1284,31 +1411,46 @@ msgid "Ireland" msgstr "" #. module: base -#: wizard_field:module.module.update,update,update:0 +#: field:base.module.update,update:0 msgid "Number of modules updated" msgstr "" +#. module: base +#: view:workflow.activity:0 +msgid "Workflow Activity" +msgstr "" + +#. module: base +#: view:ir.rule:0 +msgid "Example: GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 AND GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock_align_left_24" +msgstr "" + #. module: base #: field:ir.actions.act_window,groups_id:0 #: model:ir.actions.act_window,name:base.action_res_groups +#: view:ir.actions.report.xml:0 #: field:ir.actions.report.xml,groups_id:0 +#: view:ir.actions.todo:0 #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 +#: view:ir.model:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 +#: field:ir.rule,groups:0 +#: view:ir.ui.menu:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups +#: field:res.config.users,groups_id:0 #: view:res.groups:0 #: view:res.users:0 #: field:res.users,groups_id:0 msgid "Groups" msgstr "" -#. module: base -#: constraint:res.users:0 -msgid "This user can not connect using this company !" -msgstr "" - #. module: base #: model:res.country,name:base.bz msgid "Belize" @@ -1324,6 +1466,16 @@ msgstr "" msgid "Poland" msgstr "" +#. module: base +#: help:ir.actions.act_window,view_mode:0 +msgid "Comma-separated list of allowed view modes, such as 'form', 'tree', 'calendar', etc. (Default: tree,form)" +msgstr "" + +#. module: base +#: view:workflow:0 +msgid "Workflow Editor" +msgstr "" + #. module: base #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 @@ -1331,13 +1483,13 @@ msgid "To be removed" msgstr "" #. module: base -#: field:ir.values,meta:0 -msgid "Meta Datas" +#: view:maintenance.contract.wizard:0 +msgid "Maintenance contract added !" msgstr "" #. module: base -#: view:wizard.module.update_translations:0 -msgid "This wizard will detect new terms in the application so that you can update them manually." +#: model:ir.model,name:base.model_ir_sequence +msgid "ir.sequence" msgstr "" #. module: base @@ -1350,6 +1502,11 @@ msgstr "" msgid "Wizard Field" msgstr "" +#. module: base +#: view:ir.rule:0 +msgid "Groups (no group = global)" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_SELECT_COLOR" @@ -1360,6 +1517,13 @@ msgstr "" msgid "STOCK_NO" msgstr "" +#. module: base +#: selection:res.config.users,view:0 +#: selection:res.config.view,view:0 +#: selection:res.users,view:0 +msgid "Simplified" +msgstr "" + #. module: base #: model:res.country,name:base.st msgid "Saint Tome (Sao Tome) and Principe" @@ -1370,11 +1534,6 @@ msgstr "" msgid "Invoice" msgstr "" -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_REDO" -msgstr "" - #. module: base #: model:res.country,name:base.bb msgid "Barbados" @@ -1391,13 +1550,12 @@ msgid "The Object name must start with x_ and not contain any special character msgstr "" #. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" +#: field:ir.actions.configuration.wizard,note:0 +msgid "Next Wizard" msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin -#: field:ir.report.custom,menu_id:0 #: view:ir.ui.menu:0 #: field:ir.ui.menu,name:0 msgid "Menu" @@ -1409,22 +1567,19 @@ msgid "Current Rate" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Greek / Ελληνικά" +#: field:ir.ui.view.custom,ref_id:0 +msgid "Original View" msgstr "" #. module: base -#: view:ir.values:0 -msgid "Action To Launch" +#: selection:ir.ui.menu,icon:0 +msgid "terp-camera_test" msgstr "" #. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -#: selection:ir.rule,operator:0 -msgid "in" +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "Make sure you have no users linked with the group(s)!" msgstr "" #. module: base @@ -1437,25 +1592,14 @@ msgstr "" msgid "Anguilla" msgstr "" -#. module: base -#: field:ir.model.config,password_check:0 -msgid "Confirmation" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Enter at least one field !" -msgstr "" - #. module: base #: field:ir.ui.view_sc,name:0 msgid "Shortcut Name" msgstr "" #. module: base -#: field:res.partner,credit_limit:0 -msgid "Credit Limit" +#: help:ir.actions.act_window,limit:0 +msgid "Default limit for the list view" msgstr "" #. module: base @@ -1469,14 +1613,13 @@ msgid "Zimbabwe" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_translation_export -msgid "Import / Export" +#: view:base.module.update:0 +msgid "Please be patient, as this operation may take a few seconds..." msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_config_user_form -#: view:res.users:0 -msgid "Configure User" +#: help:ir.values,action_id:0 +msgid "This field is not used, it only helps you to select the right action." msgstr "" #. module: base @@ -1485,7 +1628,7 @@ msgid "Email Address" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "French (BE) / Français (BE)" msgstr "" @@ -1522,9 +1665,8 @@ msgid "Field Mappings" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.res_request-closed -#: model:ir.ui.menu,name:base.next_id_12_close -msgid "My Closed Requests" +#: view:base.language.export:0 +msgid "Export Translations" msgstr "" #. module: base @@ -1537,11 +1679,6 @@ msgstr "" msgid "Paraguay" msgstr "" -#. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "left" -msgstr "" - #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_close msgid "ir.actions.act_window_close" @@ -1557,6 +1694,24 @@ msgstr "" msgid "Lithuania" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_view_partner_clear_ids +#: model:ir.model,name:base.model_partner_clear_ids +#: view:partner.clear.ids:0 +msgid "Clear IDs" +msgstr "" + +#. module: base +#: help:ir.cron,model:0 +msgid "Name of object whose function will be called when this scheduler will run. e.g. 'res.partener'" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "You Can Not Load Translation For language Due To Invalid Language/Country Code" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PRINT_PREVIEW" @@ -1568,9 +1723,8 @@ msgid "Slovenia" msgstr "" #. module: base -#: view:res.partner.canal:0 -#: field:res.partner.event,canal_id:0 -msgid "Channel" +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock_format-default" msgstr "" #. module: base @@ -1583,6 +1737,11 @@ msgstr "" msgid "Iteration Actions" msgstr "" +#. module: base +#: help:multi_company.default,company_id:0 +msgid "Company where the user is connected" +msgstr "" + #. module: base #: field:maintenance.contract,date_stop:0 msgid "Ending Date" @@ -1608,16 +1767,6 @@ msgstr "" msgid "STOCK_MEDIA_PLAY" msgstr "" -#. module: base -#: field:ir.rule,operator:0 -msgid "Operator" -msgstr "" - -#. module: base -#: wizard_view:module.lang.install,start:0 -msgid "Installation Done" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_OPEN" @@ -1629,11 +1778,6 @@ msgstr "" msgid "Client Action" msgstr "" -#. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "right" -msgstr "" - #. module: base #: model:res.country,name:base.bd msgid "Bangladesh" @@ -1644,6 +1788,11 @@ msgstr "" msgid "Error! You can not create recursive companies." msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-go-home" +msgstr "" + #. module: base #: selection:maintenance.contract,state:0 msgid "Valid" @@ -1682,13 +1831,9 @@ msgid "Armenia" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Year with century: %(year)s" -msgstr "" - -#. module: base -#: selection:ir.report.custom,frequency:0 -msgid "Daily" +#: model:ir.actions.act_window,name:base.ir_property_form +#: model:ir.ui.menu,name:base.menu_ir_property_form_all +msgid "Configuration Parameters" msgstr "" #. module: base @@ -1696,6 +1841,11 @@ msgstr "" msgid "Sweden" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-document-new" +msgstr "" + #. module: base #: selection:ir.actions.act_window.view,view_mode:0 #: selection:ir.ui.view,type:0 @@ -1719,6 +1869,32 @@ msgstr "" msgid "terp-project" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-personal+" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-personal-" +msgstr "" + +#. module: base +#: field:base.language.export,config_logo:0 +#: field:base.language.import,config_logo:0 +#: field:base.language.install,config_logo:0 +#: field:base.module.import,config_logo:0 +#: field:base.module.update,config_logo:0 +#: field:base.update.translations,config_logo:0 +#: field:ir.actions.configuration.wizard,config_logo:0 +#: field:ir.wizard.screen,config_logo:0 +#: field:res.config,config_logo:0 +#: field:res.config.installer,config_logo:0 +#: field:res.config.users,config_logo:0 +#: field:res.config.view,config_logo:0 +msgid "Image" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Iteration Action Configuration" @@ -1729,18 +1905,36 @@ msgstr "" msgid "Austria" msgstr "" +#. module: base +#: selection:base.language.install,state:0 +#: selection:base.module.import,state:0 +#: selection:base.module.update,state:0 +msgid "done" +msgstr "" + #. module: base #: selection:ir.actions.act_window.view,view_mode:0 +#: model:ir.ui.menu,name:base.menu_calendar_configuration #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Calendar" msgstr "" +#. module: base +#: field:res.partner.address,partner_id:0 +msgid "Partner Name" +msgstr "" + #. module: base #: field:workflow.activity,signal_send:0 msgid "Signal (subflow.*)" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_17 +msgid "HR sector" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1757,8 +1951,10 @@ msgid "STOCK_JUSTIFY_CENTER" msgstr "" #. module: base -#: view:res.config.view:0 -msgid "Choose Your Mode" +#: selection:res.config.users,view:0 +#: selection:res.config.view,view:0 +#: selection:res.users,view:0 +msgid "Extended" msgstr "" #. module: base @@ -1773,7 +1969,6 @@ msgstr "" #. module: base #: view:ir.model.access:0 -#: model:ir.ui.menu,name:base.menu_security_access #: view:res.groups:0 #: field:res.groups,model_access:0 msgid "Access Controls" @@ -1786,8 +1981,8 @@ msgid "Dependencies" msgstr "" #. module: base -#: field:ir.report.custom.fields,bgcolor:0 -msgid "Background Color" +#: field:multi_company.default,company_id:0 +msgid "Main Company" msgstr "" #. module: base @@ -1807,8 +2002,8 @@ msgid "Contact Titles" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_som -msgid "res.partner.som" +#: view:base.language.import:0 +msgid "Please double-check that the file encoding is set to UTF-8 (sometimes called Unicode) when the translator exports it." msgstr "" #. module: base @@ -1827,13 +2022,8 @@ msgid "Uruguay" msgstr "" #. module: base -#: view:res.partner.event:0 -msgid "Document Link" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_res_partner_title -msgid "res.partner.title" +#: field:ir.rule,perm_write:0 +msgid "Apply For Write" msgstr "" #. module: base @@ -1847,7 +2037,7 @@ msgid "Loop Action" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "German / Deutsch" msgstr "" @@ -1867,8 +2057,8 @@ msgid "Sir" msgstr "" #. module: base -#: wizard_button:module.upgrade,next,start:0 -msgid "Start Upgrade" +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" msgstr "" #. module: base @@ -1877,7 +2067,7 @@ msgid "ID Ref." msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "French / Français" msgstr "" @@ -1893,23 +2083,18 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_module_module +#: view:ir.model.data:0 #: field:ir.model.data,module:0 #: view:ir.module.module:0 #: field:ir.module.module.dependency,module_id:0 -#: rml:ir.module.reference:0 +#: report:ir.module.reference.graph:0 msgid "Module" msgstr "" -#. module: base -#: model:ir.actions.act_window,name:base.action_res_bank_form -#: model:ir.ui.menu,name:base.menu_action_res_bank_form -msgid "Bank List" -msgstr "" - #. module: base #: field:ir.attachment,description:0 +#: view:ir.module.module:0 #: field:ir.module.module,description:0 -#: view:res.partner:0 #: field:res.partner.bank,name:0 #: view:res.partner.event:0 #: field:res.partner.event,description:0 @@ -1924,13 +2109,23 @@ msgid "Instances" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_attachment -msgid "ir.attachment" +#: help:res.partner,employee:0 +msgid "Check this box if the partner is an Employee." msgstr "" #. module: base -#: field:res.users,action_id:0 -msgid "Home Action" +#: field:ir.actions.report.xml,auto:0 +msgid "Custom python parser" +msgstr "" + +#. module: base +#: view:base.language.import:0 +msgid "_Import" +msgstr "" + +#. module: base +#: view:res.partner.canal:0 +msgid "Channel" msgstr "" #. module: base @@ -1938,11 +2133,6 @@ msgstr "" msgid "Separator Format" msgstr "" -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export language" -msgstr "" - #. module: base #: selection:maintenance.contract.wizard,state:0 msgid "Unvalidated" @@ -1954,8 +2144,9 @@ msgid "Database Structure" msgstr "" #. module: base -#: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard -#: wizard_view:res.partner.spam_send,init:0 +#: model:ir.actions.act_window,name:base.action_partner_mass_mail +#: model:ir.model,name:base.model_partner_wizard_spam +#: view:partner.wizard.spam:0 msgid "Mass Mailing" msgstr "" @@ -1964,11 +2155,6 @@ msgstr "" msgid "Mayotte" msgstr "" -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "You can also import .po files." -msgstr "" - #. module: base #: code:addons/base/maintenance/maintenance.py:0 #, python-format @@ -1986,35 +2172,23 @@ msgstr "" msgid "STOCK_JUSTIFY_RIGHT" msgstr "" -#. module: base -#: model:ir.model,name:base.model_res_partner_function -msgid "Function of the contact" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_upgrade -#: model:ir.ui.menu,name:base.menu_module_tree_upgrade -msgid "Modules to be installed, upgraded or removed" -msgstr "" - #. module: base #: view:res.payterm:0 msgid "Payment Term" msgstr "" -#. module: base -#: field:ir.report.custom,footer:0 -msgid "Report Footer" -msgstr "" - #. module: base #: selection:res.lang,direction:0 msgid "Right-to-Left" msgstr "" #. module: base -#: wizard_view:module.lang.import,init:0 -msgid "Import language" +#: view:ir.actions.act_window:0 +#: model:ir.actions.act_window,name:base.actions_ir_filters_view +#: view:ir.filters:0 +#: model:ir.model,name:base.model_ir_filters +#: model:ir.ui.menu,name:base.menu_ir_filters +msgid "Filters" msgstr "" #. module: base @@ -2025,12 +2199,17 @@ msgid "Scheduled Actions" msgstr "" #. module: base -#: field:res.partner,title:0 #: field:res.partner.address,title:0 #: field:res.partner.title,name:0 +#: field:res.widget,title:0 msgid "Title" msgstr "" +#. module: base +#: help:ir.property,res_id:0 +msgid "If not set, acts as a default value for new resources" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_SAVE" @@ -2047,6 +2226,11 @@ msgstr "" msgid "Recursion error in modules dependencies !" msgstr "" +#. module: base +#: view:base.language.install:0 +msgid "This wizard helps you add a new language to your OpenERP system. After loading a new language it becomes available as default interface language for users and partners." +msgstr "" + #. module: base #: view:ir.model:0 msgid "Create a Menu" @@ -2058,21 +2242,10 @@ msgid "Value Added Tax number. Check the box if the partner is subjected to the 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 -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "Ukrainian / украї́нська мо́ва" msgstr "" -#. module: base -#: selection:ir.actions.todo,state:0 -msgid "Not Started" -msgstr "" - #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2083,15 +2256,6 @@ msgstr "" msgid "Company Name" msgstr "" -#. module: base -#: model:ir.actions.act_window,name:base.action_res_roles_form -#: model:ir.ui.menu,name:base.menu_action_res_roles_form -#: view:res.roles:0 -#: view:res.users:0 -#: field:res.users,roles_id:0 -msgid "Roles" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_country #: model:ir.ui.menu,name:base.menu_country_partner @@ -2099,10 +2263,31 @@ msgid "Countries" msgstr "" #. module: base -#: view:ir.rule.group:0 +#: selection:ir.translation,type:0 +msgid "RML (deprecated - use Report)" +msgstr "" + +#. module: base +#: view:ir.rule:0 msgid "Record rules" msgstr "" +#. module: base +#: view:ir.property:0 +msgid "Field Information" +msgstr "" + +#. module: base +#: view:ir.actions.todo:0 +msgid "Search Actions" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_view_partner_wizard_ean_check +#: view:partner.wizard.ean.check:0 +msgid "Ean check" +msgstr "" + #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2123,38 +2308,19 @@ msgstr "" msgid "%x - Appropriate date representation." msgstr "" -#. module: base -#: help:ir.module.repository,filter:0 -msgid "Regexp to search module on the repository webpage:\n" -"- The first parenthesis must match the name of the module.\n" -"- The second parenthesis must match the whole version number.\n" -"- The last parenthesis must match the extension of the module." -msgstr "" - -#. module: base -#: view:res.lang:0 -msgid "%M - Minute as a decimal number [00,59]." -msgstr "" - #. module: base #: model:res.country,name:base.tj msgid "Tajikistan" msgstr "" -#. module: base -#: model:ir.actions.act_window,name:base.act_values_form_action -#: model:ir.ui.menu,name:base.menu_values_form_action -msgid "Connect Actions To Client Events" -msgstr "" - #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" msgstr "" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" +#: model:res.partner.title,shortcut:base.res_partner_title_sir +msgid "M." msgstr "" #. module: base @@ -2163,6 +2329,11 @@ msgstr "" msgid "ir.actions.wizard" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-mail-forward" +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" @@ -2176,6 +2347,7 @@ msgstr "" #. module: base #: selection:ir.actions.act_window,view_type:0 #: selection:ir.actions.act_window.view,view_mode:0 +#: view:ir.ui.view:0 #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Form" @@ -2203,12 +2375,7 @@ msgid "Categories" msgstr "" #. module: base -#: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard -#: wizard_button:res.partner.sms_send,init,send:0 -msgid "Send SMS" -msgstr "" - -#. module: base +#: view:ir.module.module:0 #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 msgid "To be upgraded" @@ -2225,8 +2392,8 @@ msgid "terp-purchase" msgstr "" #. module: base -#: wizard_field:module.module.update,init,repositories:0 -msgid "Repositories" +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock_effects-object-colorize" msgstr "" #. module: base @@ -2240,8 +2407,19 @@ msgid "Liechtenstein" msgstr "" #. module: base -#: model:res.partner.title,name:base.res_partner_title_ltd -msgid "Ltd" +#: selection:ir.ui.menu,icon:0 +msgid "terp-dolar_ok!" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_partner_sms_send +#: view:partner.sms.send:0 +msgid "Send SMS" +msgstr "" + +#. module: base +#: selection:base.language.install,lang:0 +msgid "Hindi / India" msgstr "" #. module: base @@ -2269,6 +2447,17 @@ msgstr "" msgid "6. %d, %m ==> 05, 12" msgstr "" +#. module: base +#: field:res.config.users,date:0 +#: field:res.users,date:0 +msgid "Last Connection" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,help:0 +msgid "Action description" +msgstr "" + #. module: base #: help:res.partner,customer:0 msgid "Check this box if the partner is a customer." @@ -2283,8 +2472,9 @@ msgid "Languages" msgstr "" #. module: base -#: model:res.country,name:base.pw -msgid "Palau" +#: selection:workflow.activity,join_mode:0 +#: selection:workflow.activity,split_mode:0 +msgid "Xor" msgstr "" #. module: base @@ -2293,13 +2483,15 @@ msgid "Ecuador" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#: code:addons/base/module/wizard/base_export_language.py:0 #, python-format msgid "Save this document to a .CSV file and open it with your favourite spreadsheet software. The file encoding is UTF-8. You have to translate the latest column before reimporting it." msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_customer_form +#: model:ir.actions.act_window,name:base.action_partner_form +#: model:ir.ui.menu,name:base.menu_partner_form #: view:res.partner:0 msgid "Customers" msgstr "" @@ -2315,7 +2507,7 @@ msgid "If the selected language is loaded in the system, all documents related t msgstr "" #. module: base -#: rml:ir.module.reference:0 +#: report:ir.module.reference.graph:0 msgid "Menu :" msgstr "" @@ -2325,8 +2517,8 @@ msgid "Base Field" msgstr "" #. module: base -#: wizard_view:module.module.update,update:0 -msgid "New modules" +#: field:ir.actions.todo,restart:0 +msgid "Restart" msgstr "" #. module: base @@ -2335,16 +2527,18 @@ msgstr "" msgid "SXW content" msgstr "" +#. module: base +#: view:ir.actions.wizard:0 +#: field:wizard.ir.model.menu.create.line,wizard_id:0 +msgid "Wizard" +msgstr "" + #. module: base #: view:ir.cron:0 msgid "Action to Trigger" msgstr "" #. module: base -#: field:ir.report.custom.fields,fc0_operande:0 -#: field:ir.report.custom.fields,fc1_operande:0 -#: field:ir.report.custom.fields,fc2_operande:0 -#: field:ir.report.custom.fields,fc3_operande:0 #: selection:ir.translation,type:0 msgid "Constraint" msgstr "" @@ -2356,16 +2550,15 @@ msgid "Default" msgstr "" #. module: base +#: view:ir.model.fields:0 #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 msgid "Required" msgstr "" #. module: base -#: field:ir.model.fields,domain:0 -#: field:ir.rule,domain:0 -#: field:res.partner.title,domain:0 -msgid "Domain" +#: view:res.users:0 +msgid "Default Filters" msgstr "" #. module: base @@ -2373,6 +2566,16 @@ msgstr "" msgid "Summary" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-mail-replied" +msgstr "" + +#. module: base +#: field:multi_company.default,expression:0 +msgid "Expression" +msgstr "" + #. module: base #: help:ir.actions.server,subject:0 msgid "Specify the subject. You can use fields from the object, e.g. `Hello [[ object.partner_id.name ]]`" @@ -2384,13 +2587,8 @@ msgid "Header/Footer" msgstr "" #. module: base -#: model:res.country,name:base.lb -msgid "Lebanon" -msgstr "" - -#. module: base -#: wizard_field:module.lang.import,init,name:0 -msgid "Language name" +#: help:ir.actions.act_window,help:0 +msgid "Optional help text for the users with a description of the target view, such as its usage and purpose." msgstr "" #. module: base @@ -2399,18 +2597,18 @@ msgid "Holy See (Vatican City State)" msgstr "" #. module: base -#: help:ir.actions.server,condition:0 -msgid "Condition that is to be tested before action is executed, e.g. object.list_price > object.cost_price" -msgstr "" - -#. module: base -#: wizard_field:base.module.import,init,module_file:0 +#: field:base.module.import,module_file:0 msgid "Module .ZIP file" msgstr "" #. module: base -#: field:res.roles,child_id:0 -msgid "Children" +#: field:ir.ui.view,xml_id:0 +msgid "XML ID" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_16 +msgid "Telecom sector" msgstr "" #. module: base @@ -2419,17 +2617,12 @@ msgid "Trigger Object" msgstr "" #. module: base -#: selection:ir.report.custom,state:0 -msgid "Subscribed" -msgstr "" - -#. module: base -#: wizard_view:module.lang.install,init:0 -#: wizard_view:module.upgrade,next:0 -msgid "System Upgrade" +#: view:res.users:0 +msgid "Current Activity" msgstr "" #. module: base +#: view:workflow.activity:0 #: field:workflow.activity,in_transitions:0 msgid "Incoming Transitions" msgstr "" @@ -2440,10 +2633,8 @@ msgid "Suriname" msgstr "" #. module: base -#: field:ir.values,key2:0 -#: view:res.partner.event.type:0 -#: field:res.partner.event.type,name:0 -msgid "Event Type" +#: model:ir.ui.menu,name:base.marketing_menu +msgid "Marketing" msgstr "" #. module: base @@ -2463,25 +2654,19 @@ msgstr "" msgid "You try to upgrade a module that depends on the module: %s.\nBut this module is not available in your system." msgstr "" -#. module: base -#: view:res.partner.address:0 -msgid "Partner Address" -msgstr "" - #. module: base #: field:ir.module.module,license:0 msgid "License" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Invalid operation" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SAVE_AS" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SAVE_AS" +#: selection:ir.actions.todo,restart:0 +msgid "Always" msgstr "" #. module: base @@ -2494,6 +2679,11 @@ msgstr "" msgid "Model" msgstr "" +#. module: base +#: view:base.language.install:0 +msgid "The selected language has been successfully installed. You must change the preferences of the user and open a new menu to view the changes." +msgstr "" + #. module: base #: field:ir.actions.act_window.view,view_id:0 #: field:ir.default,page:0 @@ -2513,14 +2703,19 @@ msgid "Equatorial Guinea" msgstr "" #. module: base -#: wizard_view:base.module.import,init:0 -msgid "Module Import" +#: selection:ir.ui.menu,icon:0 +msgid "terp-stage" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not remove the field '%s' !" +#: selection:ir.ui.menu,icon:0 +msgid "terp-gdu-smart-failing" +msgstr "" + +#. module: base +#: view:base.module.import:0 +#: model:ir.actions.act_window,name:base.action_view_base_module_import +msgid "Module Import" msgstr "" #. module: base @@ -2531,6 +2726,7 @@ msgid "Zip" msgstr "" #. module: base +#: view:ir.module.module:0 #: field:ir.module.module,author:0 msgid "Author" msgstr "" @@ -2546,12 +2742,12 @@ msgid "STOCK_UNDELETE" msgstr "" #. module: base -#: view:res.lang:0 -msgid "%c - Appropriate date and time representation." +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_EXECUTE" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "Finland / Suomi" msgstr "" @@ -2560,6 +2756,11 @@ msgstr "" msgid "Bolivia" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-folder-orange" +msgstr "" + #. module: base #: model:res.country,name:base.gh msgid "Ghana" @@ -2571,8 +2772,8 @@ msgid "Direction" msgstr "" #. module: base -#: model:ir.model,name:base.model_wizard_module_update_translations -msgid "wizard.module.update_translations" +#: selection:base.language.install,lang:0 +msgid "Latvian / Latvia" msgstr "" #. module: base @@ -2583,18 +2784,20 @@ msgstr "" #: field:ir.module.module,views_by_module:0 #: model:ir.ui.menu,name:base.menu_action_ui_view #: view:ir.ui.view:0 -#: view:wizard.ir.model.menu.create:0 -#: field:wizard.ir.model.menu.create,view_ids:0 msgid "Views" msgstr "" #. module: base #: view:res.groups:0 #: field:res.groups,rule_groups:0 -#: field:res.users,rules_id:0 msgid "Rules" msgstr "" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Urdu / Pakistan" +msgstr "" + #. module: base #: code:addons/base/module/module.py:0 #, python-format @@ -2618,19 +2821,25 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form +#: model:ir.ui.menu,name:base.menu_low_workflow #: model:ir.ui.menu,name:base.menu_workflow +#: model:ir.ui.menu,name:base.menu_workflow_root msgid "Workflows" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_config_wizard_form -#: model:ir.ui.menu,name:base.menu_config_module -msgid "Configuration Wizard" +#: model:ir.actions.act_window,name:base.action_config_user_form +msgid "Create Users" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_roles -msgid "res.roles" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_retailers0 +msgid "Retailers" msgstr "" #. module: base @@ -2640,29 +2849,45 @@ msgid "0=Very Urgent\n" msgstr "" #. module: base -#: view:res.users:0 +#: view:res.config:0 +#: view:res.config.installer:0 msgid "Skip" msgstr "" -#. module: base -#: model:ir.actions.act_window,name:base.res_request_link-act -#: model:ir.ui.menu,name:base.menu_res_request_link_act -msgid "Accepted Links in Requests" -msgstr "" - #. module: base #: model:res.country,name:base.ls msgid "Lesotho" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not remove the model '%s' !" +msgstr "" + #. module: base #: model:res.country,name:base.ke msgid "Kenya" msgstr "" #. module: base -#: view:res.config.view:0 -msgid "Choose the simplified interface if you are testing OpenERP for the first time. Less used options or fields are automatically hidden. You will be able to change this, later, through the Administration menu." +#: view:res.partner.event:0 +msgid "Event" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_custom_reports +msgid "Custom Reports" +msgstr "" + +#. module: base +#: view:base.module.configuration:0 +msgid "System Configuration Done" +msgstr "" + +#. module: base +#: view:ir.property:0 +msgid "Generic" msgstr "" #. module: base @@ -2685,20 +2910,14 @@ msgstr "" msgid "Set NULL" msgstr "" -#. module: base -#: field:res.partner.event,som:0 -#: field:res.partner.som,name:0 -msgid "State of Mind" -msgstr "" - #. module: base #: model:res.country,name:base.bj msgid "Benin" msgstr "" #. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" +#: help:ir.sequence,suffix:0 +msgid "Suffix value of the record for the sequence" msgstr "" #. module: base @@ -2711,23 +2930,43 @@ msgstr "" msgid "Not Searchable" msgstr "" -#. module: base -#: field:res.partner.event.type,key:0 -msgid "Key" -msgstr "" - -#. module: base -#: field:ir.cron,nextcall:0 -msgid "Next Call Date" -msgstr "" - #. module: base #: field:res.company,rml_header:0 msgid "RML Header" msgstr "" #. module: base -#: wizard_field:res.partner.sms_send,init,app_id:0 +#: code:addons/base/module/module.py:0 +#, python-format +msgid "Unable %s the module \"%s\" because an external dependencie is not met: %s' % (newstate, module.name, e.args[0])))\n" +" if not module.dependencies_id:\n" +" mdemo = module.demo\n" +" if module.state in states_to_update:\n" +" self.write(cr, uid, [module.id], {'state': newstate, 'demo':mdemo})\n" +" demo = demo or mdemo\n" +" return demo\n" +"\n" +" def button_install(self, cr, uid, ids, context={}):\n" +" return self.state_update(cr, uid, ids, 'to install', ['uninstalled'], context)\n" +"\n" +" def button_install_cancel(self, cr, uid, ids, context={}):\n" +" self.write(cr, uid, ids, {'state': 'uninstalled', 'demo':False})\n" +" return True\n" +"\n" +" def button_uninstall(self, cr, uid, ids, context={}):\n" +" for module in self.browse(cr, uid, ids):\n" +" cr.execute('''select m.state,m.name\n" +" from\n" +" ir_module_module_dependency d\n" +" join\n" +" ir_module_module m on (d.module_id=m.id)\n" +" where\n" +" d.name=%s and\n" +" m.state not in ('uninstalled','uninstallable','to remove" +msgstr "" + +#. module: base +#: field:partner.sms.send,app_id:0 msgid "API ID" msgstr "" @@ -2737,20 +2976,23 @@ msgid "Mauritius" msgstr "" #. module: base -#: wizard_view:module.module.update,init:0 -msgid "Scan for new modules" +#: view:ir.model.access:0 +#: view:ir.rule:0 +msgid "Full Access" msgstr "" #. module: base #: view:ir.actions.act_window:0 +#: view:ir.actions.report.xml:0 +#: view:ir.actions.wizard:0 +#: view:ir.model.fields:0 #: model:ir.ui.menu,name:base.menu_security msgid "Security" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Using a relation field which uses an unknown object" +#: model:res.widget,title:base.openerp_twitter_favorites +msgid "OpenERP Favorites" msgstr "" #. module: base @@ -2759,16 +3001,18 @@ msgid "South Africa" msgstr "" #. module: base -#: model:ir.model,name:base.model_wizard_module_lang_export -msgid "wizard.module.lang.export" -msgstr "" - -#. module: base +#: view:ir.module.module:0 #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 msgid "Installed" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_translation +#: model:ir.ui.menu,name:base.menu_action_translation +msgid "Translation Terms" +msgstr "" + #. module: base #: model:res.country,name:base.sn msgid "Senegal" @@ -2789,11 +3033,26 @@ msgstr "" msgid "Brazil" msgstr "" +#. module: base +#: selection:ir.module.module,license:0 +msgid "Affero GPL-3" +msgstr "" + #. module: base #: field:ir.sequence,number_next:0 msgid "Next Number" msgstr "" +#. module: base +#: help:workflow.transition,condition:0 +msgid "Expression to be satisfied if we want the transition done." +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-gtk-media-pause" +msgstr "" + #. module: base #: view:res.currency:0 #: field:res.currency,rate_ids:0 @@ -2801,7 +3060,7 @@ msgid "Rates" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "Albanian / Shqipëri" msgstr "" @@ -2816,23 +3075,13 @@ msgid "======================================================" msgstr "" #. module: base -#: field:ir.report.custom.fields,field_child2:0 -msgid "Field child2" +#: help:ir.actions.server,mobile:0 +msgid "Provides fields that be used to fetch the mobile number, e.g. you select the invoice, then `object.invoice_address_id.mobile` is the field which gives the correct mobile number" msgstr "" #. module: base -#: field:ir.report.custom.fields,field_child3:0 -msgid "Field child3" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,field_child0:0 -msgid "Field child0" -msgstr "" - -#. module: base -#: field:ir.report.custom.fields,field_child1:0 -msgid "Field child1" +#: view:base.module.upgrade:0 +msgid "System update completed" msgstr "" #. module: base @@ -2846,6 +3095,7 @@ msgid "draft" msgstr "" #. module: base +#: selection:ir.property,type:0 #: field:res.currency,date:0 #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2861,31 +3111,34 @@ msgstr "" #. module: base #: view:ir.attachment:0 -#: field:ir.attachment,datas:0 msgid "Data" msgstr "" -#. module: base -#: view:res.users:0 -msgid "Groups are used to defined access rights on each screen and menu." -msgstr "" - #. module: base #: field:ir.ui.menu,parent_id:0 #: field:wizard.ir.model.menu.create,menu_id:0 msgid "Parent Menu" msgstr "" +#. module: base +#: field:ir.rule,perm_unlink:0 +msgid "Apply For Delete" +msgstr "" + #. module: base #: help:ir.actions.act_window.view,multi:0 -#: help:ir.actions.report.custom,multi:0 #: help:ir.actions.report.xml,multi:0 msgid "If set to true, the action will not be displayed on the right toolbar of a form view." msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_custom_multicompany -msgid "Multi company" +#: selection:ir.ui.menu,icon:0 +msgid "terp-gtk-go-back-rtl" +msgstr "" + +#. module: base +#: model:res.country,name:base.al +msgid "Albania" msgstr "" #. module: base @@ -2916,10 +3169,15 @@ msgid "Mexico" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "Swedish / svenska" msgstr "" +#. module: base +#: model:ir.ui.menu,name:base.menu_base_config_plugins +msgid "Plugins" +msgstr "" + #. module: base #: field:res.company,child_ids:0 msgid "Child Companies" @@ -2941,17 +3199,17 @@ msgid "General Description" msgstr "" #. module: base -#: selection:res.partner.event,type:0 -msgid "Sale Opportunity" +#: model:ir.actions.act_window,name:base.action_config_simple_view_form +msgid "Configure Your Interface" msgstr "" #. module: base -#: view:maintenance.contract.wizard:0 -msgid "Maintenance contract added !" +#: field:ir.values,meta:0 +msgid "Meta Datas" msgstr "" #. module: base -#: field:ir.rule,field_id:0 +#: field:ir.property,fields_id:0 #: selection:ir.translation,type:0 #: field:multi_company.default,field_id:0 msgid "Field" @@ -2962,6 +3220,11 @@ msgstr "" msgid "Venezuela" msgstr "" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Malayalam / India" +msgstr "" + #. module: base #: view:res.lang:0 msgid "9. %j ==> 340" @@ -2972,12 +3235,6 @@ msgstr "" msgid "Zambia" msgstr "" -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_report_xml -#: model:ir.ui.menu,name:base.menu_ir_action_report_xml -msgid "Report Xml" -msgstr "" - #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -3012,25 +3269,31 @@ msgstr "" #: field:ir.module.category,name:0 #: field:ir.module.module,name:0 #: field:ir.module.module.dependency,name:0 -#: rml:ir.module.reference:0 -#: field:ir.module.repository,name:0 +#: report:ir.module.reference.graph:0 #: field:ir.property,name:0 -#: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 +#: field:ir.rule,name:0 +#: field:ir.sequence,name:0 +#: field:ir.sequence.type,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 +#: field:multi_company.default,name:0 #: field:res.bank,name:0 #: field:res.config.view,name:0 #: field:res.lang,name:0 #: field:res.partner,name:0 #: field:res.partner.bank.type,name:0 +#: view:res.partner.event:0 #: field:res.request.link,name:0 -#: field:res.users,name:0 #: field:workflow,name:0 #: field:workflow.activity,name:0 msgid "Name" msgstr "" +#. module: base +#: help:ir.actions.act_window,multi:0 +msgid "If set to true, the action will not be displayed on the right toolbar of a form view" +msgstr "" + #. module: base #: model:res.country,name:base.ms msgid "Montserrat" @@ -3042,8 +3305,9 @@ msgid "Application Terms" msgstr "" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Average" +#: help:res.config.users,context_tz:0 +#: help:res.users,context_tz:0 +msgid "The user's timezone, used to perform timezone conversions between the server and the client." msgstr "" #. module: base @@ -3052,7 +3316,7 @@ msgid "Demo data" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "English (UK)" msgstr "" @@ -3061,36 +3325,36 @@ msgstr "" msgid "Antarctica" msgstr "" +#. module: base +#: help:workflow.transition,act_from:0 +msgid "Source activity. When this activity is over, the condition is tested to determine if we can start the ACT_TO activity." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" msgstr "" +#. module: base +#: view:base.module.upgrade:0 +msgid "Your system will be updated." +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view msgid "ir.actions.act_window.view" msgstr "" #. module: base -#: rml:ir.module.reference:0 +#: report:ir.module.reference.graph:0 msgid "Web" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "English (CA)" msgstr "" -#. module: base -#: field:res.partner.event,planned_revenue:0 -msgid "Planned Revenue" -msgstr "" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "You have to import a .CSV file wich is encoded in UTF-8. Please check that the first line of your file is one of the following:" -msgstr "" - #. module: base #: model:res.country,name:base.et msgid "Ethiopia" @@ -3102,8 +3366,8 @@ msgid "%H - Hour (24-hour clock) as a decimal number [00,23]." msgstr "" #. module: base -#: view:res.roles:0 -msgid "Role" +#: view:res.lang:0 +msgid "%M - Minute as a decimal number [00,59]." msgstr "" #. module: base @@ -3118,19 +3382,33 @@ msgid "Svalbard and Jan Mayen Islands" msgstr "" #. module: base -#: view:ir.rule:0 -msgid "Test" +#: model:ir.ui.menu,name:base.menu_view_base_module_update +msgid " Update Modules List" msgstr "" #. module: base -#: field:ir.report.custom.fields,groupby:0 +#: view:ir.actions.act_window:0 +#: view:ir.actions.report.xml:0 +#: view:ir.actions.server:0 +#: view:ir.filters:0 +#: view:res.request:0 msgid "Group By" 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" +#: view:res.config:0 +#: view:res.config.installer:0 +msgid "title" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_base_language_install +msgid "Install Language" +msgstr "" + +#. module: base +#: view:ir.translation:0 +msgid "Translation" msgstr "" #. module: base @@ -3149,7 +3427,7 @@ msgid "closed" msgstr "" #. module: base -#: selection:wizard.module.lang.export,state:0 +#: selection:base.language.export,state:0 msgid "get" msgstr "" @@ -3163,14 +3441,25 @@ msgstr "" msgid "Write Id" msgstr "" +#. module: base +#: model:ir.ui.menu,name:base.menu_product +msgid "Products" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-accessories-archiver-minus" +msgstr "" + #. module: base #: field:ir.actions.act_window,domain:0 +#: field:ir.filters,domain:0 msgid "Domain Value" msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 -msgid "STOCK_ITALIC" +msgid "STOCK_REDO" msgstr "" #. module: base @@ -3201,12 +3490,6 @@ msgstr "" msgid "The name of the group can not start with \"-\"" msgstr "" -#. module: base -#: wizard_view:module.upgrade,end:0 -#: wizard_view:module.upgrade,start:0 -msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." -msgstr "" - #. module: base #: view:ir.ui.view_sc:0 #: field:res.partner.title,shortcut:0 @@ -3219,14 +3502,14 @@ msgid "Init Date" msgstr "" #. module: base +#: view:workflow.activity:0 #: field:workflow.activity,flow_start:0 msgid "Flow Start" msgstr "" #. module: base -#: view:ir.model:0 -#: view:ir.model.fields:0 -msgid "Security on Groups" +#: model:ir.model,name:base.model_res_partner_title +msgid "res.partner.title" msgstr "" #. module: base @@ -3236,11 +3519,11 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.act_values_form -#: model:ir.ui.menu,name:base.menu_values_form msgid "Client Actions Connections" msgstr "" #. module: base +#: field:ir.attachment,res_name:0 #: field:ir.ui.view_sc,resource:0 msgid "Resource Name" msgstr "" @@ -3256,18 +3539,23 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: field:ir.report.custom.fields,cumulate:0 -msgid "Accumulate" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 +#: code:addons/base/res/res_lang.py:0 #, python-format -msgid "Tree can only be used in tabular reports" +msgid "User Error" msgstr "" #. module: base -#: rml:ir.module.reference:0 +#: help:workflow.transition,signal:0 +msgid "When the operation of transition comes from a button pressed in the client form, signal tests the name of the pressed button. If signal is NULL, no button is necessary to validate this transition." +msgstr "" + +#. module: base +#: help:multi_company.default,object_id:0 +msgid "Object affected by this rule" +msgstr "" + +#. module: base +#: report:ir.module.reference.graph:0 msgid "Directory" msgstr "" @@ -3277,18 +3565,13 @@ msgid "Menu Name" msgstr "" #. module: base -#: field:ir.report.custom,title:0 -msgid "Report Title" +#: view:ir.module.module:0 +msgid "Author Website" msgstr "" #. module: base -#: field:ir.report.custom.fields,fontcolor:0 -msgid "Font color" -msgstr "" - -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_SORT_DESCENDING" +#: view:ir.attachment:0 +msgid "Month" msgstr "" #. module: base @@ -3297,8 +3580,9 @@ msgid "Malaysia" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_request_history -msgid "res.request.history" +#: view:base.language.install:0 +#: model:ir.actions.act_window,name:base.action_view_base_language_install +msgid "Load Official Translation" msgstr "" #. module: base @@ -3307,15 +3591,18 @@ msgid "Client Action Configuration" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_address_form #: model:ir.model,name:base.model_res_partner_address -#: model:ir.ui.menu,name:base.menu_partner_address_form #: view:res.partner.address:0 msgid "Partner Addresses" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:ir.ui.menu,icon:0 +msgid "terp-gtk-stop" +msgstr "" + +#. module: base +#: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" msgstr "" @@ -3337,12 +3624,6 @@ msgstr "" msgid "Events" msgstr "" -#. module: base -#: model:ir.actions.act_window,name:base.action_res_roles -#: model:ir.ui.menu,name:base.menu_action_res_roles -msgid "Roles Structure" -msgstr "" - #. module: base #: model:ir.model,name:base.model_ir_actions_url #: selection:ir.ui.menu,action:0 @@ -3366,13 +3647,25 @@ msgid "Partner Contacts" msgstr "" #. module: base -#: wizard_field:module.module.update,update,add:0 +#: field:base.module.update,add:0 msgid "Number of modules added" msgstr "" #. module: base -#: field:workflow.transition,role_id:0 -msgid "Role Required" +#: view:res.currency:0 +msgid "Price Accuracy" +msgstr "" + +#. module: base +#: view:res.config:0 +#: view:res.config.installer:0 +msgid "vsep" +msgstr "" + +#. module: base +#: model:ir.actions.server,name:base.action_start_configurator +#: model:ir.ui.menu,name:base.menu_view_base_module_configuration +msgid "Start Configuration" msgstr "" #. module: base @@ -3380,6 +3673,11 @@ msgstr "" msgid "Created Menus" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-idea" +msgstr "" + #. module: base #: field:workflow.triggers,workitem_id:0 msgid "Workitem" @@ -3402,6 +3700,7 @@ msgstr "" #: field:ir.ui.menu,action:0 #: field:ir.values,action_id:0 #: selection:ir.values,key:0 +#: view:res.users:0 msgid "Action" msgstr "" @@ -3415,6 +3714,16 @@ msgstr "" msgid "ir.cron" msgstr "" +#. module: base +#: view:ir.rule:0 +msgid "Combination of rules" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Current Year without Century: %(y)s" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-mrp" @@ -3445,11 +3754,6 @@ msgstr "" msgid "%m - Month as a decimal number [01,12]." msgstr "" -#. module: base -#: view:wizard.module.lang.export:0 -msgid "Export Data" -msgstr "" - #. module: base #: model:res.country,name:base.fm msgid "Micronesia" @@ -3467,24 +3771,42 @@ msgstr "" msgid "Menus" msgstr "" +#. module: base +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SORT_DESCENDING" +msgstr "" + #. module: base #: model:res.country,name:base.il msgid "Israel" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock_symbol-selection" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_maintenance_contract_form +#: model:ir.ui.menu,name:base.menu_maintenance_contract +msgid "Maintenance Contracts" +msgstr "" + #. module: base #: model:ir.actions.wizard,name:base.wizard_server_action_create msgid "Create Action" msgstr "" #. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "HTML from HTML" -msgstr "" - -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "html" +#: model:ir.actions.act_window,name:base.action_model_model +#: model:ir.model,name:base.model_ir_model +#: model:ir.ui.menu,name:base.ir_model_model_menu +msgid "Objects" msgstr "" #. module: base @@ -3492,11 +3814,6 @@ msgstr "" msgid "Time Format" msgstr "" -#. module: base -#: wizard_view:module.upgrade,next:0 -msgid "Your system will be upgraded." -msgstr "" - #. module: base #: view:ir.module.module:0 msgid "Defined Reports" @@ -3513,15 +3830,17 @@ msgid "Report xml" msgstr "" #. module: base +#: field:base.language.export,modules:0 #: model:ir.actions.act_window,name:base.action_module_open_categ #: model:ir.actions.act_window,name:base.open_module_tree #: view:ir.module.module:0 +#: model:ir.ui.menu,name:base.menu_management #: model:ir.ui.menu,name:base.menu_module_tree -#: field:wizard.module.lang.export,modules:0 msgid "Modules" msgstr "" #. module: base +#: view:workflow.activity:0 #: selection:workflow.activity,kind:0 #: field:workflow.activity,subflow_id:0 #: field:workflow.workitem,subflow_id:0 @@ -3539,11 +3858,18 @@ msgid "Signal (button Name)" msgstr "" #. module: base +#: model:ir.actions.act_window,name:base.action_res_bank_form +#: model:ir.ui.menu,name:base.menu_action_res_bank_form #: view:res.bank:0 #: field:res.partner,bank_ids:0 msgid "Banks" msgstr "" +#. module: base +#: view:res.log:0 +msgid "Unread" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-sale" @@ -3560,7 +3886,7 @@ msgid "%I - Hour (12-hour clock) as a decimal number [01,12]." msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "Romanian / limba română" msgstr "" @@ -3596,8 +3922,10 @@ msgid "United Kingdom" msgstr "" #. module: base -#: view:ir.actions.server:0 -msgid "Create / Write" +#: view:res.config:0 +#: view:res.config.users:0 +#: view:res.config.view:0 +msgid "res_config_contents" msgstr "" #. module: base @@ -3606,7 +3934,7 @@ msgid "The active field allows you to hide the category without removing it." msgstr "" #. module: base -#: rml:ir.module.reference:0 +#: report:ir.module.reference.graph:0 msgid "Object:" msgstr "" @@ -3622,20 +3950,15 @@ msgstr "" msgid "Partner Titles" msgstr "" -#. module: base -#: selection:ir.actions.todo,type:0 -msgid "Service" -msgstr "" - #. module: base #: help:ir.actions.act_window,auto_refresh:0 msgid "Add an auto-refresh on the view" msgstr "" #. module: base -#: wizard_view:module.upgrade,next:0 -#: wizard_field:module.upgrade,next,module_download:0 -msgid "Modules to download" +#: field:ir.actions.report.xml,report_rml_content:0 +#: field:ir.actions.report.xml,report_rml_content_data:0 +msgid "RML content" msgstr "" #. module: base @@ -3645,12 +3968,22 @@ msgid "Workitems" msgstr "" #. module: base -#: field:wizard.module.lang.export,advice:0 +#: field:base.language.export,advice:0 msgid "Advice" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: model:ir.model,name:base.model_ir_attachment +msgid "ir.attachment" +msgstr "" + +#. module: base +#: view:base.language.import:0 +msgid "- module,type,name,res_id,src,value" +msgstr "" + +#. module: base +#: selection:base.language.install,lang:0 msgid "Lithuanian / Lietuvių kalba" msgstr "" @@ -3665,19 +3998,41 @@ msgid "Inherited View" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_translation -msgid "ir.translation" +#: view:ir.translation:0 +msgid "Source Term" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" +#: model:ir.ui.menu,name:base.menu_main_pm +msgid "Project" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.open_module_tree_install -#: model:ir.ui.menu,name:base.menu_module_tree_install -msgid "Installed modules" +#: view:base.module.import:0 +msgid "Module file successfully imported!" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Cancelled" +msgstr "" + +#. module: base +#: view:partner.clear.ids:0 +msgid "Want to Clear Ids ? " +msgstr "" + +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" msgstr "" #. module: base @@ -3697,15 +4052,8 @@ msgid "Select the object from the model on which the workflow will executed." msgstr "" #. module: base -#: field:ir.model,state:0 -#: field:ir.model.fields,state:0 -#: field:ir.model.grid,state:0 -msgid "Manually Created" -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Count" +#: field:res.partner,employee:0 +msgid "Employee" msgstr "" #. module: base @@ -3718,11 +4066,33 @@ msgstr "" msgid "Fed. State" msgstr "" +#. module: base +#: field:ir.actions.server,copy_object:0 +msgid "Copy Of" +msgstr "" + +#. module: base +#: field:ir.model,osv_memory:0 +msgid "In-memory model" +msgstr "" + +#. module: base +#: view:partner.clear.ids:0 +msgid "Clear Ids" +msgstr "" + #. module: base #: model:res.country,name:base.io msgid "British Indian Ocean Territory" msgstr "" +#. module: base +#: field:res.config.users,view:0 +#: field:res.config.view,view:0 +#: field:res.users,view:0 +msgid "Interface" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Field Mapping" @@ -3755,6 +4125,7 @@ msgid "Left-to-Right" msgstr "" #. module: base +#: view:res.lang:0 #: field:res.lang,translatable:0 msgid "Translatable" msgstr "" @@ -3765,29 +4136,47 @@ msgid "Vietnam" msgstr "" #. module: base +#: field:res.config.users,signature:0 +#: view:res.users:0 #: field:res.users,signature:0 msgid "Signature" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_widget_user +msgid "res.widget.user" +msgstr "" + #. module: base #: field:res.partner.category,complete_name:0 msgid "Full Name" msgstr "" +#. module: base +#: view:base.module.configuration:0 +msgid "_Ok" +msgstr "" + +#. module: base +#: help:ir.filters,user_id:0 +msgid "False means for every user" +msgstr "" + #. module: base #: model:res.country,name:base.mz msgid "Mozambique" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.grant_menu_access -#: model:ir.ui.menu,name:base.menu_grant_menu_access -msgid "Manage Menus" +#: model:ir.ui.menu,name:base.menu_project_long_term +msgid "Long Term Planning" msgstr "" #. module: base #: field:ir.actions.server,message:0 -#: wizard_field:res.partner.spam_send,init,text:0 +#: view:partner.sms.send:0 +#: field:partner.wizard.spam,text:0 +#: field:res.log,name:0 msgid "Message" msgstr "" @@ -3797,7 +4186,12 @@ msgid "On Multiple Doc." msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_base_config_contact +#: view:res.partner:0 +#: field:res.partner,user_id:0 +msgid "Salesman" +msgstr "" + +#. module: base #: field:res.partner,address:0 #: view:res.partner.address:0 msgid "Contacts" @@ -3809,8 +4203,16 @@ msgid "Faroe Islands" msgstr "" #. module: base -#: model:ir.actions.wizard,name:base.wizard_upgrade -#: model:ir.ui.menu,name:base.menu_wizard_upgrade +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "\"email_from\" needs to be set to send welcome mails '\n" +" 'to users" +msgstr "" + +#. module: base +#: view:base.module.upgrade:0 +#: model:ir.actions.act_window,name:base.action_view_base_module_upgrade_window +#: model:ir.ui.menu,name:base.menu_view_base_module_upgrade msgid "Apply Scheduled Upgrades" msgstr "" @@ -3819,25 +4221,35 @@ msgstr "" msgid "Maintenance" msgstr "" +#. module: base +#: view:res.widget:0 +msgid "Widgets" +msgstr "" + #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" msgstr "" #. module: base -#: wizard_view:module.lang.import,init:0 -msgid "module,type,name,res_id,src,value" +#: selection:ir.property,type:0 +msgid "Integer" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_management -msgid "Modules Management" +#: selection:ir.ui.menu,icon:0 +msgid "terp-mail-" msgstr "" #. module: base -#: rml:ir.module.reference:0 -#: field:maintenance.contract.module,version:0 -msgid "Version" +#: help:ir.actions.report.xml,report_rml:0 +msgid "The path to the main report file (depending on Report Type) or NULL if the content is in another data field" +msgstr "" + +#. module: base +#: help:res.config.users,company_id:0 +#: help:res.users,company_id:0 +msgid "The company this user is currently working for." msgstr "" #. module: base @@ -3851,20 +4263,25 @@ msgid "Transition" msgstr "" #. module: base -#: field:ir.actions.todo,active:0 +#: selection:ir.ui.menu,icon:0 +msgid "terp-gtk-select-all" +msgstr "" + +#. module: base #: field:ir.cron,active:0 -#: field:ir.module.repository,active:0 #: field:ir.sequence,active:0 #: field:res.bank,active:0 +#: field:res.config.users,active:0 #: field:res.currency,active:0 #: field:res.lang,active:0 #: field:res.partner,active:0 #: field:res.partner.address,active:0 #: field:res.partner.canal,active:0 #: field:res.partner.category,active:0 -#: field:res.partner.event.type,active:0 #: field:res.request,active:0 #: field:res.users,active:0 +#: view:workflow.instance:0 +#: view:workflow.workitem:0 msgid "Active" msgstr "" @@ -3883,17 +4300,13 @@ msgstr "" #: code:addons/base/ir/ir_model.py:0 #: code:addons/base/maintenance/maintenance.py:0 #: code:addons/base/module/module.py:0 +#: code:addons/base/res/res_config.py:0 #: code:addons/base/res/res_currency.py:0 #: code:addons/base/res/res_user.py:0 #, python-format msgid "Error" msgstr "" -#. module: base -#: view:res.partner.som:0 -msgid "Partner State of Mind" -msgstr "" - #. module: base #: selection:ir.ui.view,type:0 msgid "mdx" @@ -3905,20 +4318,30 @@ msgid "Burundi" msgstr "" #. module: base -#: wizard_button:base.module.import,import,open_window:0 -#: wizard_button:module.upgrade,end,end:0 -#: wizard_button:module.upgrade,start,end:0 +#: view:base.language.install:0 +#: view:base.module.import:0 +#: view:base.module.update:0 +#: view:res.request:0 #: wizard_button:server.action.create,init,end:0 #: wizard_button:server.action.create,step_1,end:0 -#: view:wizard.module.lang.export:0 msgid "Close" msgstr "" +#. module: base +#: view:res.log:0 +msgid "My Logs" +msgstr "" + #. module: base #: model:res.country,name:base.bt msgid "Bhutan" msgstr "" +#. module: base +#: help:ir.sequence,number_next:0 +msgid "Next number of this sequence" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" @@ -3930,7 +4353,12 @@ msgid "This Window" msgstr "" #. module: base -#: field:wizard.module.lang.export,format:0 +#: help:res.log,name:0 +msgid "The logging message." +msgstr "" + +#. module: base +#: field:base.language.export,format:0 msgid "File Format" msgstr "" @@ -3944,6 +4372,12 @@ msgstr "" msgid "res.config.view" msgstr "" +#. module: base +#: view:res.log:0 +#: field:res.log,read:0 +msgid "Read" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_INDENT" @@ -3960,10 +4394,10 @@ msgid "Saint Vincent & Grenadines" msgstr "" #. module: base -#: field:ir.model.config,password:0 #: field:maintenance.contract,password:0 #: field:maintenance.contract.wizard,password:0 -#: wizard_field:res.partner.sms_send,init,password:0 +#: field:partner.sms.send,password:0 +#: field:res.config.users,password:0 #: field:res.users,password:0 msgid "Password" msgstr "" @@ -3974,36 +4408,34 @@ msgstr "" #: field:ir.model,field_id:0 #: model:ir.model,name:base.model_ir_model_fields #: view:ir.model.fields:0 -#: field:ir.model.grid,field_id:0 -#: field:ir.property,fields_id:0 -#: field:ir.report.custom,fields_child0:0 #: model:ir.ui.menu,name:base.ir_model_model_fields msgid "Fields" msgstr "" #. module: base -#: wizard_view:base.module.import,import:0 -msgid "Module successfully imported !" +#: model:ir.actions.act_window,name:base.action_partner_employee_form +msgid "Employees" +msgstr "" + +#. module: base +#: help:res.log,read:0 +msgid "If this log item has been read, get() should not send it to the client" msgstr "" #. module: base #: field:res.company,rml_header2:0 +#: field:res.company,rml_header3:0 msgid "RML Internal Header" msgstr "" -#. module: base -#: selection:ir.report.custom,print_format:0 -msgid "a4" -msgstr "" - #. module: base #: field:ir.actions.act_window,search_view_id:0 msgid "Search View Ref." msgstr "" #. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" +#: field:ir.module.module,installed_version:0 +msgid "Latest version" msgstr "" #. module: base @@ -4011,13 +4443,19 @@ msgstr "" msgid "acc_number" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_address_form +#: model:ir.ui.menu,name:base.menu_partner_address_form +msgid "Addresses" +msgstr "" + #. module: base #: model:res.country,name:base.mm msgid "Myanmar" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "Chinese (CN) / 简体中文" msgstr "" @@ -4038,11 +4476,6 @@ msgstr "" msgid "Yugoslavia" msgstr "" -#. module: base -#: wizard_view:module.upgrade,next:0 -msgid "Note that this operation my take a few minutes." -msgstr "" - #. module: base #: field:ir.model.data,name:0 msgid "XML Identifier" @@ -4054,8 +4487,8 @@ msgid "Canada" msgstr "" #. module: base -#: field:ir.actions.report.xml,report_name:0 -msgid "Internal Name" +#: selection:ir.ui.menu,icon:0 +msgid "terp-rating-rated" msgstr "" #. module: base @@ -4074,15 +4507,10 @@ msgid "Invalid model name in the action definition." msgstr "" #. module: base -#: wizard_field:res.partner.sms_send,init,text:0 +#: field:partner.sms.send,text:0 msgid "SMS Message" msgstr "" -#. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_EDIT" -msgstr "" - #. module: base #: model:res.country,name:base.cm msgid "Cameroon" @@ -4108,19 +4536,21 @@ msgstr "" msgid "Custom Field" msgstr "" +#. module: base +#: field:ir.module.module,web:0 +msgid "Has a web component" +msgstr "" + #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" msgstr "" #. module: base -#: field:workflow.instance,uid:0 -msgid "User ID" -msgstr "" - -#. module: base -#: view:ir.actions.server:0 -msgid "Access all the fields related to the current object using expression in double brackets, i.e.[[ object.partner_id.name ]]" +#: selection:base.language.install,state:0 +#: selection:base.module.import,state:0 +#: selection:base.module.update,state:0 +msgid "init" msgstr "" #. module: base @@ -4134,13 +4564,18 @@ msgid "Bank type fields" msgstr "" #. module: base -#: wizard_view:module.lang.import,init:0 -msgid "type,name,res_id,src,value" +#: selection:base.language.install,lang:0 +msgid "Dutch / Nederlands" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "Dutch / Nederlands" +#: model:ir.model,name:base.model_res_widget_wizard +msgid "Add a widget" +msgstr "" + +#. module: base +#: help:ir.cron,interval_number:0 +msgid "Repeat every x." msgstr "" #. module: base @@ -4150,15 +4585,13 @@ msgid "Select Report" msgstr "" #. module: base -#: field:ir.report.custom.fields,fc1_condition:0 -#: field:ir.report.custom.fields,fc2_condition:0 -#: field:ir.report.custom.fields,fc3_condition:0 -msgid "condition" +#: report:ir.module.reference.graph:0 +msgid "1cm 28cm 20cm 28cm" msgstr "" #. module: base -#: rml:ir.module.reference:0 -msgid "1cm 28cm 20cm 28cm" +#: field:ir.module.module,maintainer:0 +msgid "Maintainer" msgstr "" #. module: base @@ -4177,7 +4610,7 @@ msgid "Labels" msgstr "" #. module: base -#: wizard_field:res.partner.spam_send,init,from:0 +#: field:partner.wizard.spam,email_from:0 msgid "Sender's email" msgstr "" @@ -4187,7 +4620,7 @@ msgid "Object Field" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "French (CH) / Français (CH)" msgstr "" @@ -4197,18 +4630,14 @@ msgid "STOCK_NEW" msgstr "" #. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "None" +#: help:res.config.users,action_id:0 +#: help:res.users,action_id:0 +msgid "If specified, this action will be opened at logon for this user, in addition to the standard menu." msgstr "" #. module: base -#: view:ir.report.custom.fields:0 -msgid "Report Fields" -msgstr "" - -#. module: base -#: view:res.partner:0 -msgid "General" +#: view:ir.values:0 +msgid "Client Actions" msgstr "" #. module: base @@ -4216,6 +4645,13 @@ msgstr "" msgid "Destination Activity" msgstr "" +#. module: base +#: code:addons/base/res/res_config.py:0 +#, python-format +msgid "Can't set an ir.actions.todo's state to \"\n" +" \"nothingness" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Connect Events to Actions" @@ -4231,6 +4667,16 @@ msgstr "" msgid "STOCK_ABOUT" msgstr "" +#. module: base +#: model:ir.model,name:base.model_base_update_translations +msgid "base.update.translations" +msgstr "" + +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "" + #. module: base #: field:ir.module.category,parent_id:0 #: field:res.partner.category,parent_id:0 @@ -4238,13 +4684,14 @@ msgid "Parent Category" msgstr "" #. module: base -#: model:res.country,name:base.fi -msgid "Finland" +#: selection:ir.property,type:0 +msgid "Integer Big" msgstr "" #. module: base #: selection:res.partner.address,type:0 #: selection:res.partner.title,domain:0 +#: view:res.users:0 msgid "Contact" msgstr "" @@ -4253,6 +4700,11 @@ msgstr "" msgid "ir.ui.menu" msgstr "" +#. module: base +#: model:res.country,name:base.us +msgid "United States" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Cancel Uninstall" @@ -4265,6 +4717,11 @@ msgstr "" msgid "Communication" msgstr "" +#. module: base +#: view:ir.actions.report.xml:0 +msgid "RML Report" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_server_object_lines msgid "ir.server.object.lines" @@ -4281,6 +4738,11 @@ msgstr "" msgid "Kuwait" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-go-week" +msgstr "" + #. module: base #: field:workflow.workitem,inst_id:0 msgid "Instance" @@ -4291,6 +4753,11 @@ msgstr "" msgid "This is the filename of the attachment used to store the printing result. Keep empty to not save the printed reports. You can use a python expression with the object and time variables." msgstr "" +#. module: base +#: selection:ir.property,type:0 +msgid "Many2One" +msgstr "" + #. module: base #: model:res.country,name:base.ng msgid "Nigeria" @@ -4301,6 +4768,11 @@ msgstr "" msgid "res.partner.event" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_sms_send +msgid "SMS Send" +msgstr "" + #. module: base #: field:res.company,user_ids:0 msgid "Accepted Users" @@ -4316,6 +4788,11 @@ msgstr "" msgid "Values for Event Type" msgstr "" +#. module: base +#: model:res.country,name:base.zr +msgid "Zaire" +msgstr "" + #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" @@ -4326,6 +4803,12 @@ msgstr "" msgid "STOCK_CLOSE" msgstr "" +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" + #. module: base #: model:res.country,name:base.hk msgid "Hong Kong" @@ -4337,8 +4820,8 @@ msgid "Easy to Refer action by name e.g. One Sales Order -> Many Invoices" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.next_id_10 -msgid "Scheduler" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_100" msgstr "" #. module: base @@ -4367,20 +4850,18 @@ msgid "2. %a ,%A ==> Fri, Friday" msgstr "" #. module: base -#: wizard_view:module.lang.install,start:0 -msgid "The selected language has been successfully installed. You must change the preferences of the user and open a new menu to view changes." +#: field:res.widget,content:0 +msgid "Content" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_sequence -msgid "ir.sequence" +#: help:ir.rule,global:0 +msgid "If no group is specified the rule is global and applied to everyone" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_event_type -#: model:ir.ui.menu,name:base.next_id_14 -#: view:res.partner.event:0 -msgid "Partner Events" +#: model:res.country,name:base.td +msgid "Chad" msgstr "" #. module: base @@ -4394,7 +4875,7 @@ msgid "%a - Abbreviated weekday name." msgstr "" #. module: base -#: rml:ir.module.reference:0 +#: report:ir.module.reference.graph:0 msgid "Introspection report on objects" msgstr "" @@ -4409,8 +4890,14 @@ msgid "Dominica" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_currency_rate -msgid "Currency Rate" +#: help:ir.cron,nextcall:0 +msgid "Next planned execution date for this scheduler" +msgstr "" + +#. module: base +#: help:res.config.users,view:0 +#: help:res.users,view:0 +msgid "Choose between the simplified interface and the extended one" msgstr "" #. module: base @@ -4419,12 +4906,22 @@ msgid "Nepal" msgstr "" #. module: base -#: field:res.partner.event,event_ical_id:0 -msgid "iCal id" +#: selection:ir.ui.menu,icon:0 +msgid "terp-dolar" msgstr "" #. module: base -#: wizard_view:res.partner.sms_send,init:0 +#: help:ir.cron,args:0 +msgid "Arguments to be passed to the method. e.g. (uid,)" +msgstr "" + +#. module: base +#: help:ir.ui.menu,groups_id:0 +msgid "If you have groups, the visibility of this menu will be based on these groups. If this field is empty, OpenERP will compute visibility based on the related object's read access." +msgstr "" + +#. module: base +#: view:partner.sms.send:0 msgid "Bulk SMS send" msgstr "" @@ -4433,26 +4930,11 @@ msgstr "" msgid "%Y - Year with century as a decimal number." msgstr "" -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Pie Chart" -msgstr "" - #. module: base #: view:ir.sequence:0 msgid "Seconde: %(sec)s" msgstr "" -#. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.partner,ref:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -msgid "Code" -msgstr "" - #. module: base #: code:addons/base/module/module.py:0 #, python-format @@ -4460,9 +4942,8 @@ msgid "Can not create the module file:\n %s" msgstr "" #. module: base -#: model:ir.actions.wizard,name:base.wizard_update -#: model:ir.ui.menu,name:base.menu_module_update -msgid "Update Modules List" +#: selection:ir.ui.menu,icon:0 +msgid "terp-accessories-archiver" msgstr "" #. module: base @@ -4471,18 +4952,12 @@ msgid "Continue" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "Thai / ภาษาไทย" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.ir_property_form -#: model:ir.ui.menu,name:base.menu_ir_property_form -msgid "Default Properties" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" msgstr "" @@ -4496,31 +4971,20 @@ msgstr "" msgid "Bouvet Island" msgstr "" -#. module: base -#: field:ir.report.custom,print_orientation:0 -msgid "Print orientation" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_wizard_lang_export -#: model:ir.ui.menu,name:base.menu_wizard_lang_export -msgid "Export a Translation File" -msgstr "" - #. module: base #: field:ir.attachment,name:0 msgid "Attachment Name" msgstr "" #. module: base -#: wizard_field:module.lang.import,init,data:0 -#: field:wizard.module.lang.export,data:0 +#: field:base.language.export,data:0 +#: field:base.language.import,data:0 msgid "File" msgstr "" #. module: base -#: view:res.users:0 -msgid "Add User" +#: model:ir.actions.act_window,name:base.action_view_base_module_upgrade_install +msgid "Module Upgrade Install" msgstr "" #. module: base @@ -4535,6 +4999,8 @@ msgstr "" #. module: base #: field:res.partner,supplier:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_supplier_add:0 #: model:res.partner.category,name:base.res_partner_category_8 msgid "Supplier" msgstr "" @@ -4546,7 +5012,10 @@ msgid "Multi Actions" msgstr "" #. module: base +#: view:base.language.export:0 +#: view:base.language.import:0 #: view:maintenance.contract.wizard:0 +#: view:wizard.ir.model.menu.create:0 msgid "_Close" msgstr "" @@ -4555,16 +5024,41 @@ msgstr "" msgid "Full" msgstr "" +#. module: base +#: field:multi_company.default,company_dest_id:0 +msgid "Default Company" +msgstr "" + +#. module: base +#: help:ir.ui.view,xml_id:0 +msgid "ID of the view defined in xml file" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_base_module_import +#: model:ir.ui.menu,name:base.menu_view_base_module_import +msgid "Import Module" +msgstr "" + #. module: base #: model:res.country,name:base.as msgid "American Samoa" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_model_model -#: model:ir.model,name:base.model_ir_model -#: model:ir.ui.menu,name:base.ir_model_model_menu -msgid "Objects" +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "--\n%(name)s %(email)s\n" +msgstr "" + +#. module: base +#: help:ir.actions.act_window,res_model:0 +msgid "Model name of the object to open in the view window" +msgstr "" + +#. module: base +#: field:res.log,secondary:0 +msgid "Secondary Log" msgstr "" #. module: base @@ -4578,8 +5072,9 @@ msgid "Request Link" msgstr "" #. module: base +#: view:ir.attachment:0 +#: selection:ir.attachment,type:0 #: field:ir.module.module,url:0 -#: field:ir.module.repository,url:0 msgid "URL" msgstr "" @@ -4608,16 +5103,33 @@ msgstr "" msgid "STOCK_MEDIA_RECORD" msgstr "" +#. module: base +#: model:ir.ui.menu,name:base.menu_crm_case_job_req_main +msgid "Recruitment" +msgstr "" + +#. module: base +#: selection:base.language.install,lang:0 +msgid "Occitan (post 1500) / France" +msgstr "" + #. module: base #: model:res.country,name:base.re msgid "Reunion (French)" msgstr "" #. module: base -#: field:ir.rule.group,global:0 +#: view:ir.model.access:0 +#: view:ir.rule:0 +#: field:ir.rule,global:0 msgid "Global" msgstr "" +#. module: base +#: view:res.users:0 +msgid "You must logout and login again after changing your password." +msgstr "" + #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4634,6 +5146,11 @@ msgstr "" msgid "AccessError" msgstr "" +#. module: base +#: view:res.request:0 +msgid "Waiting" +msgstr "" + #. module: base #: view:res.lang:0 msgid "8. %I:%M:%S %p ==> 06:25:20 PM" @@ -4650,6 +5167,11 @@ msgstr "" msgid "Number padding" msgstr "" +#. module: base +#: view:ir.actions.report.xml:0 +msgid "Report" +msgstr "" + #. module: base #: model:res.country,name:base.ua msgid "Ukraine" @@ -4667,15 +5189,20 @@ msgid "Module Category" msgstr "" #. module: base -#: model:res.country,name:base.us -msgid "United States" +#: view:partner.wizard.ean.check:0 +msgid "Ignore" msgstr "" #. module: base -#: rml:ir.module.reference:0 +#: report:ir.module.reference.graph:0 msgid "Reference Guide" msgstr "" +#. module: base +#: view:ir.ui.view:0 +msgid "Architecture" +msgstr "" + #. module: base #: model:res.country,name:base.ml msgid "Mali" @@ -4686,6 +5213,24 @@ msgstr "" msgid "STOCK_UNINDENT" msgstr "" +#. module: base +#: help:res.config.users,email:0 +#: help:res.users,email:0 +msgid "If an email is provided, the user will be sent a message welcoming him.\n" +"\n" +"Warning: if \"email_from\" and \"smtp_server\" aren't configured, it won't be possible to email new users." +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-face-plain" +msgstr "" + +#. module: base +#: selection:base.language.install,lang:0 +msgid "Japanese / Japan" +msgstr "" + #. module: base #: field:ir.cron,interval_number:0 msgid "Interval Number" @@ -4712,6 +5257,7 @@ msgid "Brunei Darussalam" msgstr "" #. module: base +#: view:ir.actions.act_window:0 #: field:ir.actions.act_window,view_type:0 #: field:ir.actions.act_window.view,view_mode:0 #: field:ir.ui.view,type:0 @@ -4740,13 +5286,9 @@ msgid "ir.actions.todo" msgstr "" #. module: base -#: view:wizard.module.lang.export:0 -msgid "Get file" -msgstr "" - -#. module: base -#: wizard_view:module.module.update,init:0 -msgid "This function will check for new modules in the 'addons' path and on module repositories:" +#: code:addons/base/res/res_config.py:0 +#, python-format +msgid "Couldn't find previous ir.actions.todo" msgstr "" #. module: base @@ -4760,7 +5302,7 @@ msgid "General Settings" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.custom_shortcuts +#: model:ir.ui.menu,name:base.menu_administration_shortcut msgid "Custom Shortcuts" msgstr "" @@ -4769,18 +5311,29 @@ msgstr "" msgid "Algeria" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock_format-scientific" +msgstr "" + #. module: base #: model:res.country,name:base.be msgid "Belgium" msgstr "" #. module: base +#: selection:base.language.install,lang:0 +msgid "Inuktitut / Canada" +msgstr "" + +#. module: base +#: field:base.language.export,lang:0 +#: field:base.language.install,lang:0 +#: field:base.update.translations,lang:0 #: field:ir.translation,lang:0 -#: wizard_field:module.lang.install,init,lang:0 +#: field:res.config.users,context_lang:0 #: field:res.partner,lang:0 #: field:res.users,context_lang:0 -#: field:wizard.module.lang.export,lang:0 -#: field:wizard.module.update_translations,lang:0 msgid "Language" msgstr "" @@ -4791,12 +5344,32 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_res_company_form +#: model:ir.model,name:base.model_res_company #: model:ir.ui.menu,name:base.menu_action_res_company_form #: model:ir.ui.menu,name:base.menu_res_company_global #: view:res.company:0 +#: field:res.config.users,company_ids:0 +#: view:res.users:0 +#: field:res.users,company_ids:0 msgid "Companies" msgstr "" +#. module: base +#: model:ir.model,name:base.model_res_widget +msgid "res.widget" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: selection:base.language.install,lang:0 +msgid "Norwegian Bokmål / Norway" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -4805,7 +5378,7 @@ msgid "Python Code" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:0 #, python-format msgid "Can not create the module file: %s !" msgstr "" @@ -4816,28 +5389,19 @@ msgid "The kernel of OpenERP, needed for all installation." msgstr "" #. module: base -#: wizard_button:base.module.import,init,end:0 -#: selection:ir.actions.todo,state:0 -#: wizard_button:module.lang.import,init,end:0 -#: wizard_button:module.lang.install,init,end:0 -#: wizard_button:module.module.update,init,end:0 -#: wizard_button:module.upgrade,next,end:0 -#: wizard_button:res.partner.sms_send,init,end:0 -#: wizard_button:res.partner.spam_send,init,end:0 -#: view:wizard.ir.model.menu.create:0 -#: view:wizard.module.lang.export:0 -#: view:wizard.module.update_translations:0 +#: view:base.language.install:0 +#: view:base.module.import:0 +#: view:base.module.update:0 +#: view:base.module.upgrade:0 +#: view:base.update.translations:0 +#: view:partner.clear.ids:0 +#: view:partner.sms.send:0 +#: view:partner.wizard.spam:0 msgid "Cancel" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#, python-format -msgid "Please specify server option --smtp-from !" -msgstr "" - -#. module: base -#: selection:wizard.module.lang.export,format:0 +#: selection:base.language.export,format:0 msgid "PO File" msgstr "" @@ -4847,9 +5411,13 @@ msgid "STOCK_SPELL_CHECK" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_category -#: model:ir.ui.menu,name:base.menu_partner_category_main -msgid "Partners by Categories" +#: view:ir.model:0 +msgid "Custom" +msgstr "" + +#. module: base +#: view:res.request:0 +msgid "Current" msgstr "" #. module: base @@ -4858,16 +5426,12 @@ msgid "Components Supplier" msgstr "" #. module: base -#: field:ir.actions.act_window,default_user_ids:0 #: model:ir.actions.act_window,name:base.action_res_users -#: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 #: field:res.groups,users:0 -#: field:res.roles,users:0 #: view:res.users:0 msgid "Users" msgstr "" @@ -4883,8 +5447,9 @@ msgid "Iceland" msgstr "" #. module: base -#: view:res.users:0 -msgid "Roles are used to defined available actions, provided by workflows." +#: 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 @@ -4908,7 +5473,7 @@ msgid "STOCK_HARDDISK" msgstr "" #. module: base -#: rml:ir.module.reference:0 +#: report:ir.module.reference.graph:0 msgid "Reports :" msgstr "" @@ -4917,37 +5482,21 @@ msgstr "" msgid "STOCK_APPLY" msgstr "" -#. module: base -#: model:ir.actions.act_window,name:base.action_maintenance_contract_form -#: model:ir.ui.menu,name:base.menu_maintenance_contract -msgid "Your Maintenance Contracts" -msgstr "" - -#. module: base -#: view:res.users:0 -msgid "Please note that you will have to logout and relog if you change your password." -msgstr "" - #. module: base #: model:res.country,name:base.gy msgid "Guyana" msgstr "" #. module: base -#: selection:ir.module.module,license:0 -msgid "GPL-3" -msgstr "" - -#. module: base -#: selection:ir.module.module,license:0 -msgid "GPL-2" -msgstr "" - -#. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "Portugese (BR) / português (BR)" msgstr "" +#. module: base +#: help:ir.actions.act_window,view_type:0 +msgid "View type: set to 'tree' for a hierarchical tree view, or 'form' for other views" +msgstr "" + #. module: base #: field:ir.actions.server,record_id:0 msgid "Create Id" @@ -4958,16 +5507,43 @@ msgstr "" msgid "Honduras" msgstr "" +#. module: base +#: help:res.config.users,menu_tips:0 +#: help:res.users,menu_tips:0 +msgid "Check out this box if you want to always display tips on each menu action" +msgstr "" + #. module: base #: model:res.country,name:base.eg msgid "Egypt" msgstr "" +#. module: base +#: field:ir.rule,perm_read:0 +msgid "Apply For Read" +msgstr "" + #. module: base #: help:ir.actions.server,model_id:0 msgid "Select the object on which the action will work (read, write, create)." msgstr "" +#. module: base +#: code:addons/base/ir/ir_actions.py:0 +#, python-format +msgid "Please specify server option --email-from !" +msgstr "" + +#. module: base +#: field:base.language.import,name:0 +msgid "Language Name" +msgstr "" + +#. module: base +#: selection:ir.property,type:0 +msgid "Boolean" +msgstr "" + #. module: base #: view:ir.model:0 msgid "Fields Description" @@ -4979,20 +5555,31 @@ msgid "STOCK_CDROM" msgstr "" #. module: base +#: view:ir.attachment:0 +#: view:ir.cron:0 +#: view:ir.model.access:0 +#: view:ir.model.data:0 +#: view:ir.model.fields:0 +#: view:ir.module.module:0 +#: view:ir.rule:0 +#: view:ir.ui.view:0 +#: view:ir.values:0 +#: view:res.partner:0 +#: view:res.partner.address:0 +#: view:workflow.activity:0 +msgid "Group By..." +msgstr "" + +#. module: base +#: view:ir.model.fields:0 #: field:ir.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 msgid "Readonly" msgstr "" #. module: base -#: field:res.partner.event,type:0 -msgid "Type of Event" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_sequence_type -#: model:ir.ui.menu,name:base.menu_ir_sequence_type -msgid "Sequence Types" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ITALIC" msgstr "" #. module: base @@ -5002,11 +5589,22 @@ msgid "To be installed" msgstr "" #. module: base +#: help:ir.actions.act_window,display_menu_tip:0 +msgid "It gives the status if the tip has to be displayed or not when a user executes an action" +msgstr "" + +#. module: base +#: view:ir.model:0 #: model:ir.module.module,shortdesc:base.module_meta_information #: field:res.currency,base:0 msgid "Base" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-dialog-close" +msgstr "" + #. module: base #: model:res.country,name:base.lr msgid "Liberia" @@ -5018,27 +5616,47 @@ msgstr "" #: view:res.groups:0 #: view:res.partner:0 #: field:res.partner,comment:0 -#: field:res.partner.function,ref:0 msgid "Notes" msgstr "" #. module: base -#: field:ir.property,value:0 +#: selection:ir.ui.menu,icon:0 +msgid "terp-folder-blue" +msgstr "" + +#. module: base +#: field:ir.property,value_binary:0 +#: field:ir.property,value_datetime:0 +#: field:ir.property,value_float:0 +#: field:ir.property,value_integer:0 +#: field:ir.property,value_reference:0 +#: field:ir.property,value_text:0 #: selection:ir.server.object.lines,type:0 #: field:ir.server.object.lines,value:0 +#: view:ir.values:0 #: field:ir.values,value:0 #: field:ir.values,value_unpickle:0 msgid "Value" msgstr "" #. module: base -#: view:wizard.module.update_translations:0 -msgid "Update Translations" +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.partner.bank.type,code:0 +msgid "Code" msgstr "" #. module: base -#: view:res.config.view:0 -msgid "Set" +#: model:ir.model,name:base.model_res_config_installer +msgid "res.config.installer" +msgstr "" + +#. module: base +#: selection:base.language.install,lang:0 +msgid "Sinhalese / Sri Lanka" msgstr "" #. module: base @@ -5052,20 +5670,45 @@ msgid "Minutes" msgstr "" #. module: base -#: wizard_view:module.upgrade,end:0 -#: wizard_view:module.upgrade,start:0 -msgid "The modules have been upgraded / installed !" +#: selection:ir.ui.menu,icon:0 +msgid "terp-gnome-cpu-frequency-applet+" msgstr "" #. module: base #: selection:ir.translation,type:0 -#: view:wizard.module.lang.export:0 msgid "Help" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_ui_view -msgid "ir.ui.view" +#: help:res.config.users,menu_id:0 +#: help:res.users,menu_id:0 +msgid "If specified, the action will replace the standard menu for this user." +msgstr "" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Write Object" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_fundrising +msgid "Fund Raising" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_type +#: model:ir.ui.menu,name:base.menu_ir_sequence_type +msgid "Sequence Codes" +msgstr "" + +#. module: base +#: selection:base.language.install,lang:0 +msgid "Abkhazian (RU)" +msgstr "" + +#. module: base +#: view:base.module.configuration:0 +msgid "All pending configuration wizards have been executed. You may restart individual wizards via the list of configuration wizards." msgstr "" #. module: base @@ -5073,6 +5716,11 @@ msgstr "" msgid "Create" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Current Year with Century: %(year)s" +msgstr "" + #. module: base #: field:ir.exports,export_fields:0 msgid "Export ID" @@ -5084,13 +5732,19 @@ msgid "France" msgstr "" #. module: base +#: model:ir.model,name:base.model_res_log +msgid "res.log" +msgstr "" + +#. module: base +#: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 msgid "Flow Stop" msgstr "" #. module: base -#: model:res.country,name:base.ar -msgid "Argentina" +#: selection:ir.cron,interval_type:0 +msgid "Weeks" msgstr "" #. module: base @@ -5099,7 +5753,7 @@ msgid "Afghanistan, Islamic State of" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:0 #, python-format msgid "Error !" msgstr "" @@ -5109,6 +5763,11 @@ msgstr "" msgid "country_id" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-accessories-archiver+" +msgstr "" + #. module: base #: field:ir.cron,interval_type:0 msgid "Interval Unit" @@ -5120,11 +5779,6 @@ msgstr "" msgid "Kind" msgstr "" -#. module: base -#: selection:ir.actions.todo,start_on:0 -msgid "Manual" -msgstr "" - #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5137,22 +5791,18 @@ msgid "Thousands Separator" msgstr "" #. module: base +#: field:res.log,create_date:0 #: field:res.request,create_date:0 msgid "Created Date" msgstr "" -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Line Plot" -msgstr "" - #. module: base #: help:ir.actions.server,loop_action:0 msgid "Select the action that will be executed. Loop action will not be avaliable inside loop." msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "Chinese (TW) / 正體字" msgstr "" @@ -5167,43 +5817,65 @@ msgid "res.request" msgstr "" #. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "pdf" +#: view:ir.model:0 +msgid "In Memory" msgstr "" #. module: base +#: view:ir.actions.todo:0 +msgid "Todo" +msgstr "" + +#. module: base +#: view:ir.attachment:0 +#: field:ir.attachment,company_id:0 #: field:ir.default,company_id:0 #: field:ir.property,company_id:0 #: field:ir.sequence,company_id:0 #: field:ir.values,company_id:0 #: view:res.company:0 +#: field:res.config.users,company_id:0 #: field:res.currency,company_id:0 #: field:res.partner,company_id:0 #: field:res.partner.address,company_id:0 #: view:res.users:0 -#: field:res.users,company:0 #: field:res.users,company_id:0 msgid "Company" msgstr "" +#. module: base +#: field:ir.attachment,datas:0 +msgid "File Content" +msgstr "" + #. module: base #: model:res.country,name:base.pa msgid "Panama" msgstr "" #. module: base -#: selection:ir.report.custom,state:0 -msgid "Unsubscribed" +#: model:res.partner.title,name:base.res_partner_title_ltd +msgid "Ltd" msgstr "" #. module: base -#: view:ir.attachment:0 -msgid "Preview" +#: help:workflow.transition,group_id:0 +msgid "The group that a user must have to be authorized to validate this transition." msgstr "" #. module: base -#: view:ir.actions.configuration.wizard:0 -msgid "Skip Step" +#: constraint:res.users:0 +msgid "The chosen company is not in the allowed companies for this user" +msgstr "" + +#. module: base +#: model:res.country,name:base.gi +msgid "Gibraltar" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,report_name:0 +msgid "Service Name" msgstr "" #. module: base @@ -5212,21 +5884,20 @@ msgid "Pitcairn Island" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.res_partner_event_type-act -#: model:ir.ui.menu,name:base.menu_res_partner_event_type-act -msgid "Active Partner Events" +#: view:base.module.upgrade:0 +msgid "We suggest to reload the menu tab to see the new menus (Ctrl+T then Ctrl+R)." msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_function_form -#: model:ir.ui.menu,name:base.menu_partner_function_form -#: view:res.partner.function:0 -msgid "Contact Functions" +#: model:ir.actions.act_window,name:base.action_rule +#: model:ir.ui.menu,name:base.menu_action_rule +msgid "Record Rules" msgstr "" #. module: base -#: view:multi_company.default:0 -msgid "Multi Company" +#: field:res.config.users,name:0 +#: field:res.users,name:0 +msgid "User Name" msgstr "" #. module: base @@ -5242,11 +5913,15 @@ msgstr "" #. module: base #: view:ir.model:0 #: view:ir.model.fields:0 -#: view:ir.property:0 -#: model:ir.ui.menu,name:base.next_id_15 +#: view:workflow.activity:0 msgid "Properties" msgstr "" +#. module: base +#: help:ir.sequence,padding:0 +msgid "OpenERP will automatically adds some '0' on the left of the 'Next Number' to get the required padding size." +msgstr "" + #. module: base #: view:res.lang:0 msgid "%A - Full weekday name." @@ -5257,28 +5932,14 @@ msgstr "" msgid "Months" msgstr "" -#. module: base -#: selection:ir.translation,type:0 -msgid "Selection" -msgstr "" - #. module: base #: field:ir.actions.act_window,search_view:0 msgid "Search View" msgstr "" -#. module: base -#: field:ir.rule,domain_force:0 -msgid "Force Domain" -msgstr "" - -#. module: base -#: help:ir.sequence,weight:0 -msgid "If two sequences match, the highest weight will be used." -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_attachment +#: view:ir.actions.report.xml:0 #: view:ir.attachment:0 #: model:ir.ui.menu,name:base.menu_action_attachment msgid "Attachments" @@ -5294,6 +5955,13 @@ msgstr "" msgid "maintenance.contract.wizard" msgstr "" +#. module: base +#: model:ir.ui.menu,name:base.menu_base_partner +#: model:ir.ui.menu,name:base.menu_sale_config_sales +#: model:ir.ui.menu,name:base.menu_sales +msgid "Sales" +msgstr "" + #. module: base #: field:ir.actions.server,child_ids:0 msgid "Other Actions" @@ -5305,8 +5973,8 @@ msgid "Done" msgstr "" #. module: base -#: selection:maintenance.contract.wizard,state:0 -msgid "Validated" +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_FIRST" msgstr "" #. module: base @@ -5315,7 +5983,9 @@ msgid "Miss" msgstr "" #. module: base +#: view:ir.model.access:0 #: field:ir.model.access,perm_write:0 +#: view:ir.rule:0 msgid "Write Access" msgstr "" @@ -5338,22 +6008,30 @@ msgid "Italy" msgstr "" #. module: base -#: selection:ir.rule,operator:0 -msgid "<>" +#: view:ir.actions.todo:0 +#: selection:ir.actions.todo,state:0 +msgid "To Do" msgstr "" #. module: base -#: selection:ir.rule,operator:0 -msgid "<=" +#: selection:ir.ui.menu,icon:0 +msgid "terp-check" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "Estonian / Eesti keel" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: field:res.config.users,email:0 +#: field:res.partner,email:0 +#: field:res.users,email:0 +msgid "E-mail" +msgstr "" + +#. module: base +#: selection:base.language.install,lang:0 msgid "Portugese / português" msgstr "" @@ -5362,33 +6040,33 @@ msgstr "" msgid "GPL-3 or later version" msgstr "" -#. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "HTML from HTML(Mako)" -msgstr "" - #. module: base #: field:workflow.activity,action:0 msgid "Python Action" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "English (US)" msgstr "" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" +#: model:ir.actions.act_window,name:base.action_model_data +#: view:ir.model.data:0 +#: model:ir.ui.menu,name:base.ir_model_data_menu +msgid "Object Identifiers" msgstr "" #. module: base -#: field:ir.report.custom,repeat_header:0 -msgid "Repeat Header" +#: view:base.language.export:0 +msgid "To browse official translations, you can start with these links:" msgstr "" #. module: base #: view:res.bank:0 +#: field:res.config.users,address_id:0 +#: view:res.partner.address:0 +#: view:res.users:0 #: field:res.users,address_id:0 msgid "Address" msgstr "" @@ -5399,13 +6077,18 @@ msgid "Installed version" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_workflow_root -msgid "Workflow Definitions" +#: model:res.country,name:base.mr +msgid "Mauritania" msgstr "" #. module: base -#: model:res.country,name:base.mr -msgid "Mauritania" +#: model:ir.model,name:base.model_ir_translation +msgid "ir.translation" +msgstr "" + +#. module: base +#: view:base.module.update:0 +msgid "Module update result" msgstr "" #. module: base @@ -5436,8 +6119,8 @@ msgid "Congo" msgstr "" #. module: base -#: model:ir.model,name:base.model_ir_exports_line -msgid "ir.exports.line" +#: view:res.lang:0 +msgid "Examples" msgstr "" #. module: base @@ -5446,20 +6129,13 @@ msgid "STOCK_MEDIA_PAUSE" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_country_state -msgid "Country state" +#: model:ir.ui.menu,name:base.menu_tools +msgid "Tools" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.ir_property_form_all -#: model:ir.ui.menu,name:base.menu_ir_property_form_all -msgid "All Properties" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.ir_action_window -#: model:ir.ui.menu,name:base.menu_ir_action_window -msgid "Window Actions" +#: selection:ir.ui.menu,icon:0 +msgid "terp-gtk-go-back-ltr" msgstr "" #. module: base @@ -5475,7 +6151,6 @@ msgstr "" #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 -#: field:ir.model.grid,name:0 #: field:ir.values,model:0 msgid "Object Name" msgstr "" @@ -5486,12 +6161,14 @@ msgid "Object in which you want to create / write the object. If it is empty the msgstr "" #. module: base +#: view:ir.module.module:0 #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 msgid "Not Installed" msgstr "" #. module: base +#: view:workflow.activity:0 #: field:workflow.activity,out_transitions:0 msgid "Outgoing Transitions" msgstr "" @@ -5501,20 +6178,20 @@ msgstr "" msgid "Icon" msgstr "" -#. module: base -#: wizard_button:module.lang.import,init,finish:0 -#: wizard_button:module.lang.install,start,end:0 -#: wizard_button:module.module.update,update,open_window:0 -msgid "Ok" -msgstr "" - #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.next_id_12 +#: view:ir.sequence.type:0 +msgid "Sequences Type" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.res_request-act +#: model:ir.ui.menu,name:base.menu_res_request_act +#: model:ir.ui.menu,name:base.menu_resquest_ref #: view:res.request:0 msgid "Requests" msgstr "" @@ -5535,8 +6212,8 @@ msgid "Pakistan" msgstr "" #. module: base -#: model:res.country,name:base.al -msgid "Albania" +#: view:ir.actions.todo:0 +msgid "Set as Todo" msgstr "" #. module: base @@ -5544,6 +6221,12 @@ msgstr "" msgid "Samoa" msgstr "" +#. module: base +#: view:base.language.install:0 +#: view:base.module.import:0 +msgid "Please be patient, this operation may take a few minutes (depending on the number of modules currently installed)..." +msgstr "" + #. module: base #: field:ir.ui.menu,child_id:0 msgid "Child IDs" @@ -5555,6 +6238,12 @@ msgstr "" msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: view:base.module.import:0 +#: view:base.module.update:0 +msgid "Open Modules" +msgstr "" + #. module: base #: code:addons/base/maintenance/maintenance.py:0 #, python-format @@ -5562,9 +6251,7 @@ msgid "This error occurs on database %s" msgstr "" #. module: base -#: wizard_button:base.module.import,init,import:0 -#: model:ir.actions.wizard,name:base.wizard_base_module_import -#: model:ir.ui.menu,name:base.menu_wizard_module_import +#: view:base.module.import:0 msgid "Import module" msgstr "" @@ -5573,6 +6260,11 @@ msgstr "" msgid "STOCK_DISCONNECT" msgstr "" +#. module: base +#: help:ir.actions.report.xml,report_file:0 +msgid "The path to the main report file (depending on Report Type) or NULL if the content is in another field" +msgstr "" + #. module: base #: model:res.country,name:base.la msgid "Laos" @@ -5580,13 +6272,28 @@ msgstr "" #. module: base #: selection:ir.actions.server,state:0 +#: model:ir.ui.menu,name:base.menu_mail_gateway +#: field:res.config.users,user_email:0 +#: field:res.users,user_email:0 msgid "Email" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_wizard_update_translations -#: model:ir.ui.menu,name:base.menu_wizard_update_translations -msgid "Resynchronise Terms" +#: field:res.config.users,action_id:0 +#: field:res.users,action_id:0 +msgid "Home Action" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_lunch_reporting +#: model:ir.ui.menu,name:base.menu_project_report +#: model:ir.ui.menu,name:base.menu_report_association +#: model:ir.ui.menu,name:base.menu_report_marketing +#: model:ir.ui.menu,name:base.menu_reporting +#: model:ir.ui.menu,name:base.next_id_64 +#: model:ir.ui.menu,name:base.next_id_73 +#: model:ir.ui.menu,name:base.reporting_menu +msgid "Reporting" msgstr "" #. module: base @@ -5594,11 +6301,21 @@ msgstr "" msgid "Togo" msgstr "" +#. module: base +#: selection:ir.module.module,license:0 +msgid "Other Proprietary" +msgstr "" + #. module: base #: selection:workflow.activity,kind:0 msgid "Stop All" msgstr "" +#. module: base +#: view:ir.model.data:0 +msgid "Updatable" +msgstr "" + #. module: base #: view:res.lang:0 msgid "3. %x ,%X ==> 12/05/08, 18:25:20" @@ -5610,15 +6327,8 @@ msgid "Cascade" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Field %d should be a figure" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.action_inventory_form -#: model:ir.ui.menu,name:base.menu_action_inventory_form -msgid "Default Company per Object" +#: field:workflow.transition,group_id:0 +msgid "Group Required" msgstr "" #. module: base @@ -5641,6 +6351,16 @@ msgstr "" msgid "STOCK_PREFERENCES" msgstr "" +#. module: base +#: help:ir.cron,doall:0 +msgid "Enable this if you want to execute missed occurences as soon as the server restarts." +msgstr "" + +#. module: base +#: view:base.module.upgrade:0 +msgid "Start update" +msgstr "" + #. module: base #: field:res.country.state,name:0 msgid "State Name" @@ -5652,6 +6372,7 @@ msgid "Join Mode" msgstr "" #. module: base +#: field:res.config.users,context_tz:0 #: field:res.users,context_tz:0 msgid "Timezone" msgstr "" @@ -5668,13 +6389,18 @@ msgid "ir.actions.report.xml" msgstr "" #. module: base -#: view:wizard.module.lang.export:0 -msgid "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once." +#: model:res.partner.title,shortcut:base.res_partner_title_miss +msgid "Mss" msgstr "" #. module: base -#: wizard_button:module.lang.install,init,start:0 -msgid "Start installation" +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "" + +#. module: base +#: constraint:res.partner:0 +msgid "Error ! You can not create recursive associated members." msgstr "" #. module: base @@ -5687,6 +6413,16 @@ msgstr "" msgid "OpenERP Partners" msgstr "" +#. module: base +#: model:ir.ui.menu,name:base.menu_hr_manager +msgid "HR Manager Dashboard" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Search modules" +msgstr "" + #. module: base #: model:res.country,name:base.by msgid "Belarus" @@ -5698,6 +6434,7 @@ msgstr "" #: field:ir.actions.actions,name:0 #: field:ir.actions.server,name:0 #: field:ir.actions.url,name:0 +#: field:ir.filters,name:0 msgid "Action Name" msgstr "" @@ -5713,11 +6450,21 @@ msgid "Street2" msgstr "" #. module: base +#: model:ir.actions.act_window,name:base.action_view_base_module_update +msgid "Module Update" +msgstr "" + +#. module: base +#: view:ir.cron:0 #: field:ir.cron,user_id:0 +#: view:ir.filters:0 +#: field:ir.filters,user_id:0 #: field:ir.ui.view.custom,user_id:0 #: field:ir.values,user_id:0 +#: field:res.log,user_id:0 #: field:res.partner.event,user_id:0 #: view:res.users:0 +#: field:res.widget.user,user_id:0 msgid "User" msgstr "" @@ -5739,12 +6486,21 @@ msgstr "" msgid "Open Window" msgstr "" +#. module: base +#: field:ir.actions.act_window,auto_search:0 +msgid "Auto Search" +msgstr "" + #. module: base #: field:ir.actions.act_window,filter:0 -#: field:ir.module.repository,filter:0 msgid "Filter" msgstr "" +#. module: base +#: model:res.partner.title,shortcut:base.res_partner_title_madam +msgid "Ms." +msgstr "" + #. module: base #: model:res.country,name:base.ch msgid "Switzerland" @@ -5771,14 +6527,19 @@ msgid "Rounding factor" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_company -msgid "res.company" +#: view:base.language.install:0 +msgid "Load" msgstr "" #. module: base -#: wizard_view:module.upgrade,end:0 -#: wizard_view:module.upgrade,start:0 -msgid "System upgrade done" +#: help:res.config.users,name:0 +#: help:res.users,name:0 +msgid "The new user's real name, used for searching and most listings" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_request_history +msgid "res.request.history" msgstr "" #. module: base @@ -5787,8 +6548,8 @@ msgid "Somalia" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_config_simple_view_form -msgid "Configure Simple View" +#: model:ir.model,name:base.model_res_config +msgid "res.config" msgstr "" #. module: base @@ -5797,42 +6558,41 @@ msgid "Important customers" msgstr "" #. module: base +#: view:res.lang:0 +msgid "Update Terms" +msgstr "" + +#. module: base +#: field:partner.sms.send,mobile_to:0 #: field:res.request,act_to:0 #: field:res.request.history,act_to:0 msgid "To" msgstr "" #. module: base +#: view:ir.cron:0 #: field:ir.cron,args:0 msgid "Arguments" msgstr "" #. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "sxw" +#: selection:ir.module.module,license:0 +msgid "GPL Version 2" msgstr "" #. module: base -#: field:ir.actions.report.xml,auto:0 -msgid "Automatic XSL:RML" +#: selection:ir.module.module,license:0 +msgid "GPL Version 3" msgstr "" #. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" +#: view:partner.wizard.ean.check:0 +msgid "Correct EAN13" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: model:res.partner.category,name:base.res_partner_category_0 -#: selection:res.partner.event,partner_type:0 -msgid "Customer" -msgstr "" - -#. module: base -#: field:ir.actions.report.custom,name:0 -#: field:ir.report.custom,name:0 -msgid "Report Name" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" msgstr "" #. module: base @@ -5840,13 +6600,9 @@ msgstr "" msgid "Short Description" msgstr "" -#. module: base -#: field:res.partner.event,partner_type:0 -msgid "Partner Relation" -msgstr "" - #. module: base #: field:ir.actions.act_window,context:0 +#: field:ir.filters,context:0 msgid "Context Value" msgstr "" @@ -5855,6 +6611,11 @@ msgstr "" msgid "Hour 00->24: %(h24)s" msgstr "" +#. module: base +#: field:ir.cron,nextcall:0 +msgid "Next Execution Date" +msgstr "" + #. module: base #: help:multi_company.default,field_id:0 msgid "Select field property" @@ -5874,12 +6635,15 @@ msgstr "" #: field:ir.actions.act_window.view,sequence:0 #: field:ir.actions.server,sequence:0 #: field:ir.actions.todo,sequence:0 -#: field:ir.module.repository,sequence:0 -#: field:ir.report.custom.fields,sequence:0 +#: view:ir.cron:0 #: view:ir.sequence:0 #: field:ir.ui.menu,sequence:0 +#: view:ir.ui.view:0 +#: field:ir.ui.view,priority:0 #: field:ir.ui.view_sc,sequence:0 +#: field:multi_company.default,sequence:0 #: field:res.partner.bank,sequence:0 +#: field:res.widget.user,sequence:0 #: field:wizard.ir.model.menu.create.line,sequence:0 msgid "Sequence" msgstr "" @@ -5890,14 +6654,17 @@ msgid "Tunisia" msgstr "" #. module: base -#: field:ir.actions.wizard,name:0 -msgid "Wizard Info" +#: view:base.language.export:0 +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export Translation" 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" +#: model:ir.actions.act_window,name:base.action_server_action +#: view:ir.actions.server:0 +#: model:ir.ui.menu,name:base.menu_server_action +msgid "Server Actions" msgstr "" #. module: base @@ -5911,14 +6678,8 @@ msgid "Legends for Date and Time Formats" msgstr "" #. module: base -#: selection:ir.report.custom,frequency:0 -msgid "Monthly" -msgstr "" - -#. module: base -#: model:ir.actions.act_window,name:base.res_partner_som-act -#: model:ir.ui.menu,name:base.menu_res_partner_som-act -msgid "States of mind" +#: selection:ir.actions.server,state:0 +msgid "Copy Object" msgstr "" #. module: base @@ -5939,35 +6700,35 @@ msgid "Table Ref." msgstr "" #. module: base -#: field:res.roles,parent_id:0 -msgid "Parent" -msgstr "" - -#. module: base -#: view:multi_company.default:0 -msgid "Returning" +#: view:res.config:0 +#: view:res.config.installer:0 +msgid "description" msgstr "" #. module: base #: field:ir.actions.act_window,res_model:0 -#: field:ir.actions.report.custom,model:0 #: field:ir.actions.report.xml,model:0 #: field:ir.actions.server,model_id:0 #: field:ir.actions.wizard,model:0 #: field:ir.cron,model:0 #: field:ir.default,field_tbl:0 -#: view:ir.model:0 +#: field:ir.filters,model_id:0 #: field:ir.model,model:0 +#: view:ir.model.access:0 #: field:ir.model.access,model_id:0 +#: view:ir.model.data:0 #: field:ir.model.data,model:0 -#: field:ir.model.grid,model:0 -#: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 +#: view:ir.model.fields:0 +#: view:ir.rule:0 +#: field:ir.rule,model_id:0 #: selection:ir.translation,type:0 +#: view:ir.ui.view:0 #: field:ir.ui.view,model:0 +#: view:ir.values:0 #: field:ir.values,model_id:0 +#: field:multi_company.default,object_id:0 +#: field:res.log,res_model:0 #: field:res.request.link,object:0 -#: field:wizard.ir.model.menu.create,model_id:0 #: field:workflow.triggers,model:0 msgid "Object" msgstr "" @@ -5983,8 +6744,15 @@ msgid "Minute: %(min)s" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_ZOOM_100" +#: view:base.update.translations:0 +#: model:ir.actions.act_window,name:base.action_wizard_update_translations +#: model:ir.ui.menu,name:base.menu_wizard_update_translations +msgid "Synchronize Translations" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_10 +msgid "Scheduler" msgstr "" #. module: base @@ -5993,8 +6761,9 @@ msgid "%w - Weekday as a decimal number [0(Sunday),6]." msgstr "" #. module: base -#: view:wizard.module.lang.export:0 -msgid "Export translation file" +#: help:ir.cron,numbercall:0 +msgid "Number of time the function is called,\n" +"a negative number indicates no limit" msgstr "" #. module: base @@ -6002,9 +6771,19 @@ msgstr "" msgid "User Ref." msgstr "" +#. module: base +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "Warning !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_base_config #: model:ir.ui.menu,name:base.menu_config +#: model:ir.ui.menu,name:base.menu_event_config +#: model:ir.ui.menu,name:base.menu_lunch_survey_root +#: model:ir.ui.menu,name:base.menu_marketing_config_association +#: model:ir.ui.menu,name:base.menu_marketing_config_root #: view:res.company:0 msgid "Configuration" msgstr "" @@ -6015,18 +6794,8 @@ msgid "Loop Expression" msgstr "" #. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Retailer" -msgstr "" - -#. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" -msgstr "" - -#. module: base -#: field:ir.actions.todo,start_on:0 -msgid "Start On" +#: help:res.partner,website:0 +msgid "Website of Partner" msgstr "" #. module: base @@ -6037,11 +6806,11 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_res_partner #: field:res.company,partner_id:0 -#: field:res.partner.address,partner_id:0 +#: view:res.partner.address:0 #: field:res.partner.bank,partner_id:0 #: field:res.partner.event,partner_id:0 #: selection:res.partner.title,domain:0 -#: view:res.users:0 +#: model:res.request.link,name:base.req_link_partner msgid "Partner" msgstr "" @@ -6056,46 +6825,40 @@ msgid "Falkland Islands" msgstr "" #. module: base -#: selection:ir.actions.report.xml,report_type:0 -msgid "odt" +#: model:res.country,name:base.lb +msgid "Lebanon" msgstr "" #. module: base -#: field:ir.actions.report.custom,type:0 -#: field:ir.actions.report.xml,type:0 -#: field:ir.report.custom,type:0 +#: view:ir.actions.report.xml:0 +#: field:ir.actions.report.xml,report_type:0 msgid "Report Type" msgstr "" #. module: base #: field:ir.actions.todo,state:0 +#: view:ir.module.module:0 #: field:ir.module.module,state:0 #: field:ir.module.module.dependency,state:0 -#: field:ir.report.custom,state:0 #: field:maintenance.contract,state:0 #: field:res.bank,state:0 #: view:res.country.state:0 #: field:res.partner.bank,state_id:0 +#: view:res.request:0 #: field:res.request,state:0 #: field:workflow.instance,state:0 #: field:workflow.workitem,state:0 msgid "State" msgstr "" -#. module: base -#: selection:ir.module.module,license:0 -msgid "Other proprietary" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-administration" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_translation -#: model:ir.ui.menu,name:base.menu_action_translation -msgid "All terms" +#: selection:base.language.install,lang:0 +msgid "Galician / Galego" msgstr "" #. module: base @@ -6109,11 +6872,16 @@ msgid "4. %b, %B ==> Dec, December" msgstr "" #. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_install -#: model:ir.ui.menu,name:base.menu_wizard_lang_install +#: view:base.language.install:0 +#: model:ir.ui.menu,name:base.menu_view_base_language_install msgid "Load an Official Translation" msgstr "" +#. module: base +#: view:res.currency:0 +msgid "Miscelleanous" +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_10 msgid "Open Source Service Company" @@ -6125,8 +6893,8 @@ msgid "waiting" msgstr "" #. module: base -#: field:ir.attachment,link:0 -msgid "Link" +#: field:ir.actions.report.xml,report_file:0 +msgid "Report file" msgstr "" #. module: base @@ -6134,21 +6902,26 @@ msgstr "" msgid "workflow.triggers" msgstr "" -#. module: base -#: field:ir.report.custom.fields,report_id:0 -msgid "Report Ref" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-hr" msgstr "" +#. module: base +#: view:ir.attachment:0 +msgid "Created" +msgstr "" + #. module: base #: help:ir.actions.wizard,multi:0 msgid "If set to true, the wizard will not be displayed on the right toolbar of a form view." msgstr "" +#. module: base +#: view:base.language.import:0 +msgid "- type,name,res_id,src,value" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DND" @@ -6165,15 +6938,13 @@ msgid "View Ref." msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "Dutch (Belgium) / Nederlands (Belgïe)" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.open_repository_tree -#: view:ir.module.repository:0 -#: model:ir.ui.menu,name:base.menu_module_repository_tree -msgid "Repository list" +#: selection:ir.translation,type:0 +msgid "Selection" msgstr "" #. module: base @@ -6185,6 +6956,8 @@ msgstr "" #: field:ir.actions.act_window,type:0 #: field:ir.actions.act_window_close,type:0 #: field:ir.actions.actions,type:0 +#: field:ir.actions.report.xml,type:0 +#: view:ir.actions.server:0 #: field:ir.actions.server,state:0 #: field:ir.actions.server,type:0 #: field:ir.actions.url,type:0 @@ -6192,16 +6965,31 @@ msgstr "" msgid "Action Type" msgstr "" +#. module: base +#: view:base.language.import:0 +#: model:ir.actions.act_window,name:base.action_view_base_import_language +#: model:ir.ui.menu,name:base.menu_view_base_import_language +msgid "Import Translation" +msgstr "" + #. module: base #: field:res.partner.bank.type,field_ids:0 msgid "Type fields" msgstr "" #. module: base +#: view:ir.module.module:0 #: field:ir.module.module,category_id:0 msgid "Category" msgstr "" +#. module: base +#: view:ir.attachment:0 +#: selection:ir.attachment,type:0 +#: selection:ir.property,type:0 +msgid "Binary" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FLOPPY" @@ -6225,14 +7013,13 @@ msgid "Your can't submit bug reports due to uncovered modules: %s" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_other_form -msgid "Other Partners" +#: view:workflow.activity:0 +msgid "Conditions" msgstr "" #. module: base -#: view:ir.model:0 -#: view:res.request:0 -msgid "Status" +#: model:ir.actions.act_window,name:base.action_partner_other_form +msgid "Other Partners" msgstr "" #. module: base @@ -6282,6 +7069,16 @@ msgstr "" msgid "Estonia" msgstr "" +#. module: base +#: model:ir.ui.menu,name:base.dashboard +msgid "Dashboards" +msgstr "" + +#. module: base +#: help:ir.attachment,type:0 +msgid "Binary File or external URL" +msgstr "" + #. module: base #: model:res.country,name:base.nl msgid "Netherlands" @@ -6292,16 +7089,6 @@ msgstr "" msgid "Low Level Objects" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_report_custom -msgid "ir.report.custom" -msgstr "" - -#. module: base -#: selection:res.partner.event,type:0 -msgid "Purchase Offer" -msgstr "" - #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" @@ -6312,6 +7099,11 @@ msgstr "" msgid "STOCK_ZOOM_FIT" msgstr "" +#. module: base +#: model:ir.ui.menu,name:base.menu_emails +msgid "Emails" +msgstr "" + #. module: base #: model:res.country,name:base.cd msgid "Congo, The Democratic Republic of the" @@ -6335,21 +7127,11 @@ msgid "Number of Calls" msgstr "" #. module: base -#: wizard_view:module.lang.install,start:0 -msgid "Language file loaded." -msgstr "" - -#. module: base -#: wizard_view:module.upgrade,next:0 -#: wizard_field:module.upgrade,next,module_info:0 +#: view:base.module.upgrade:0 +#: field:base.module.upgrade,module_info:0 msgid "Modules to update" msgstr "" -#. module: base -#: model:ir.actions.act_window,name:base.action2 -msgid "Company Architecture" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" @@ -6376,7 +7158,7 @@ msgid "Trigger Date" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "Croatian / hrvatski jezik" msgstr "" @@ -6385,14 +7167,19 @@ msgstr "" msgid "STOCK_GO_FORWARD" msgstr "" +#. module: base +#: field:base.language.install,overwrite:0 +msgid "Overwrite Existing Terms" +msgstr "" + #. module: base #: help:ir.actions.server,code:0 msgid "Python code to be executed" msgstr "" #. module: base -#: selection:ir.module.module.dependency,state:0 -msgid "Uninstallable" +#: model:ir.ui.menu,name:base.menu_project_management_time_tracking +msgid "Time Tracking" msgstr "" #. module: base @@ -6407,13 +7194,14 @@ msgid "Trigger" msgstr "" #. module: base -#: field:ir.model.fields,translate:0 -msgid "Translate" +#: model:ir.model,name:base.model_base_module_update +msgid "Update Module" 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 ]]" +#: view:ir.model.fields:0 +#: field:ir.model.fields,translate:0 +msgid "Translate" msgstr "" #. module: base @@ -6422,7 +7210,7 @@ msgid "Body" msgstr "" #. module: base -#: wizard_button:res.partner.spam_send,init,send:0 +#: view:partner.wizard.spam:0 msgid "Send Email" msgstr "" @@ -6432,12 +7220,13 @@ msgid "STOCK_SELECT_FONT" msgstr "" #. module: base +#: field:res.config.users,menu_id:0 #: field:res.users,menu_id:0 msgid "Menu Action" msgstr "" #. module: base -#: selection:wizard.module.lang.export,state:0 +#: selection:base.language.export,state:0 msgid "choose" msgstr "" @@ -6448,6 +7237,11 @@ msgstr "" msgid "Graph" msgstr "" +#. module: base +#: help:ir.model,osv_memory:0 +msgid "Indicates whether this object model lives in memory only, i.e. is not persisted (osv.osv_memory)" +msgstr "" + #. module: base #: field:res.partner,child_ids:0 #: field:res.request,ref_partner_id:0 @@ -6455,13 +7249,10 @@ msgid "Partner Ref." msgstr "" #. module: base -#: field:ir.report.custom,print_format:0 -msgid "Print format" -msgstr "" - -#. module: base -#: model:ir.ui.menu,name:base.menu_low_workflow -msgid "Workflow Items" +#: model:ir.actions.act_window,name:base.action_partner_supplier_form +#: model:ir.ui.menu,name:base.menu_procurement_management_supplier_name +#: view:res.partner:0 +msgid "Suppliers" msgstr "" #. module: base @@ -6486,6 +7277,7 @@ msgstr "" #. module: base #: view:ir.model:0 +#: view:ir.rule:0 #: view:res.groups:0 msgid "Access Rights" msgstr "" @@ -6495,11 +7287,6 @@ msgstr "" msgid "Greenland" msgstr "" -#. module: base -#: help:ir.actions.report.xml,report_rml:0 -msgid "The .rml path of the file or NULL if the content is in report_rml_content" -msgstr "" - #. module: base #: field:res.partner.bank,acc_number:0 msgid "Account Number" @@ -6510,21 +7297,11 @@ msgstr "" msgid "1. %c ==> Fri Dec 5 18:25:20 2008" msgstr "" -#. module: base -#: help:ir.ui.menu,groups_id:0 -msgid "If you have groups, the visibility of this menu will be based on these groups. If this field is empty, Open ERP will compute visibility based on the related object's read access." -msgstr "" - #. module: base #: model:res.country,name:base.nc msgid "New Caledonia (French)" msgstr "" -#. module: base -#: field:res.partner.function,name:0 -msgid "Function Name" -msgstr "" - #. module: base #: view:maintenance.contract.wizard:0 msgid "_Cancel" @@ -6535,9 +7312,14 @@ msgstr "" msgid "Cyprus" msgstr "" +#. module: base +#: view:base.module.import:0 +msgid "This wizard helps you add a new language to you OpenERP system. After loading a new language it becomes available as default interface language for users and partners." +msgstr "" + #. module: base #: field:ir.actions.server,subject:0 -#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:partner.wizard.spam,subject:0 #: field:res.request,name:0 msgid "Subject" msgstr "" @@ -6549,6 +7331,17 @@ msgid "From" msgstr "" #. module: base +#: view:res.users:0 +msgid "Preferences" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_consumers0 +msgid "Consumers" +msgstr "" + +#. module: base +#: view:res.config:0 #: wizard_button:server.action.create,init,step_1:0 msgid "Next" msgstr "" @@ -6559,14 +7352,23 @@ msgid "terp-report" msgstr "" #. module: base -#: field:ir.actions.report.xml,report_rml_content:0 -#: field:ir.actions.report.xml,report_rml_content_data:0 -msgid "RML content" +#: help:ir.cron,function:0 +msgid "Name of the method to be called on the object when this scheduler is executed." msgstr "" #. module: base -#: view:workflow.activity:0 -msgid "Incoming transitions" +#: model:res.company,overdue_msg:base.main_company +msgid "Would your payment have been carried out after this mail was sent, please consider the present one as void. Do not hesitate to contact our accounting department" +msgstr "" + +#. module: base +#: view:ir.actions.report.xml:0 +msgid "Miscellaneous" +msgstr "" + +#. module: base +#: field:ir.attachment,url:0 +msgid "Url" msgstr "" #. module: base @@ -6574,12 +7376,6 @@ msgstr "" msgid "China" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "Password empty !" -msgstr "" - #. module: base #: model:res.country,name:base.eh msgid "Western Sahara" @@ -6596,13 +7392,14 @@ msgid "Indonesia" msgstr "" #. module: base -#: selection:ir.actions.todo,start_on:0 -msgid "At Once" +#: view:base.update.translations:0 +msgid "This wizard will detect new terms to translate in the application, so that you can then add translations manually or perform a complete export (as a template for a new language example)." msgstr "" #. module: base -#: selection:ir.actions.server,state:0 -msgid "Write Object" +#: help:multi_company.default,expression:0 +msgid "Expression, must be True to match\n" +"use context.get or user (browse)" msgstr "" #. module: base @@ -6610,6 +7407,11 @@ msgstr "" msgid "Bulgaria" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-folder-green" +msgstr "" + #. module: base #: model:res.country,name:base.ao msgid "Angola" @@ -6620,11 +7422,6 @@ msgstr "" msgid "French Southern Territories" msgstr "" -#. module: base -#: view:ir.actions.server:0 -msgid "Only one client action will be execute, last clinent action will be consider in case of multiples clients actions" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_HELP" @@ -6632,7 +7429,6 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_res_currency -#: view:res.company:0 #: field:res.company,currency_id:0 #: field:res.company,currency_ids:0 #: view:res.currency:0 @@ -6651,51 +7447,77 @@ msgstr "" msgid "5. %y, %Y ==> 08, 2008" msgstr "" +#. module: base +#: model:res.partner.title,shortcut:base.res_partner_title_ltd +msgid "ltd" +msgstr "" + #. module: base #: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 +#: field:res.log,res_id:0 msgid "Object ID" msgstr "" #. module: base -#: selection:ir.report.custom,print_orientation:0 +#: view:res.company:0 msgid "Landscape" msgstr "" -#. module: base -#: model:ir.actions.act_window,name:base.action_partner_form -#: model:ir.ui.menu,name:base.menu_base_config_partner -#: model:ir.ui.menu,name:base.menu_base_partner -#: model:ir.ui.menu,name:base.menu_partner_form -#: view:res.partner:0 -#: view:res.partner.category:0 -#: field:res.partner.category,partner_ids:0 -msgid "Partners" -msgstr "" - #. module: base #: model:ir.ui.menu,name:base.menu_administration msgid "Administration" msgstr "" #. module: base -#: selection:ir.rule,operator:0 -msgid "child_of" +#: view:base.module.update:0 +msgid "Click on Update below to start the process..." msgstr "" #. module: base -#: view:res.users:0 -#: field:res.users,company_ids:0 -msgid "Accepted Companies" +#: selection:ir.ui.menu,icon:0 +msgid "terp-go-today" msgstr "" #. module: base -#: field:ir.report.custom.fields,operation:0 +#: model:res.country,name:base.ir +msgid "Iran" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.res_widget_user_act_window +#: model:ir.ui.menu,name:base.menu_res_widget_user_act_window +msgid "Widgets per User" +msgstr "" + +#. module: base +#: selection:base.language.install,lang:0 +msgid "Slovak / Slovenský jazyk" +msgstr "" + +#. module: base +#: field:base.language.export,state:0 #: field:ir.ui.menu,icon_pict:0 -#: field:wizard.module.lang.export,state:0 +#: field:res.widget.wizard,widget_id:0 msgid "unknown" msgstr "" +#. module: base +#: field:res.currency,symbol:0 +msgid "Symbol" +msgstr "" + +#. module: base +#: help:res.config.users,login:0 +#: help:res.users,login:0 +msgid "Used to log into the system" +msgstr "" + +#. module: base +#: view:base.update.translations:0 +msgid "Synchronize Translation" +msgstr "" + #. module: base #: field:ir.ui.view_sc,res_id:0 msgid "Resource Ref." @@ -6711,15 +7533,21 @@ msgstr "" msgid "Iraq" msgstr "" +#. module: base +#: model:ir.ui.menu,name:base.menu_association +msgid "Association" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" msgstr "" #. module: base -#: wizard_view:base.module.import,import:0 -#: wizard_view:base.module.import,init:0 -msgid "Module import" +#: model:ir.ui.menu,name:base.menu_address_book +#: model:ir.ui.menu,name:base.menu_config_address_book +#: model:ir.ui.menu,name:base.menu_procurement_management_supplier +msgid "Address Book" msgstr "" #. module: base @@ -6728,13 +7556,23 @@ msgid "ir.sequence.type" msgstr "" #. module: base -#: selection:wizard.module.lang.export,format:0 +#: selection:base.language.export,format:0 msgid "CSV File" msgstr "" +#. module: base +#: field:res.company,account_no:0 +msgid "Account No." +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + #. module: base #: selection:ir.model,state:0 -#: selection:ir.model.grid,state:0 msgid "Base Object" msgstr "" @@ -6749,15 +7587,7 @@ msgid "STOCK_STRIKETHROUGH" msgstr "" #. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -msgid "(year)=" -msgstr "" - -#. module: base -#: rml:ir.module.reference:0 +#: report:ir.module.reference.graph:0 msgid "Dependencies :" msgstr "" @@ -6787,21 +7617,11 @@ msgid "Antigua and Barbuda" msgstr "" #. module: base -#: field:ir.actions.server,condition:0 -#: field:ir.report.custom.fields,fc0_condition:0 -#: field:ir.sequence,condition:0 -#: view:multi_company.default:0 -#: field:workflow.transition,condition:0 -msgid "Condition" +#: model:res.country,name:base.gw +msgid "Guinea Bissau" msgstr "" #. module: base -#: model:res.country,name:base.zr -msgid "Zaire" -msgstr "" - -#. module: base -#: field:ir.attachment,res_id:0 #: field:ir.model.data,res_id:0 #: field:ir.translation,res_id:0 #: field:workflow.instance,res_id:0 @@ -6812,28 +7632,25 @@ msgstr "" #. module: base #: view:ir.cron:0 #: field:ir.model,info:0 -#: field:ir.model.grid,info:0 -#: view:maintenance.contract:0 msgid "Information" msgstr "" #. module: base -#: view:wizard.module.lang.export:0 -msgid "The official translations pack of all OpenERP/OpenObjects module are managed through launchpad. We use their online interface to synchronize all translations efforts." +#: selection:ir.ui.menu,icon:0 +msgid "terp-call-start" msgstr "" #. module: base -#: field:ir.actions.report.xml,report_rml:0 -msgid "RML path" +#: view:res.widget.user:0 +msgid "User Widgets" msgstr "" #. module: base -#: field:ir.actions.configuration.wizard,item_id:0 -msgid "Next Configuration Wizard" +#: view:base.module.update:0 +msgid "Update Module List" msgstr "" #. module: base -#: selection:ir.actions.todo,type:0 #: selection:res.partner.address,type:0 msgid "Other" msgstr "" @@ -6844,21 +7661,10 @@ msgid "Reply" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "Turkish / Türkçe" msgstr "" -#. module: base -#: model:ir.actions.act_window,name:base.action_translation_untrans -#: model:ir.ui.menu,name:base.menu_action_translation_untrans -msgid "Untranslated terms" -msgstr "" - -#. module: base -#: wizard_view:module.lang.import,init:0 -msgid "Import New Language" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_workflow_activity_form #: model:ir.ui.menu,name:base.menu_workflow_activity @@ -6873,24 +7679,40 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -#: selection:ir.rule,operator:0 -msgid "=" +#: selection:ir.ui.view,type:0 +msgid "Diagram" msgstr "" #. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Second field should be figures" +#: help:multi_company.default,name:0 +msgid "Name it to easily find a record" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_model_grid_security -#: model:ir.ui.menu,name:base.menu_ir_access_grid -msgid "Access Controls Grid" +#: selection:ir.ui.menu,icon:0 +msgid "terp-locked" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.grant_menu_access +#: model:ir.ui.menu,name:base.menu_grant_menu_access +msgid "Menu Items" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-personal" +msgstr "" + +#. module: base +#: constraint:ir.rule:0 +msgid "Rules are not supported for osv_memory objects !" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_event_association +#: model:ir.ui.menu,name:base.menu_event_main +msgid "Events Organisation" msgstr "" #. module: base @@ -6898,6 +7720,7 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_custom_action #: model:ir.ui.menu,name:base.menu_ir_sequence_actions #: model:ir.ui.menu,name:base.next_id_6 +#: view:workflow.activity:0 msgid "Actions" msgstr "" @@ -6932,8 +7755,8 @@ msgid "Add or not the coporate RML header" msgstr "" #. module: base -#: field:res.partner.event,document:0 -msgid "Document" +#: help:workflow.transition,act_to:0 +msgid "The destination activity." msgstr "" #. module: base @@ -6947,7 +7770,8 @@ msgid "STOCK_STOP" msgstr "" #. module: base -#: view:wizard.module.update_translations:0 +#: view:base.module.update:0 +#: view:base.update.translations:0 msgid "Update" msgstr "" @@ -6967,7 +7791,7 @@ msgid "Tanzania" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "Danish / Dansk" msgstr "" @@ -6982,31 +7806,59 @@ msgid "Other Actions Configuration" msgstr "" #. module: base -#: selection:ir.ui.menu,icon:0 -msgid "STOCK_EXECUTE" +#: view:res.lang:0 +msgid "%c - Appropriate date and time representation." +msgstr "" + +#. module: base +#: view:res.config.installer:0 +msgid "Install Modules" msgstr "" #. module: base #: model:ir.actions.act_window,name:base.res_partner_canal-act #: model:ir.model,name:base.model_res_partner_canal #: model:ir.ui.menu,name:base.menu_res_partner_canal-act +#: view:res.partner.canal:0 msgid "Channels" msgstr "" +#. module: base +#: view:ir.ui.view:0 +msgid "Extra Info" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.act_values_form_action +#: model:ir.ui.menu,name:base.menu_values_form_action +msgid "Client Events" +msgstr "" + #. module: base #: view:ir.module.module:0 msgid "Schedule for Installation" msgstr "" #. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" +#: model:ir.model,name:base.model_partner_wizard_ean_check +msgid "Ean Check" msgstr "" #. module: base -#: model:ir.model,name:base.model_res_partner_bank -#: view:res.partner.bank:0 -msgid "Bank Accounts" +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "You can not have two users with the same login !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "Please keep in mind that data currently displayed may not be relevant after switching to another company. If you have unsaved changes, please make sure to save and close the forms before switching to a different company (you can click on Cancel now)" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_multi_company_default +msgid "Default multi company" msgstr "" #. module: base @@ -7014,6 +7866,12 @@ msgstr "" msgid "Send" msgstr "" +#. module: base +#: field:res.config.users,menu_tips:0 +#: field:res.users,menu_tips:0 +msgid "Menu Tips" +msgstr "" + #. module: base #: field:ir.translation,src:0 msgid "Source" @@ -7035,19 +7893,30 @@ msgid "Internal Header/Footer" msgstr "" #. module: base -#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#: code:addons/base/module/wizard/base_export_language.py:0 #, python-format msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." msgstr "" #. module: base -#: wizard_button:module.upgrade,end,config:0 -#: wizard_button:module.upgrade,start,config:0 +#: view:base.module.upgrade:0 msgid "Start configuration" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: view:base.language.export:0 +msgid "_Export" +msgstr "" + +#. module: base +#: field:base.language.install,state:0 +#: field:base.module.import,state:0 +#: field:base.module.update,state:0 +msgid "state" +msgstr "" + +#. module: base +#: selection:base.language.install,lang:0 msgid "Catalan / Català" msgstr "" @@ -7066,12 +7935,6 @@ msgstr "" msgid "Saudi Arabia" msgstr "" -#. module: base -#: code:addons/base/ir/ir_report_custom.py:0 -#, python-format -msgid "Bar charts need at least two fields" -msgstr "" - #. module: base #: 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." @@ -7082,31 +7945,48 @@ msgstr "" msgid "Relation Field" msgstr "" +#. module: base +#: view:res.partner.event:0 +msgid "Event Logs" +msgstr "" + +#. module: base +#: code:addons/base/module/wizard/base_module_configuration.py:0 +#, python-format +msgid "System Configuration done" +msgstr "" + #. module: base #: field:workflow.triggers,instance_id:0 msgid "Destination Instance" msgstr "" #. module: base +#: field:ir.actions.act_window,multi:0 #: field:ir.actions.wizard,multi:0 msgid "Action on Multiple Doc." msgstr "" #. module: base -#: view:wizard.module.lang.export:0 +#: view:base.language.export:0 msgid "https://translations.launchpad.net/openobject" msgstr "" -#. module: base -#: field:ir.actions.todo,start_date:0 -msgid "Start Date" -msgstr "" - #. module: base #: field:ir.actions.report.xml,report_xml:0 msgid "XML path" msgstr "" +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-go-year" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,restart:0 +msgid "On Skip" +msgstr "" + #. module: base #: model:res.country,name:base.gn msgid "Guinea" @@ -7118,20 +7998,23 @@ msgid "Luxembourg" msgstr "" #. module: base -#: model:ir.actions.todo,note:base.config_wizard_step_user -msgid "Create your users.\n" -"You will be able to assign groups to users. Groups define the access rights of each users on the different objects of the system.\n" -" " +#: view:base.module.upgrade:0 +msgid "The selected modules have been updated / installed !" msgstr "" #. module: base -#: selection:res.request,priority:0 -msgid "Low" +#: constraint:ir.ui.menu:0 +msgid "Error ! You can not create recursive Menu." msgstr "" #. module: base -#: view:ir.values:0 -msgid "tree_but_action, client_print_multi" +#: selection:ir.ui.menu,icon:0 +msgid "terp-gtk-jump-to-rtl" +msgstr "" + +#. module: base +#: view:ir.rule:0 +msgid "3. If user belongs to several groups, the results from step 2 are combined with logical OR operator" msgstr "" #. module: base @@ -7141,10 +8024,16 @@ msgstr "" #. module: base #: field:res.bank,phone:0 +#: field:res.partner,phone:0 #: field:res.partner.address,phone:0 msgid "Phone" msgstr "" +#. module: base +#: help:ir.actions.report.xml,attachment_use:0 +msgid "If you check this, then the second time the user prints with same attachment name, it returns the previous report." +msgstr "" + #. module: base #: field:res.groups,menu_access:0 msgid "Access Menu" @@ -7156,21 +8045,8 @@ msgid "Thailand" msgstr "" #. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -msgid ">" -msgstr "" - -#. module: base -#: field:ir.model.access,perm_unlink:0 -msgid "Delete Permission" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_multi_company_default -msgid "multi_company.default" +#: model:ir.ui.menu,name:base.menu_crm_config_lead +msgid "Leads & Opportunities" msgstr "" #. module: base @@ -7190,11 +8066,9 @@ msgid "STOCK_PRINT" msgstr "" #. module: base -#: selection:ir.report.custom.fields,fc0_op:0 -#: selection:ir.report.custom.fields,fc1_op:0 -#: selection:ir.report.custom.fields,fc2_op:0 -#: selection:ir.report.custom.fields,fc3_op:0 -msgid "<" +#: view:ir.rule:0 +#: view:res.partner:0 +msgid "General" msgstr "" #. module: base @@ -7208,6 +8082,11 @@ msgstr "" msgid "ir.actions.act_window" msgstr "" +#. module: base +#: field:ir.rule,perm_create:0 +msgid "Apply For Create" +msgstr "" + #. module: base #: model:res.country,name:base.vi msgid "Virgin Islands (USA)" @@ -7219,12 +8098,11 @@ msgid "Taiwan" msgstr "" #. module: base -#: view:ir.rule:0 -msgid "If you don't force the domain, it will use the simple domain setup" +#: model:ir.model,name:base.model_res_currency_rate +msgid "Currency Rate" msgstr "" #. module: base -#: field:ir.report.custom,field_parent:0 #: field:ir.ui.view,field_parent:0 msgid "Child Field" msgstr "" @@ -7233,7 +8111,6 @@ msgstr "" #: field:ir.actions.act_window,usage:0 #: field:ir.actions.act_window_close,usage:0 #: field:ir.actions.actions,usage:0 -#: field:ir.actions.report.custom,usage:0 #: field:ir.actions.report.xml,usage:0 #: field:ir.actions.server,usage:0 #: field:ir.actions.wizard,usage:0 @@ -7251,7 +8128,7 @@ msgid "Not Installable" msgstr "" #. module: base -#: rml:ir.module.reference:0 +#: report:ir.module.reference.graph:0 msgid "View :" msgstr "" @@ -7261,9 +8138,9 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_supplier_form -#: view:res.partner:0 -msgid "Suppliers" +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You cannot remove the field '%s' !" msgstr "" #. module: base @@ -7272,12 +8149,13 @@ msgid "STOCK_JUMP_TO" msgstr "" #. module: base -#: field:ir.actions.todo,end_date:0 -msgid "End Date" +#: selection:base.language.install,lang:0 +msgid "Gujarati / India" msgstr "" #. module: base #: field:ir.exports,resource:0 +#: view:ir.property:0 #: field:ir.property,res_id:0 msgid "Resource" msgstr "" @@ -7289,8 +8167,18 @@ msgid "Contract ID" msgstr "" #. module: base -#: selection:ir.report.custom.fields,alignment:0 -msgid "center" +#: selection:base.language.install,lang:0 +msgid "Persian / فارس" +msgstr "" + +#. module: base +#: view:ir.actions.act_window:0 +msgid "View Ordering" +msgstr "" + +#. module: base +#: view:base.language.import:0 +msgid "Supported file formats: *.csv (Comma-separated values) or *.po (GetText Portable Objects)" msgstr "" #. module: base @@ -7299,24 +8187,19 @@ msgid "States" msgstr "" #. module: base -#: view:multi_company.default:0 -msgid "Matching" -msgstr "" - -#. module: base -#: field:ir.actions.configuration.wizard,name:0 -msgid "Next Wizard" +#: model:ir.model,name:base.model_base_module_configuration +msgid "base.module.configuration" msgstr "" #. module: base +#: field:base.language.export,name:0 #: field:ir.attachment,datas_fname:0 -#: field:wizard.module.lang.export,name:0 msgid "Filename" msgstr "" #. module: base #: field:ir.model,access_ids:0 -#: field:ir.model.grid,access_ids:0 +#: view:ir.model.access:0 msgid "Access" msgstr "" @@ -7331,8 +8214,8 @@ msgid "Aruba" msgstr "" #. module: base -#: selection:ir.cron,interval_type:0 -msgid "Weeks" +#: model:res.country,name:base.ar +msgid "Argentina" msgstr "" #. module: base @@ -7355,6 +8238,16 @@ msgstr "" msgid "STOCK_FIND" msgstr "" +#. module: base +#: view:res.users:0 +msgid "Email & Signature" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_aftersale +msgid "After-Sale Services" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_maintenance_contract_add_wizard #: model:ir.ui.menu,name:base.menu_maintenance_contract_add @@ -7363,13 +8256,17 @@ msgid "Add Maintenance Contract" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: view:ir.actions.todo:0 +msgid "Launch" +msgstr "" + +#. module: base +#: selection:base.language.install,lang:0 msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" msgstr "" #. module: base #: field:ir.actions.act_window,limit:0 -#: field:ir.report.custom,limitt:0 msgid "Limit" msgstr "" @@ -7383,6 +8280,11 @@ msgstr "" msgid "Jamaica" msgstr "" +#. module: base +#: model:ir.ui.menu,name:base.menu_mrp_root +msgid "Manufacturing" +msgstr "" + #. module: base #: model:res.country,name:base.az msgid "Azerbaijan" @@ -7395,15 +8297,10 @@ msgid "Warning" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "Arabic / الْعَرَبيّة" msgstr "" -#. module: base -#: model:res.country,name:base.gi -msgid "Gibraltar" -msgstr "" - #. module: base #: model:res.country,name:base.vg msgid "Virgin Islands (British)" @@ -7415,7 +8312,13 @@ msgid "STOCK_MEDIA_PREVIOUS" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: view:ir.property:0 +#: model:ir.ui.menu,name:base.next_id_15 +msgid "Parameters" +msgstr "" + +#. module: base +#: selection:base.language.install,lang:0 msgid "Czech / Čeština" msgstr "" @@ -7424,21 +8327,16 @@ msgstr "" msgid "Wallis and Futuna Islands" msgstr "" +#. module: base +#: model:ir.model,name:base.model_ir_wizard_screen +msgid "ir.wizard.screen" +msgstr "" + #. module: base #: model:res.country,name:base.rw msgid "Rwanda" msgstr "" -#. module: base -#: constraint:res.partner:0 -msgid "The VAT doesn't seem to be correct." -msgstr "" - -#. module: base -#: selection:ir.report.custom.fields,operation:0 -msgid "Calculate Sum" -msgstr "" - #. module: base #: view:ir.sequence:0 msgid "Day of the week (0:Monday): %(weekday)s" @@ -7449,18 +8347,13 @@ msgstr "" msgid "Cook Islands" msgstr "" -#. module: base -#: help:ir.actions.server,mobile:0 -msgid "Provides fields that be used to fetch the mobile number, e.g. you select the invoice, then `object.invoice_address_id.mobile` is the field which gives the correct mobile number" -msgstr "" - #. module: base #: field:ir.model.data,noupdate:0 msgid "Non Updatable" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "Klingon" msgstr "" @@ -7490,11 +8383,17 @@ msgstr "" #: view:res.country:0 #: field:res.country.state,country_id:0 #: field:res.partner,country:0 +#: view:res.partner.address:0 #: field:res.partner.address,country_id:0 #: field:res.partner.bank,country_id:0 msgid "Country" msgstr "" +#. module: base +#: selection:base.language.install,lang:0 +msgid "Telugu / India" +msgstr "" + #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 @@ -7502,13 +8401,13 @@ msgid "Complete Name" msgstr "" #. module: base -#: view:ir.report.custom:0 -msgid "Subscribe Report" +#: field:ir.values,object:0 +msgid "Is Object" msgstr "" #. module: base -#: field:ir.values,object:0 -msgid "Is Object" +#: view:ir.rule:0 +msgid "1. Global rules are combined together with a logical AND operator, and with the result of the following steps" msgstr "" #. module: base @@ -7516,19 +8415,24 @@ msgstr "" msgid "Category Name" msgstr "" +#. module: base +#: model:res.partner.category,name:base.res_partner_category_15 +msgid "IT sector" +msgstr "" + #. module: base #: view:ir.actions.act_window:0 msgid "Select Groups" msgstr "" #. module: base -#: field:ir.sequence,weight:0 -msgid "Weight" +#: view:res.lang:0 +msgid "%X - Appropriate time representation." msgstr "" #. module: base -#: view:res.lang:0 -msgid "%X - Appropriate time representation." +#: selection:ir.ui.menu,icon:0 +msgid "terp-mail_delete" msgstr "" #. module: base @@ -7542,12 +8446,12 @@ msgid "The Separator Format should be like [,n] where 0 < n :starting from Unit msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_customer_form_new -msgid "New Partner" +#: selection:ir.ui.menu,icon:0 +msgid "terp-go-month" msgstr "" #. module: base -#: selection:ir.report.custom,print_orientation:0 +#: view:res.company:0 msgid "Portrait" msgstr "" @@ -7556,38 +8460,34 @@ msgstr "" msgid "Wizard Button" msgstr "" +#. module: base +#: selection:ir.translation,type:0 +msgid "Report/Template" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DIRECTORY" msgstr "" -#. module: base -#: field:ir.module.module,installed_version:0 -msgid "Latest version" -msgstr "" - #. module: base #: model:ir.model,name:base.model_ir_actions_server +#: selection:ir.ui.menu,action:0 msgid "ir.actions.server" msgstr "" -#. module: base -#: model:ir.actions.act_window,name:base.action_rule -#: model:ir.ui.menu,name:base.menu_action_rule -msgid "Record Rules" -msgstr "" - -#. module: base -#: view:ir.actions.report.custom:0 -msgid "Report custom" -msgstr "" - #. module: base #: field:ir.actions.configuration.wizard,progress:0 +#: field:res.config,progress:0 +#: field:res.config.installer,progress:0 +#: field:res.config.users,progress:0 +#: field:res.config.view,progress:0 msgid "Configuration Progress" msgstr "" #. module: base +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form #: model:ir.ui.menu,name:base.next_id_11 msgid "Configuration Wizards" msgstr "" @@ -7603,13 +8503,13 @@ msgid "Split Mode" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_localisation -msgid "Localisation" +#: view:base.module.upgrade:0 +msgid "Note that this operation might take a few minutes." msgstr "" #. module: base -#: selection:res.config.view,view:0 -msgid "Simplified Interface" +#: model:ir.ui.menu,name:base.menu_localisation +msgid "Localisation" msgstr "" #. module: base @@ -7623,9 +8523,14 @@ msgid "STOCK_REVERT_TO_SAVED" msgstr "" #. module: base -#: model:ir.actions.wizard,name:base.wizard_lang_import -#: model:ir.ui.menu,name:base.menu_wizard_lang_import -msgid "Import a Translation File" +#: view:ir.cron:0 +msgid "Execution" +msgstr "" + +#. module: base +#: field:ir.actions.server,condition:0 +#: field:workflow.transition,condition:0 +msgid "Condition" msgstr "" #. module: base @@ -7639,7 +8544,7 @@ msgid "View Name" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "Italian / Italiano" msgstr "" @@ -7648,6 +8553,11 @@ msgstr "" msgid "Save As Attachment Prefix" msgstr "" +#. module: base +#: view:ir.actions.server:0 +msgid "Only one client action will be executed, last client action will be considered in case of multiple client actions." +msgstr "" + #. module: base #: model:res.country,name:base.hr msgid "Croatia" @@ -7668,14 +8578,13 @@ msgid "Partner Categories" msgstr "" #. module: base -#: field:ir.sequence,code:0 -#: field:ir.sequence.type,code:0 -msgid "Sequence Code" +#: view:base.module.upgrade:0 +msgid "System Update" msgstr "" #. module: base -#: selection:ir.report.custom,print_format:0 -msgid "a5" +#: help:ir.sequence,prefix:0 +msgid "Prefix value of the record for the sequence" msgstr "" #. module: base @@ -7684,9 +8593,9 @@ msgid "Seychelles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" +#: model:ir.model,name:base.model_res_partner_bank +#: view:res.partner.bank:0 +msgid "Bank Accounts" msgstr "" #. module: base @@ -7716,12 +8625,21 @@ msgid "Account Owner" msgstr "" #. module: base -#: field:ir.attachment,res_model:0 +#: selection:ir.ui.menu,icon:0 +msgid "terp-mail-message-new" +msgstr "" + +#. module: base #: field:workflow,osv:0 #: field:workflow.instance,res_type:0 msgid "Resource Object" msgstr "" +#. module: base +#: help:ir.sequence,number_increment:0 +msgid "The next number of the sequence will be incremented by this number" +msgstr "" + #. module: base #: field:ir.cron,function:0 #: field:res.partner.address,function:0 @@ -7729,24 +8647,30 @@ msgstr "" msgid "Function" msgstr "" +#. module: base +#: view:res.widget:0 +msgid "Search Widget" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,restart:0 +msgid "Never" +msgstr "" + #. module: base #: selection:res.partner.address,type:0 msgid "Delivery" msgstr "" -#. module: base -#: field:ir.attachment,preview:0 -msgid "Image Preview" -msgstr "" - #. module: base #: model:res.partner.title,name:base.res_partner_title_pvt_ltd +#: model:res.partner.title,shortcut:base.res_partner_title_pvt_ltd msgid "Corp." msgstr "" #. module: base -#: model:res.country,name:base.gw -msgid "Guinea Bissau" +#: selection:base.language.install,lang:0 +msgid "Korean / Korea, Republic of" msgstr "" #. module: base @@ -7766,13 +8690,14 @@ msgid "North Korea" msgstr "" #. module: base -#: view:ir.report.custom:0 -msgid "Unsubscribe Report" +#: selection:ir.actions.server,state:0 +msgid "Create Object" msgstr "" #. module: base -#: selection:ir.actions.server,state:0 -msgid "Create Object" +#: view:ir.filters:0 +#: field:res.log,context:0 +msgid "Context" msgstr "" #. module: base @@ -7786,7 +8711,7 @@ msgid "Prospect" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "Polish / Język polski" msgstr "" @@ -7800,18 +8725,13 @@ msgstr "" msgid "Used to select automatically the right address according to the context in sales and purchases documents." msgstr "" -#. module: base -#: wizard_view:module.lang.install,init:0 -msgid "Choose a language to install:" -msgstr "" - #. module: base #: model:res.country,name:base.lk msgid "Sri Lanka" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 +#: selection:base.language.install,lang:0 msgid "Russian / русский язык" msgstr "" diff --git a/bin/addons/base/i18n/bg.po b/bin/addons/base/i18n/bg.po index 54f38a8d16e..779d1d960bc 100644 --- a/bin/addons/base/i18n/bg.po +++ b/bin/addons/base/i18n/bg.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2010-03-26 05:19+0000\n" +"PO-Revision-Date: 2010-10-12 08:03+0000\n" "Last-Translator: Boris \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: 2010-03-27 04:58+0000\n" +"X-Launchpad-Export-Date: 2010-10-13 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -58,7 +58,7 @@ msgstr "Код" #: field:workflow.activity,wkf_id:0 #: field:workflow.instance,wkf_id:0 msgid "Workflow" -msgstr "Последователност от действия" +msgstr "Работен поток" #. module: base #: view:wizard.module.lang.export:0 @@ -83,7 +83,7 @@ msgstr "Създадени изгледи" #. module: base #: view:workflow.activity:0 msgid "Outgoing transitions" -msgstr "Изходящи промени" +msgstr "Изходящи преходи" #. module: base #: selection:ir.report.custom,frequency:0 @@ -256,11 +256,6 @@ msgstr "%y - Година без век, като десетично число msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Това правило е удовлетворено ако поне един тест е истина" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -814,11 +809,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "Уеб-страница" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Тестове" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1114,6 +1104,9 @@ msgid "" "consider the present one as void. Do not hesitate to contact our accounting " "department at (+32).81.81.37.00." msgstr "" +"Ако вашето плащане е извършено вече, моля не обръщайте внимание на това " +"писмо. При възникване на въпроси не се колебайте да се свържете с нашия " +"счетоводен отдел на телефон _____________." #. module: base #: selection:ir.ui.menu,icon:0 @@ -1254,6 +1247,9 @@ msgid "" "If set, sequence will only be used in case this python expression matches, " "and will precede other sequences." msgstr "" +"Ако е зададено, последователноста ще бъде използвана само в случай, че " +"изразът отговаря на условията и ще има приоритет пред други " +"последователности." #. module: base #: selection:ir.actions.act_window,view_type:0 @@ -1359,7 +1355,6 @@ msgstr "Брой обновени модули" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1405,7 +1400,7 @@ msgid "" "This wizard will detect new terms in the application so that you can update " "them manually." msgstr "" -"Помощника установи нови условия в приложението които можете да обновите " +"Помощника установи нови преводи в приложението които можете да обновите " "ръчно." #. module: base @@ -1415,6 +1410,9 @@ msgid "" "order in Object, and you can have loop on the sales order line. Expression = " "`object.order_line`." msgstr "" +"Въведете поле/израз, който връща списък. Например, изберете поръчка за " +"продажба в обект и ще може да имате цикъл върху редовете от поръчка за " +"продажба. Израз = `object.order_line`." #. module: base #: selection:ir.translation,type:0 @@ -1464,11 +1462,6 @@ msgstr "" "Името на обекта трябва да започва с \"x_\" и да не съдържа никакви специални " "символи!" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -1538,6 +1531,9 @@ msgid "" "Provide the field name that the record id refers to for the write operation. " "If it is empty it will refer to the active id of the object." msgstr "" +"Задайте името на полето към което се отнася идентификатора на записа при " +"операцията на запис. Ако оставите празно, ще сочи към активния запис от " +"обекта." #. module: base #: model:res.country,name:base.zw @@ -1657,7 +1653,7 @@ msgstr "%p - Еквивалент на \"AM\" или \"PM\"." #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" -msgstr "" +msgstr "Повтарящи се действия" #. module: base #: field:maintenance.contract,date_stop:0 @@ -1723,7 +1719,7 @@ msgstr "Грешка! НЕ може да създавате рекурсивни #. module: base #: selection:maintenance.contract,state:0 msgid "Valid" -msgstr "" +msgstr "Валиден" #. module: base #: code:addons/base/ir/ir_model.py:0 @@ -1740,7 +1736,7 @@ msgstr "XSL" #: code:addons/base/module/module.py:0 #, python-format msgid "Can not upgrade module '%s'. It is not installed." -msgstr "Не може да бъде обновен модул '%s'. Той не е инсталиран." +msgstr "Модул '%s' не може да бъде обновен. Той не е инсталиран." #. module: base #: model:res.country,name:base.cu @@ -1777,7 +1773,7 @@ msgstr "Швеция" #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Gantt" -msgstr "" +msgstr "Диаграма Гант" #. module: base #: view:ir.property:0 @@ -1968,7 +1964,7 @@ msgstr "Малта" #. module: base #: field:ir.actions.server,fields_lines:0 msgid "Field Mappings." -msgstr "" +msgstr "Свързвания на полето" #. module: base #: model:ir.model,name:base.model_ir_module_module @@ -2025,7 +2021,7 @@ msgstr "Извличане на език" #. module: base #: selection:maintenance.contract.wizard,state:0 msgid "Unvalidated" -msgstr "Непроверен" +msgstr "Невалидирано" #. module: base #: model:ir.ui.menu,name:base.next_id_9 @@ -2052,7 +2048,7 @@ msgstr "Също така може да вмъкнете \".po\" файлове. #: code:addons/base/maintenance/maintenance.py:0 #, python-format msgid "Unable to find a valid contract" -msgstr "Не може да се намери валиден договор" +msgstr "Не е намерeн валиден договор" #. module: base #: code:addons/base/ir/ir_actions.py:0 @@ -2181,11 +2177,6 @@ msgstr "Роли" msgid "Countries" msgstr "Държави" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Правила на записа" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2436,7 +2427,7 @@ msgstr "SXW съдържание" #. module: base #: view:ir.cron:0 msgid "Action to Trigger" -msgstr "" +msgstr "Действие за извършване" #. module: base #: field:ir.report.custom.fields,fc0_operande:0 @@ -2538,7 +2529,7 @@ msgstr "Обновяване на системата" #. module: base #: field:workflow.activity,in_transitions:0 msgid "Incoming Transitions" -msgstr "" +msgstr "Входящи преходи" #. module: base #: model:res.country,name:base.sr @@ -2648,7 +2639,7 @@ msgstr "Автор" #. module: base #: model:res.country,name:base.mk msgid "FYROM" -msgstr "" +msgstr "Република Македония" #. module: base #: selection:ir.ui.menu,icon:0 @@ -2818,11 +2809,6 @@ msgstr "Удовлетвореност" msgid "Benin" msgstr "Бенин" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "Правилото е удовлетворено ако всички тестове за истина (AND)" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -2851,7 +2837,7 @@ msgstr "RML горен колонтитул" #. module: base #: wizard_field:res.partner.sms_send,init,app_id:0 msgid "API ID" -msgstr "" +msgstr "API ID" #. module: base #: model:res.country,name:base.mu @@ -3148,7 +3134,6 @@ msgstr "Казахстан" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3171,7 +3156,7 @@ msgstr "Монсерат" #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" -msgstr "Условия за използване на програмата" +msgstr "Изрази в програмата" #. module: base #: selection:ir.report.custom.fields,operation:0 @@ -3266,9 +3251,12 @@ msgstr "Групиране по" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "" -"\"%s\" contains too many dots. XML ids should not contain dots ! These are " +"'%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 #: selection:ir.ui.menu,icon:0 @@ -3324,7 +3312,7 @@ msgstr "Списък за контрол на достъпа" #. module: base #: model:res.country,name:base.um msgid "USA Minor Outlying Islands" -msgstr "" +msgstr "САЩ Малки далечни острови" #. module: base #: field:res.partner.bank,state:0 @@ -3505,7 +3493,7 @@ msgstr "STOCK_DND_MULTIPLE" #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 msgid "Partner Contacts" -msgstr "" +msgstr "Партньорски контакти" #. module: base #: wizard_field:module.module.update,update,add:0 @@ -3694,7 +3682,7 @@ msgstr "terp-sale" #. module: base #: view:res.lang:0 msgid "%d - Day of the month as a decimal number [01,31]." -msgstr "" +msgstr "%d - пореден номер на деня от месеца като десетично число [01,31]." #. module: base #: view:res.lang:0 @@ -3763,12 +3751,12 @@ msgstr "Ботсвана" #: model:ir.ui.menu,name:base.menu_partner_title_partner #: view:res.partner.title:0 msgid "Partner Titles" -msgstr "" +msgstr "Обръщения към партньори" #. module: base #: selection:ir.actions.todo,type:0 msgid "Service" -msgstr "" +msgstr "Услуга" #. module: base #: help:ir.actions.act_window,auto_refresh:0 @@ -3817,11 +3805,6 @@ msgstr "Наследен изглед" msgid "ir.translation" msgstr "ir.translation" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4149,14 +4132,7 @@ msgstr "А4" #. module: base #: field:ir.actions.act_window,search_view_id:0 msgid "Search View Ref." -msgstr "" - -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" -"Няколко правила към един и същ обект са обединени с помощта на оператор OR " -"(или)" +msgstr "\"Изглед\" търсене в справки" #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field @@ -4786,11 +4762,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "Реюнион (Франция)" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Общи" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4985,12 +4956,12 @@ msgstr "Python код" #: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format msgid "Can not create the module file: %s !" -msgstr "Модулния файл: %s, не можеда да бъде създаден !" +msgstr "Модулния файл: %s, не можеда да бъде създаден !" #. module: base #: model:ir.module.module,description:base.module_meta_information msgid "The kernel of OpenERP, needed for all installation." -msgstr "" +msgstr "Ядрото на OpenERP, необходимо при всяка инсталация" #. module: base #: wizard_button:base.module.import,init,end:0 @@ -5011,7 +4982,7 @@ msgstr "Откажи" #: code:addons/base/ir/ir_actions.py:0 #, python-format msgid "Please specify server option --smtp-from !" -msgstr "Моля укажете опцията на сървъра --smtp-from !" +msgstr "Моля укажете опция на сървъра --smtp-from !" #. module: base #: selection:wizard.module.lang.export,format:0 @@ -5039,7 +5010,6 @@ msgstr "Доставчик на компоненти" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -5190,7 +5160,7 @@ msgstr "Ще бъдат инсталирани" #: model:ir.module.module,shortdesc:base.module_meta_information #: field:res.currency,base:0 msgid "Base" -msgstr "" +msgstr "База" #. module: base #: model:res.country,name:base.lr @@ -5261,7 +5231,7 @@ msgstr "Създай" #. module: base #: field:ir.exports,export_fields:0 msgid "Export ID" -msgstr "" +msgstr "Идентификатор на извличането" #. module: base #: model:res.country,name:base.fr @@ -5292,7 +5262,7 @@ msgstr "Грешка!" #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field_contry msgid "country_id" -msgstr "" +msgstr "Идентификатор на държава" #. module: base #: field:ir.cron,interval_type:0 @@ -5308,7 +5278,7 @@ msgstr "Вид" #. module: base #: selection:ir.actions.todo,start_on:0 msgid "Manual" -msgstr "" +msgstr "Ръчно" #. module: base #: field:res.bank,fax:0 @@ -5416,12 +5386,12 @@ msgstr "Функции на контакта" #. module: base #: view:multi_company.default:0 msgid "Multi Company" -msgstr "" +msgstr "Холдинг" #. module: base #: view:ir.sequence:0 msgid "Day of the year: %(doy)s" -msgstr "" +msgstr "Ден от годината: %(ден)а" #. module: base #: model:res.country,name:base.nt @@ -5688,7 +5658,7 @@ msgstr "Не е инсталиран" #. module: base #: field:workflow.activity,out_transitions:0 msgid "Outgoing Transitions" -msgstr "" +msgstr "Изходящи преходи" #. module: base #: field:ir.ui.menu,icon:0 @@ -5781,7 +5751,7 @@ msgstr "Ел. поща" #: 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 "Повторно синхронизиране на условията" +msgstr "Ресинхронизиране на изразите" #. module: base #: model:res.country,name:base.tg @@ -5813,7 +5783,7 @@ msgstr "Поле %d трябва да бъде изображение" #: model:ir.actions.act_window,name:base.action_inventory_form #: model:ir.ui.menu,name:base.menu_action_inventory_form msgid "Default Company per Object" -msgstr "" +msgstr "Компания по подразбиране за обекта" #. module: base #: view:ir.actions.configuration.wizard:0 @@ -5869,6 +5839,9 @@ msgid "" "translations for your own module, you can also publish all your translation " "at once." msgstr "" +"За да се подобрите превода на изрази от официалния превод на OpenERP, Вие " +"трябва да промените изразите в \"launchpad\". Ако сте превели голяма част от " +"ваш модул, може да публикувате вашите преводи наведнъж." #. module: base #: wizard_button:module.lang.install,init,start:0 @@ -5878,7 +5851,7 @@ msgstr "Започни инсталацията" #. module: base #: help:res.lang,code:0 msgid "This field is used to set/get locales for user" -msgstr "" +msgstr "Това поле служи за задаване/доставяне на локали за потребителя" #. module: base #: model:res.partner.category,name:base.res_partner_category_2 @@ -5932,6 +5905,9 @@ msgid "" "' \\n 'for the currency: %s \n" "' \\n 'at the date: %s" msgstr "" +"Не е намерен курс \n" +"' \\n 'за валута: %s \n" +"' \\n 'към дата: %s" #. module: base #: view:ir.actions.act_window:0 @@ -6127,7 +6103,7 @@ msgstr "Удовлетвореност" #: model:ir.actions.act_window,name:base.action_country_state #: model:ir.ui.menu,name:base.menu_country_state_partner msgid "Fed. States" -msgstr "" +msgstr "Област/Щат" #. module: base #: view:ir.model:0 @@ -6164,7 +6140,6 @@ msgstr "Възвращаемо" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -6202,7 +6177,7 @@ msgstr "Извличане на файл с превод" #. module: base #: field:ir.ui.view_sc,user_id:0 msgid "User Ref." -msgstr "" +msgstr "Потребителска справка" #. module: base #: model:ir.ui.menu,name:base.menu_base_config @@ -6298,7 +6273,7 @@ msgstr "terp-administration" #: model:ir.actions.act_window,name:base.action_translation #: model:ir.ui.menu,name:base.menu_action_translation msgid "All terms" -msgstr "Всички условия" +msgstr "Всички изрази" #. module: base #: model:res.country,name:base.no @@ -6319,7 +6294,7 @@ msgstr "Зареждане на официален превод" #. module: base #: model:res.partner.category,name:base.res_partner_category_10 msgid "Open Source Service Company" -msgstr "" +msgstr "Фирма за услуги с отворен код" #. module: base #: selection:res.request,state:0 @@ -6352,6 +6327,8 @@ msgid "" "If set to true, the wizard will not be displayed on the right toolbar of a " "form view." msgstr "" +"Ако е зададено \"истина\", помощникът няма да бъде показан в дясната страна " +"на лентата с инструменти във \"изглед–бланка\"." #. module: base #: selection:ir.ui.menu,icon:0 @@ -6427,6 +6404,7 @@ msgstr "Коста Рика" #, python-format msgid "Your can't submit bug reports due to uncovered modules: %s" msgstr "" +"Не можете да изпратите доклад за \"бъг\" заради неподдържани модули: %s" #. module: base #: model:ir.actions.act_window,name:base.action_partner_other_form @@ -6625,6 +6603,8 @@ msgid "" "Access all the fields related to the current object using expression in " "double brackets, i.e. [[ object.partner_id.name ]]" msgstr "" +"Достъп до всички полета свързани с текущия обект чрез израз в двойни скоби " +"напр. [[ object.partner_id.name ]]" #. module: base #: field:res.request.history,body:0 @@ -6662,7 +6642,7 @@ msgstr "Графика" #: field:res.partner,child_ids:0 #: field:res.request,ref_partner_id:0 msgid "Partner Ref." -msgstr "" +msgstr "Справка за партньор" #. module: base #: field:ir.report.custom,print_format:0 @@ -6719,7 +6699,7 @@ msgstr "Номер на сметка" #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" -msgstr "" +msgstr "1. %c ==> Пет. Дек. 5 18:25:20 2008" #. module: base #: help:ir.ui.menu,groups_id:0 @@ -6728,6 +6708,9 @@ msgid "" "groups. If this field is empty, Open ERP will compute visibility based on " "the related object's read access." msgstr "" +"Ако използвате групи, видимоста на това меню ще се определя според групите. " +"Ако полето е празно, Open ERP ще определи видимоста на менюто според правата " +"за четене на свързаните обекти." #. module: base #: model:res.country,name:base.nc @@ -6781,7 +6764,7 @@ msgstr "RML съдържание" #. module: base #: view:workflow.activity:0 msgid "Incoming transitions" -msgstr "Входящи промени" +msgstr "Входящи преходи" #. module: base #: model:res.country,name:base.cn @@ -6792,7 +6775,7 @@ msgstr "Китай" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "Password empty !" -msgstr "" +msgstr "Не е въведена парола !" #. module: base #: model:res.country,name:base.eh @@ -6840,6 +6823,8 @@ msgid "" "Only one client action will be execute, last " "clinent action will be consider in case of multiples clients actions" msgstr "" +"Ще бъде изпълнено само едно клиентско действие. В случай, че са въведени " +"множество действия, ще бъде изпълнено само последното." #. module: base #: selection:ir.ui.menu,icon:0 @@ -6903,7 +6888,7 @@ msgstr "child_of" #: view:res.users:0 #: field:res.users,company_ids:0 msgid "Accepted Companies" -msgstr "" +msgstr "Одобрени компании" #. module: base #: field:ir.report.custom.fields,operation:0 @@ -6930,7 +6915,7 @@ msgstr "Ирак" #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" -msgstr "" +msgstr "Действие за стартиране" #. module: base #: wizard_view:base.module.import,import:0 @@ -6995,7 +6980,7 @@ msgstr "Джибути" #. module: base #: field:ir.translation,value:0 msgid "Translation Value" -msgstr "Преведено значение" +msgstr "Превод" #. module: base #: model:res.country,name:base.ag @@ -7040,6 +7025,9 @@ msgid "" "through launchpad. We use their online interface to synchronize all " "translations efforts." msgstr "" +"Официалният превод на всички OpenERP/OpenObjects модули се управляват чрез " +"launchpad. Ние използваме техния онлайн интерфейс за синхронизиране на " +"всички действия по преводите." #. module: base #: field:ir.actions.report.xml,report_rml:0 @@ -7071,7 +7059,7 @@ msgstr "турски / Türkçe" #: model:ir.actions.act_window,name:base.action_translation_untrans #: model:ir.ui.menu,name:base.menu_action_translation_untrans msgid "Untranslated terms" -msgstr "Непреведен термин" +msgstr "Непреведени изрази" #. module: base #: wizard_view:module.lang.import,init:0 @@ -7104,7 +7092,7 @@ msgstr "=" #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Second field should be figures" -msgstr "" +msgstr "Второто поле трябва да съдържа числа" #. module: base #: model:ir.actions.act_window,name:base.action_model_grid_security @@ -7143,7 +7131,7 @@ msgstr "Туркменистан" #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" -msgstr "" +msgstr "Сен Пиер и Микелон" #. module: base #: help:ir.actions.report.xml,header:0 @@ -7193,7 +7181,7 @@ msgstr "датски / Dansk" #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" -msgstr "" +msgstr "о. Рождество" #. module: base #: view:ir.actions.server:0 @@ -7215,7 +7203,7 @@ msgstr "Канали" #. module: base #: view:ir.module.module:0 msgid "Schedule for Installation" -msgstr "График на инсталация" +msgstr "Инсталирай" #. module: base #: selection:ir.model.fields,select_level:0 @@ -7236,17 +7224,17 @@ msgstr "Изпрати" #. module: base #: field:ir.translation,src:0 msgid "Source" -msgstr "Източник" +msgstr "Оригинал" #. module: base #: help:res.partner.address,partner_id:0 msgid "Keep empty for a private address, not related to partner." -msgstr "Оставете празно за личен адрес несвързан с партньора" +msgstr "Оставете празно за личен адрес нямащ отношение към партньора." #. module: base #: model:res.country,name:base.vu msgid "Vanuatu" -msgstr "" +msgstr "Вануату" #. module: base #: view:res.company:0 @@ -7260,6 +7248,8 @@ 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 #: wizard_button:module.upgrade,end,config:0 @@ -7291,7 +7281,7 @@ msgstr "Саудитска Арабия" #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Bar charts need at least two fields" -msgstr "" +msgstr "Графиката с правоъгълници има нужда от минимум две полета" #. module: base #: help:res.partner,supplier:0 @@ -7299,16 +7289,18 @@ msgid "" "Check this box if the partner is a supplier. If it's not checked, purchase " "people will not see it when encoding a purchase order." msgstr "" +"Отметнете ако партньора е доставчик. Ако не е отметнато, хората за поръчки " +"няма да го виждат когато изготвят поръчка за доставка." #. module: base #: field:ir.model.fields,relation_field:0 msgid "Relation Field" -msgstr "" +msgstr "Зависимо поле" #. module: base #: field:workflow.triggers,instance_id:0 msgid "Destination Instance" -msgstr "" +msgstr "Дестинация" #. module: base #: field:ir.actions.wizard,multi:0 @@ -7348,6 +7340,10 @@ msgid "" "of each users on the different objects of the system.\n" " " msgstr "" +"Създайте вашите потребители.\n" +"Може да назначите групи към потребителите. Групите определят правата на " +"достъп на всеки потребител до различните обекти на системата.\n" +" " #. module: base #: selection:res.request,priority:0 @@ -7436,7 +7432,7 @@ msgstr "ir.actions.act_window" #. module: base #: model:res.country,name:base.vi msgid "Virgin Islands (USA)" -msgstr "" +msgstr "Вирджински острови (САЩ)" #. module: base #: model:res.country,name:base.tw @@ -7480,7 +7476,7 @@ msgstr "Неинсталируем" #. module: base #: rml:ir.module.reference:0 msgid "View :" -msgstr "" +msgstr "\"Изглед\":" #. module: base #: field:ir.model.fields,view_load:0 @@ -7528,7 +7524,7 @@ msgstr "Провинция" #. module: base #: view:multi_company.default:0 msgid "Matching" -msgstr "" +msgstr "Сравняване" #. module: base #: field:ir.actions.configuration.wizard,name:0 @@ -7575,7 +7571,7 @@ msgstr "Бахрейн" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 msgid "Segmentation" -msgstr "" +msgstr "Разделяне" #. module: base #: selection:ir.ui.menu,icon:0 @@ -7635,7 +7631,7 @@ msgstr "Гибралтар" #. module: base #: model:res.country,name:base.vg msgid "Virgin Islands (British)" -msgstr "" +msgstr "Вирджински острови (Великобритания)" #. module: base #: selection:ir.ui.menu,icon:0 @@ -7650,7 +7646,7 @@ msgstr "чешки / Čeština" #. module: base #: model:res.country,name:base.wf msgid "Wallis and Futuna Islands" -msgstr "" +msgstr "О-ви Уолис и Футуна" #. module: base #: model:res.country,name:base.rw @@ -7670,7 +7666,7 @@ msgstr "Изчисли сума" #. module: base #: view:ir.sequence:0 msgid "Day of the week (0:Monday): %(weekday)s" -msgstr "" +msgstr "Ден от седмицата (0:Понеделник): %(ден)а" #. module: base #: model:res.country,name:base.ck @@ -7684,6 +7680,9 @@ msgid "" "invoice, then `object.invoice_address_id.mobile` is the field which gives " "the correct mobile number" msgstr "" +"Указва полетата които ще се използват за доставяне на мобилен номер, напр., " +"когато изберете фактура, тогава 'object.invoice_address_id.mobile' е полето " +"което дава правилния мобилен номер" #. module: base #: field:ir.model.data,noupdate:0 @@ -7693,7 +7692,7 @@ msgstr "Не обновяем" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Klingon" -msgstr "" +msgstr "Клингон" #. module: base #: model:res.country,name:base.sg @@ -7760,7 +7759,7 @@ msgstr "Тегло" #. module: base #: view:res.lang:0 msgid "%X - Appropriate time representation." -msgstr "" +msgstr "%X - Правилно представяне на времето." #. module: base #: view:res.company:0 @@ -7775,6 +7774,11 @@ msgid "" "1,06,500;[1,2,-1] will represent it to be 106,50,0;[3] will represent it as " "106,500. Provided ',' as the thousand separator in each case." msgstr "" +"Формата на разделителя трябва дабъде [,n] , където 0 < n : като се започне " +"от цифрата за единици. \"-1\" спира разделянето. Например, [3,2,-1] ще " +"представи 106500 като 1,06,500; [1,2,-1] ще представи същото като 106,50,0; " +"[3] ще представи същото като 106,500. ',' е разделител за хиляди във всеки " +"случай." #. module: base #: model:ir.actions.act_window,name:base.action_partner_customer_form_new @@ -7830,7 +7834,7 @@ msgstr "Помощници на настройките" #. module: base #: field:res.lang,code:0 msgid "Locale Code" -msgstr "" +msgstr "Код на локала" #. module: base #: field:workflow.activity,split_mode:0 @@ -7866,7 +7870,7 @@ msgstr "Вмъкни файл с превод" #. module: base #: help:ir.values,model_id:0 msgid "This field is not used, it only helps you to select a good model." -msgstr "" +msgstr "Това поле не се използва, то само помага да се избере добър модел." #. module: base #: field:ir.ui.view,name:0 @@ -7881,7 +7885,7 @@ msgstr "италиански / Italiano" #. module: base #: field:ir.actions.report.xml,attachment:0 msgid "Save As Attachment Prefix" -msgstr "" +msgstr "Префикс на \"Запази като приложение\"" #. module: base #: model:res.country,name:base.hr @@ -7918,12 +7922,6 @@ msgstr "А5" msgid "Seychelles" msgstr "Сейшелски о-ви" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7943,7 +7941,7 @@ msgstr "terp-product" #. module: base #: model:res.country,name:base.tc msgid "Turks and Caicos Islands" -msgstr "" +msgstr "о-ви Търкс и Кайкос" #. module: base #: field:res.partner.bank,owner_name:0 @@ -8018,7 +8016,7 @@ msgstr "BIC/Swift код" #. module: base #: model:res.partner.category,name:base.res_partner_category_1 msgid "Prospect" -msgstr "" +msgstr "Перспектива" #. module: base #: selection:module.lang.install,init,lang:0 @@ -8028,7 +8026,7 @@ msgstr "полски / Język polski" #. module: base #: field:ir.exports,name:0 msgid "Export Name" -msgstr "" +msgstr "Име на изнасянето" #. module: base #: help:res.partner.address,type:0 @@ -8036,6 +8034,8 @@ msgid "" "Used to select automatically the right address according to the context in " "sales and purchases documents." msgstr "" +"Използва се за автоматично избаране на правилния адрес според контекста на " +"документите за продажби и поръчки." #. module: base #: wizard_view:module.lang.install,init:0 @@ -8052,6 +8052,135 @@ msgstr "Шри Ланка" msgid "Russian / русский язык" msgstr "руски / русский язык" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "Не може да има двама потребитела с един и същ \"логин\"!" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "" +"You cannot delete the language which is Active !\n" +"Please de-activate the language first." +msgstr "" + #~ msgid "Others Partners" #~ msgstr "Други партньори" diff --git a/bin/addons/base/i18n/bs.po b/bin/addons/base/i18n/bs.po index 7d1ea53fba1..72df0ea0c8d 100644 --- a/bin/addons/base/i18n/bs.po +++ b/bin/addons/base/i18n/bs.po @@ -7,19 +7,19 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2009-11-24 19:03+0000\n" -"Last-Translator: mra (Open ERP) \n" +"PO-Revision-Date: 2010-09-29 08:03+0000\n" +"Last-Translator: OpenERP Administrators \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: 2010-01-14 04:45+0000\n" +"X-Launchpad-Export-Date: 2010-09-30 04:36+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base #: model:res.country,name:base.sh msgid "Saint Helena" -msgstr "" +msgstr "Sveta Helena" #. module: base #: wizard_view:res.partner.sms_send,init:0 @@ -34,7 +34,7 @@ msgstr "%j - Dan u godini kao decimalni broj [001,366]." #. module: base #: field:ir.values,meta_unpickle:0 msgid "Metadata" -msgstr "" +msgstr "Metapodaci" #. module: base #: field:ir.ui.view,arch:0 @@ -46,12 +46,12 @@ msgstr "Prikaz arhikteture" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "You can not create this kind of document! (%s)" -msgstr "" +msgstr "Ne možete izraditi ovu vrstu dokumenta (%s)" #. module: base #: wizard_field:module.lang.import,init,code:0 msgid "Code (eg:en__US)" -msgstr "Kod (npr:en__US)" +msgstr "Šifra (npr: bs__BA)" #. module: base #: view:workflow:0 @@ -68,12 +68,12 @@ msgstr "Da pregledate zvanične prijevode možete posjetiti ovaj link: " #. module: base #: selection:module.lang.install,init,lang:0 msgid "Hungarian / Magyar" -msgstr "" +msgstr "Mađarski / Magyar" #. module: base #: field:ir.actions.server,wkf_model_id:0 msgid "Workflow On" -msgstr "" +msgstr "Radni tok uključen" #. module: base #: view:ir.module.module:0 @@ -83,7 +83,7 @@ msgstr "Kreirani prikazi" #. module: base #: view:workflow.activity:0 msgid "Outgoing transitions" -msgstr "" +msgstr "Odlazni prijelazi" #. module: base #: selection:ir.report.custom,frequency:0 @@ -106,16 +106,22 @@ msgid "" "understand. You will be able to switch to the extended view later.\n" " " msgstr "" +"Odaberite između \"Pojednostavljenog sučelja\" ili proširenog.\n" +"Ako testirate ili koristite OpenERP prvi put, preporučamo vam korištenje\n" +"pojednostavljenog sučelja, koje ima manje opcija i polja, ali je " +"jednostavnije za \n" +"razumijevanje. Bit ćete u mogućnosti prebaciti u prošireni prikaz kasnije.\n" +" " #. module: base #: field:ir.rule,operand:0 msgid "Operand" -msgstr "" +msgstr "Operator" #. module: base #: model:res.country,name:base.kr msgid "South Korea" -msgstr "" +msgstr "Južna Koreja" #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form @@ -127,12 +133,12 @@ msgstr "Prijelazi" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom msgid "ir.ui.view.custom" -msgstr "ir.ui.prikaz.prilagođen" +msgstr "ir.ui.view.custom" #. module: base #: model:res.country,name:base.sz msgid "Swaziland" -msgstr "" +msgstr "Swaziland" #. module: base #: model:ir.model,name:base.model_ir_actions_report_custom @@ -153,13 +159,13 @@ msgstr "Poredano po" #. module: base #: field:ir.sequence,number_increment:0 msgid "Increment Number" -msgstr "" +msgstr "Uvećaj broj" #. module: base #: model:ir.actions.act_window,name:base.action_res_company_tree #: model:ir.ui.menu,name:base.menu_action_res_company_tree msgid "Company's Structure" -msgstr "Struktura kompanije" +msgstr "Struktura podureća" #. module: base #: model:ir.model,name:base.model_ir_report_custom_fields @@ -169,34 +175,34 @@ msgstr "" #. module: base #: view:res.partner:0 msgid "Search Partner" -msgstr "" +msgstr "Pronađi partnera" #. module: base #: code:addons/base/module/wizard/wizard_export_lang.py:0 #, python-format msgid "new" -msgstr "" +msgstr "novo" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_TOP" -msgstr "SKLADIŠTE_IDINA_VRH" +msgstr "SKLADIŠTE_IDI_NA_VRH" #. module: base #: field:ir.actions.report.custom,multi:0 #: field:ir.actions.report.xml,multi:0 msgid "On multiple doc." -msgstr "Na višestruke dok." +msgstr "Na više dokum." #. module: base #: field:ir.module.category,module_nr:0 msgid "Number of Modules" -msgstr "" +msgstr "Ukupno modula" #. module: base #: field:res.partner.bank.type.field,size:0 msgid "Max. Size" -msgstr "Maksimalna veličina" +msgstr "Max. veličina" #. module: base #: field:res.partner.address,name:0 @@ -210,6 +216,8 @@ 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 "" +"Spremi ovaj dokument u datoteku %s i uredi ga sa odgovarajućim programom ili " +"uređivačem teksta. Enkodiranje datoteke je UTF-8" #. module: base #: selection:ir.ui.menu,icon:0 @@ -220,38 +228,34 @@ msgstr "" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "Password mismatch !" -msgstr "" +msgstr "Lozinke se ne podudaraju" #. module: base #: code:addons/base/module/module.py:0 #, python-format msgid "This url '%s' must provide an html file with links to zip modules" msgstr "" +"Ovaj url '%s' mora pokazivati na html datoteku sa vezama na zip module" #. module: base #: selection:res.request,state:0 msgid "active" -msgstr "" +msgstr "aktivno" #. module: base #: field:ir.actions.wizard,wiz_name:0 msgid "Wizard Name" -msgstr "" +msgstr "Naziv čarobnjaka" #. module: base #: view:res.lang:0 msgid "%y - Year without century as a decimal number [00,99]." -msgstr "" +msgstr "%y - Godina bez stoljeća kao decimalni broj [00,99]" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_FIRST" -msgstr "SKLADIŠTE_IDINA_PRVI" - -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Pravilo je zadovoljeno ako je makar jedan test tačan" +msgstr "SKLADIŠTE_IDI_NA_PRVI" #. module: base #: selection:ir.report.custom.fields,operation:0 @@ -266,7 +270,7 @@ msgstr "Podrazumjevana granica za prikaz liste" #. module: base #: field:ir.model.data,date_update:0 msgid "Update Date" -msgstr "" +msgstr "Datum ažuriranja" #. module: base #: field:ir.actions.act_window,src_model:0 @@ -278,7 +282,7 @@ msgstr "Izvorni objekt" #: view:ir.actions.todo:0 #: model:ir.ui.menu,name:base.menu_ir_actions_todo_form msgid "Config Wizard Steps" -msgstr "" +msgstr "Koraci konfiguracijskog čarobnjaka" #. module: base #: model:ir.model,name:base.model_ir_ui_view_sc @@ -289,7 +293,7 @@ msgstr "ir.ui.view_sc" #: field:ir.model.access,group_id:0 #: field:ir.rule,rule_group:0 msgid "Group" -msgstr "" +msgstr "Grupa" #. module: base #: field:ir.exports.line,name:0 @@ -318,12 +322,12 @@ msgstr "Odaberi tip akcije" #. module: base #: selection:ir.actions.todo,type:0 msgid "Configure" -msgstr "" +msgstr "Konfiguriraj" #. module: base #: model:res.country,name:base.tv msgid "Tuvalu" -msgstr "" +msgstr "Tuvalu" #. module: base #: selection:ir.model,state:0 @@ -340,12 +344,12 @@ msgstr "Format datuma" #: field:res.bank,email:0 #: field:res.partner.address,email:0 msgid "E-Mail" -msgstr "" +msgstr "E-Mail" #. module: base #: model:res.country,name:base.an msgid "Netherlands Antilles" -msgstr "" +msgstr "Nizozemski Antili" #. module: base #: code:addons/base/res/res_user.py:0 @@ -354,21 +358,23 @@ msgid "" "You can not remove the admin user as it is used internally for resources " "created by OpenERP (updates, module installation, ...)" msgstr "" +"Nije dozvoljeno brisanje admin korisnika jer se interno koristi za resurse " +"koje kreira OpenERP (nadogradnja, instalacija modula, ...)" #. module: base #: model:res.country,name:base.gf msgid "French Guyana" -msgstr "" +msgstr "Francuska Gvajana" #. module: base #: field:ir.ui.view.custom,ref_id:0 msgid "Original View" -msgstr "" +msgstr "Izvorni prikaz" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Bosnian / bosanski jezik" -msgstr "" +msgstr "Bosanski / bosanski jezik" #. module: base #: help:ir.actions.report.xml,attachment_use:0 @@ -376,11 +382,13 @@ msgid "" "If you check this, then the second time the user prints with same attachment " "name, it returns the previous report." msgstr "" +"Ukoliko je označeno, prilikom sljedećeg ispisa s jednakim nazivom datoteke, " +"biti će vraćen prethodni izvještaj." #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" -msgstr "" +msgstr "ISO oznaka je naziv PO datoteke za potrebe prijevoda" #. module: base #: selection:ir.ui.menu,icon:0 @@ -390,7 +398,7 @@ msgstr "SKLADIŠTE_MEDIJ_PREMOTAJ" #. module: base #: field:ir.actions.todo,note:0 msgid "Text" -msgstr "" +msgstr "Tekst" #. module: base #: field:res.country,name:0 @@ -400,17 +408,17 @@ msgstr "Naziv zemlje" #. module: base #: model:res.country,name:base.coreturn msgid "Colombia" -msgstr "" +msgstr "Kolumbija" #. module: base #: view:ir.module.module:0 msgid "Schedule Upgrade" -msgstr "Planirana nadogradnja" +msgstr "Planiraj nadogradnju" #. module: base #: field:ir.actions.report.custom,report_id:0 msgid "Report Ref." -msgstr "" +msgstr "Referenca izvještaja" #. module: base #: help:res.country,code:0 @@ -418,8 +426,8 @@ msgid "" "The ISO country code in two chars.\n" "You can use this field for quick search." msgstr "" -"ISO kod zemlje sa dva slova.\n" -"Možeš koristiti ovo polje za brzu pretragu." +"ISO oznaka države (dva slova).\n" +"Možete koristiti za brzo pretraživanje." #. module: base #: selection:workflow.activity,join_mode:0 @@ -453,23 +461,24 @@ msgstr "Čarobnjaci" #. module: base #: selection:res.config.view,view:0 msgid "Extended Interface" -msgstr "" +msgstr "Prošireno sučelje" #. module: base #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "" +msgstr "Prilagođena polja moraju imati ime koje počinje sa 'x_' !" #. module: base #: help:ir.actions.server,action_id:0 msgid "Select the Action Window, Report, Wizard to be executed." msgstr "" +"Odaberite akcijski prozor, izvještaj ili čarobnjaka koji će biti izvršen." #. module: base #: view:wizard.module.lang.export:0 msgid "Export done" -msgstr "" +msgstr "Izvoz završen" #. module: base #: view:ir.model:0 @@ -479,33 +488,33 @@ msgstr "Opis modela" #. module: base #: field:workflow.transition,trigger_expr_id:0 msgid "Trigger Expression" -msgstr "" +msgstr "Izraz koji koji pokreće radnju" #. module: base #: model:res.country,name:base.jo msgid "Jordan" -msgstr "" +msgstr "Jordan" #. module: base #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "You can not remove the model '%s' !" -msgstr "" +msgstr "Nije moguće obrisati model '%s' !" #. module: base #: model:res.country,name:base.er msgid "Eritrea" -msgstr "" +msgstr "Eritreja" #. module: base #: view:res.config.view:0 msgid "Configure simple view" -msgstr "" +msgstr "Podesi pojednostavljeni prikaz" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Bulgarian / български" -msgstr "" +msgstr "Bugarski / български" #. module: base #: model:ir.model,name:base.model_ir_actions_actions @@ -516,12 +525,12 @@ msgstr "ir.actions.actions" #: model:ir.actions.act_window,name:base.action_report_custom #: view:ir.report.custom:0 msgid "Custom Report" -msgstr "" +msgstr "Prilagođeni izvještaj" #. module: base #: selection:ir.report.custom,type:0 msgid "Bar Chart" -msgstr "" +msgstr "Stupčasti grafikon" #. module: base #: selection:ir.ui.menu,icon:0 @@ -536,17 +545,17 @@ msgstr "" #. module: base #: model:res.country,name:base.rs msgid "Serbia" -msgstr "" +msgstr "Srbija" #. module: base #: selection:ir.translation,type:0 msgid "Wizard View" -msgstr "" +msgstr "Ekran s čarobnjakom" #. module: base #: model:res.country,name:base.kh msgid "Cambodia, Kingdom of" -msgstr "" +msgstr "Kambodža, kraljevina" #. module: base #: model:ir.actions.act_window,name:base.ir_sequence_form @@ -554,7 +563,7 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_ir_sequence_form #: model:ir.ui.menu,name:base.next_id_5 msgid "Sequences" -msgstr "" +msgstr "Sekvence" #. module: base #: selection:ir.ui.menu,icon:0 @@ -564,7 +573,7 @@ msgstr "" #. module: base #: model:res.country,name:base.pg msgid "Papua New Guinea" -msgstr "" +msgstr "Papua Nova Gvineja" #. module: base #: model:res.partner.category,name:base.res_partner_category_4 @@ -579,65 +588,65 @@ msgstr "," #. module: base #: view:res.partner:0 msgid "My Partners" -msgstr "" +msgstr "Moji partneri" #. module: base #: model:res.country,name:base.es msgid "Spain" -msgstr "" +msgstr "Španjolska" #. module: base #: wizard_view:module.upgrade,end:0 #: wizard_view:module.upgrade,start:0 msgid "You may have to reinstall some language pack." -msgstr "" +msgstr "Možda ćete trebati poovno instalirati neke jezične pakete." #. module: base #: field:res.partner.address,mobile:0 msgid "Mobile" -msgstr "" +msgstr "Mobitel" #. module: base #: model:res.country,name:base.om msgid "Oman" -msgstr "" +msgstr "Oman" #. module: base #: model:ir.actions.act_window,name:base.action_payterm_form #: model:ir.model,name:base.model_res_payterm msgid "Payment term" -msgstr "" +msgstr "Uvjeti plaćanja" #. module: base #: model:res.country,name:base.nu msgid "Niue" -msgstr "" +msgstr "Niu" #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" -msgstr "" +msgstr "Radni dani" #. module: base #: help:ir.values,action_id:0 msgid "This field is not used, it only helps you to select the right action." -msgstr "" +msgstr "Polje se ne koristi, služi za pomoć pri odabiru ispravne radnje." #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 msgid "Create Menu" -msgstr "" +msgstr "Kreiraj izbornik" #. module: base #: model:res.country,name:base.in msgid "India" -msgstr "" +msgstr "Indija" #. module: base #: model:ir.model,name:base.model_maintenance_contract_module msgid "maintenance contract modules" -msgstr "" +msgstr "moduli s ugovorom o održavanju" #. module: base #: view:ir.values:0 @@ -647,28 +656,28 @@ msgstr "" #. module: base #: model:res.country,name:base.ad msgid "Andorra, Principality of" -msgstr "" +msgstr "Andora" #. module: base #: field:ir.module.category,child_ids:0 #: field:res.partner.category,child_ids:0 msgid "Child Categories" -msgstr "" +msgstr "Podkategorije" #. module: base #: selection:wizard.module.lang.export,format:0 msgid "TGZ Archive" -msgstr "" +msgstr "TGZ arhiva" #. module: base #: field:res.partner.som,factor:0 msgid "Factor" -msgstr "" +msgstr "Faktor" #. module: base #: view:res.lang:0 msgid "%B - Full month name." -msgstr "" +msgstr "%B - Puni naziv za mjesec." #. module: base #: field:ir.actions.report.xml,report_type:0 @@ -678,7 +687,7 @@ msgstr "" #: field:ir.values,key:0 #: view:res.partner:0 msgid "Type" -msgstr "" +msgstr "Vrsta" #. module: base #: selection:ir.ui.menu,icon:0 @@ -688,12 +697,12 @@ msgstr "" #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" -msgstr "" +msgstr "Guam (USA)" #. module: base #: model:ir.model,name:base.model_ir_model_grid msgid "Objects Security Grid" -msgstr "" +msgstr "Mreža sigurnosnih postavki objekata" #. module: base #: selection:ir.ui.menu,icon:0 @@ -709,7 +718,7 @@ msgstr "" #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 msgid "Dummy" -msgstr "" +msgstr "Prazno" #. module: base #: constraint:ir.ui.view:0 @@ -719,29 +728,29 @@ msgstr "Neodgovarajući XML za arhitekturu prikaza!" #. module: base #: model:res.country,name:base.ky msgid "Cayman Islands" -msgstr "" +msgstr "Kajmanska ostrva" #. module: base #: model:res.country,name:base.ir msgid "Iran" -msgstr "" +msgstr "Iran" #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act msgid "My Requests" -msgstr "" +msgstr "Moji zahtjevi" #. module: base #: field:ir.sequence,name:0 #: field:ir.sequence.type,name:0 msgid "Sequence Name" -msgstr "" +msgstr "Naziv sekvence" #. module: base #: model:res.country,name:base.td msgid "Chad" -msgstr "" +msgstr "Čad" #. module: base #: selection:module.lang.install,init,lang:0 @@ -797,11 +806,6 @@ msgstr "" msgid "Website" msgstr "" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1328,7 +1332,6 @@ msgstr "" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1379,10 +1382,7 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." msgstr "" #. module: base @@ -1431,11 +1431,6 @@ msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2145,11 +2140,6 @@ msgstr "Uloge" msgid "Countries" msgstr "Zemlje" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2760,11 +2750,6 @@ msgstr "" msgid "Benin" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3084,7 +3069,6 @@ msgstr "" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3199,9 +3183,7 @@ 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" +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 @@ -3744,11 +3726,6 @@ msgstr "" msgid "ir.translation" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4076,11 +4053,6 @@ msgstr "" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4701,11 +4673,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4952,7 +4919,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6066,7 +6032,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7815,12 +7780,6 @@ msgstr "" msgid "Seychelles" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7948,3 +7907,130 @@ msgstr "" #: selection:module.lang.install,init,lang:0 msgid "Russian / русский язык" msgstr "" + +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" diff --git a/bin/addons/base/i18n/ca.po b/bin/addons/base/i18n/ca.po index a3807a51026..33b033fe95f 100644 --- a/bin/addons/base/i18n/ca.po +++ b/bin/addons/base/i18n/ca.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2010-02-07 05:09+0000\n" -"Last-Translator: Jordi Esteve - http://www.zikzakmedia.com " +"PO-Revision-Date: 2010-10-12 07:54+0000\n" +"Last-Translator: Jordi Esteve (www.zikzakmedia.com) " "\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: 2010-02-08 04:44+0000\n" +"X-Launchpad-Export-Date: 2010-10-13 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -109,7 +109,7 @@ msgid "" msgstr "" "Escolliu entre la \"Interfície simplificada\" o \"Interfície estesa\".\n" "Si esteu examinant o utilitzant OpenERP per la primera vegada,\n" -"us suggerim per utilitzar la interfície simplificada, que té menys\n" +"us suggerim que utilitzeu la interfície simplificada, que té menys\n" "opcions i camps però és més fàcil d'entendre. Més tard podreu\n" "canviar a la vista estesa.\n" " " @@ -258,11 +258,6 @@ msgstr "%y - Any sense centúria com un número decimal [00,99]." msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "La regla és satisfeta si almenys un test és Cert" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -388,8 +383,8 @@ msgid "" "If you check this, then the second time the user prints with same attachment " "name, it returns the previous report." msgstr "" -"Si marca aquesta opció, quan l'usuari imprimeixi el mateix nom d'adjunt per " -"segona vegada, tornarà l'informe anterior." +"Si marqueu aquesta opció, quan l'usuari imprimeixi el mateix nom d'adjunt " +"per segona vegada, obtindrá l'informe anterior." #. module: base #: help:res.lang,iso_code:0 @@ -433,7 +428,7 @@ 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" +"EL codi ISO del país de dos caràcters.\n" "Podeu utilitzar aquest camp per la cerca ràpida." #. module: base @@ -474,7 +469,7 @@ msgstr "Interfície estesa" #: 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_'!" +msgstr "Els camps personalitzats han de tenir un nom que comenci amb 'x_'!" #. module: base #: help:ir.actions.server,action_id:0 @@ -816,11 +811,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "Lloc web" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Proves" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -913,7 +903,7 @@ msgstr "STOCK_MISSING_IMAGE" #. module: base #: view:res.users:0 msgid "Define New Users" -msgstr "Defineix nous usuaris" +msgstr "Definiu nous usuaris" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1365,7 +1355,6 @@ msgstr "Número de mòduls actualitzats" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1473,11 +1462,6 @@ msgstr "" "El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter " "especial!" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "Feu la regla global, sinó necessitarà ser inclosa en un grup" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -1489,7 +1473,7 @@ msgstr "Menú" #. module: base #: field:res.currency,rate:0 msgid "Current Rate" -msgstr "Tasa" +msgstr "Taxa" #. module: base #: selection:module.lang.install,init,lang:0 @@ -2193,11 +2177,6 @@ msgstr "Rols" msgid "Countries" msgstr "Països" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Regles de registre" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2830,11 +2809,6 @@ msgstr "Grau de satisfacció" msgid "Benin" msgstr "Benín" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "La regla es satisfà si tots els tests són Verdader (AND)" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3124,7 +3098,7 @@ msgid "" "any." msgstr "" "L'usuari intern que s'encarrega de comunicar-se amb aquesta empresa, si " -"n'hi ha." +"n'hi hagués." #. module: base #: field:res.partner,parent_id:0 @@ -3159,7 +3133,6 @@ msgstr "Kazakhstan" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3277,10 +3250,10 @@ msgstr "Agrupa per" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "" -"\"%s\" contains too many dots. XML ids should not contain dots ! These are " +"'%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 l'XML no haurien de contenir punts! Els " +"'%s' conté massa punts. ¡Els ids l'XML no haurien de contenir punts! Els " "punts es fan servir per referir-se a dades d'altres mòduls, per exemple " "mòdul.referència_id" @@ -3830,11 +3803,6 @@ msgstr "Vista heretada" msgid "ir.translation" msgstr "ir.traduccio" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.regla.grup" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4162,13 +4130,6 @@ msgstr "A4" msgid "Search View Ref." msgstr "Ref. vista cerca" -#. 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" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4796,11 +4757,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "Reunió (Francesa)" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Global" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -5049,7 +5005,6 @@ msgstr "Proveïdor de components" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -5073,8 +5028,8 @@ msgstr "Islàndia" #: view:res.users:0 msgid "Roles are used to defined available actions, provided by workflows." msgstr "" -"Els rols s'utilitzen per definir les accions disponibles, de les que " -"proveeixen els fluxos." +"Els rols s'utilitzen per definir les accions disponibles dins d'un flux de " +"treball." #. module: base #: model:res.country,name:base.de @@ -5437,7 +5392,7 @@ msgstr "Dia de l'any: %(doy)s" #. module: base #: model:res.country,name:base.nt msgid "Neutral Zone" -msgstr "Zona Neutral" +msgstr "Zona neutral" #. module: base #: view:ir.model:0 @@ -5828,7 +5783,7 @@ msgstr "Companyia per defecte per objecte" #. module: base #: view:ir.actions.configuration.wizard:0 msgid "Next Configuration Step" -msgstr "Següent pas configuració" +msgstr "Següent pas de la configuració" #. module: base #: field:res.groups,comment:0 @@ -6181,7 +6136,6 @@ msgstr "Devolució" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -6645,8 +6599,8 @@ msgid "" "Access all the fields related to the current object using expression in " "double brackets, i.e. [[ object.partner_id.name ]]" msgstr "" -"Accedeix a tots els camps relacionats amb l'objecte actual mitjançant una " -"expressió en claudàtors dobles, per exemple [[ object.partner_id.name ]]" +"Podeu accedir a tots els camps relacionats amb l'objecte actual mitjançant " +"una expressió en claudàtors dobles, per exemple [[ object.partner_id.name ]]" #. module: base #: field:res.request.history,body:0 @@ -7964,12 +7918,6 @@ msgstr "A5" msgid "Seychelles" msgstr "Seychelles" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "No podeu tenir dos usuaris amb el mateix identificador d'usuari!" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -8088,7 +8036,7 @@ msgstr "" #. module: base #: wizard_view:module.lang.install,init:0 msgid "Choose a language to install:" -msgstr "Selecciona un idioma per instal·lar:" +msgstr "Seleccioneu un idioma a instal·lar:" #. module: base #: model:res.country,name:base.lk @@ -8100,6 +8048,135 @@ msgstr "Sri Lanka" msgid "Russian / русский язык" msgstr "Rus / русский язык" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "No podeu tenir dos usuaris amb el mateix identificador d'usuari!" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "" +"You cannot delete the language which is Active !\n" +"Please de-activate the language first." +msgstr "" + #~ msgid "Attached ID" #~ msgstr "ID fitxer adjunt" diff --git a/bin/addons/base/i18n/cs.po b/bin/addons/base/i18n/cs.po index 66faac84e83..3b9e2719025 100644 --- a/bin/addons/base/i18n/cs.po +++ b/bin/addons/base/i18n/cs.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2010-01-04 06:02+0000\n" -"Last-Translator: Kuvaly [LCT] \n" +"PO-Revision-Date: 2010-06-06 04:19+0000\n" +"Last-Translator: Vladimír Burian \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: 2010-01-14 04:45+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -248,11 +248,6 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -795,11 +790,6 @@ msgstr "" msgid "Website" msgstr "Webová stránka" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Testy" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1326,7 +1316,6 @@ msgstr "Počet aktualizovaných modulů" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1375,10 +1364,7 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." msgstr "" #. module: base @@ -1428,11 +1414,6 @@ msgid "" msgstr "" "Jméno objektu musí začínat znakem x_ a nesmí obsahovat žádný speciální znak!" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2142,11 +2123,6 @@ msgstr "Funkce" msgid "Countries" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2759,11 +2735,6 @@ msgstr "Názor(State of mind)" msgid "Benin" msgstr "Benin" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3083,7 +3054,6 @@ msgstr "" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3198,9 +3168,7 @@ 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" +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 @@ -3743,11 +3711,6 @@ msgstr "Inherited View(Inherited View)" msgid "ir.translation" msgstr "ir.translation" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -3880,7 +3843,7 @@ msgstr "Kontakty" #. module: base #: model:res.country,name:base.fo msgid "Faroe Islands" -msgstr "Farské ostrovy" +msgstr "Faerské ostrovy" #. module: base #: model:ir.actions.wizard,name:base.wizard_upgrade @@ -4075,11 +4038,6 @@ msgstr "a4" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4696,11 +4654,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4947,7 +4900,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6060,7 +6012,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7809,12 +7760,6 @@ msgstr "a5" msgid "Seychelles" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7943,5 +7888,132 @@ msgstr "" msgid "Russian / русский язык" msgstr "Rusko / русский язык" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" + #~ msgid "Main Company" #~ msgstr "Hlavní společnost" diff --git a/bin/addons/base/i18n/da.po b/bin/addons/base/i18n/da.po index 512aa96e53f..590d4b7d804 100644 --- a/bin/addons/base/i18n/da.po +++ b/bin/addons/base/i18n/da.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-02-08 04:44+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -249,11 +249,6 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -796,11 +791,6 @@ msgstr "" msgid "Website" msgstr "Hjemmeside" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Test" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1327,7 +1317,6 @@ msgstr "" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1376,10 +1365,7 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." msgstr "" #. module: base @@ -1428,11 +1414,6 @@ msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2142,11 +2123,6 @@ msgstr "" msgid "Countries" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2757,11 +2733,6 @@ msgstr "" msgid "Benin" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3081,7 +3052,6 @@ msgstr "" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3196,9 +3166,7 @@ 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" +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 @@ -3741,11 +3709,6 @@ msgstr "" msgid "ir.translation" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4073,11 +4036,6 @@ msgstr "" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4694,11 +4652,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4945,7 +4898,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6058,7 +6010,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7807,12 +7758,6 @@ msgstr "" msgid "Seychelles" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7940,3 +7885,130 @@ msgstr "" #: selection:module.lang.install,init,lang:0 msgid "Russian / русский язык" msgstr "" + +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" diff --git a/bin/addons/base/i18n/de.po b/bin/addons/base/i18n/de.po index d9c01c352c7..497b88f9d30 100644 --- a/bin/addons/base/i18n/de.po +++ b/bin/addons/base/i18n/de.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2009-12-15 06:37+0000\n" +"PO-Revision-Date: 2010-10-12 08:02+0000\n" "Last-Translator: Ferdinand-chricar \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: 2010-01-14 04:46+0000\n" +"X-Launchpad-Export-Date: 2010-10-13 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -257,11 +257,6 @@ msgstr "%y - Jahr ohne Jahrtausend [00,99]." msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Die Regel ist erfüllt wenn mindestens ein Test korrekt ist." - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -744,7 +739,7 @@ msgstr "Iran" #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act msgid "My Requests" -msgstr "" +msgstr "Meine Anfragen" #. module: base #: field:ir.sequence,name:0 @@ -814,11 +809,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "Website" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Tests" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1007,7 +997,7 @@ msgstr "STOCK_COPY" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "Model %s Does not Exist !" -msgstr "" +msgstr "Modell %s existiert nicht!" #. module: base #: code:addons/base/module/module.py:0 @@ -1115,6 +1105,10 @@ msgid "" "consider the present one as void. Do not hesitate to contact our accounting " "department at (+32).81.81.37.00." msgstr "" +"Sollte sich Ihre Zahlung mit dem Versand dieser Nachricht überschnitten " +"haben betrachten Sie diese bitte als erledigt. Bitte scheuen Sie sich nicht, " +"Kontakt mit der Buchhaltung de Firma Tiny unter der Rufnummer " +"(+32).81.81.37.00 aufzunehmen." #. module: base #: selection:ir.ui.menu,icon:0 @@ -1153,7 +1147,7 @@ msgstr "7. %H:%M:%S ==> 18:25:20" #. module: base #: help:res.users,company_id:0 msgid "The company this user is currently working on." -msgstr "" +msgstr "Die Firma, für die dieser User aktuell tätig ist." #. module: base #: help:ir.actions.server,message:0 @@ -1363,7 +1357,6 @@ msgstr "Anzahl Module mit Updates" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1376,6 +1369,8 @@ msgstr "Gruppen" #: constraint:res.users:0 msgid "This user can not connect using this company !" msgstr "" +"Dieser Benutzer kann sich nicht in Verbindung mit der gewählten Firma " +"anmelden." #. module: base #: model:res.country,name:base.bz @@ -1419,10 +1414,9 @@ msgid "" "order in Object, and you can have loop on the sales order line. Expression = " "`object.order_line`." msgstr "" -"Eingabe des Feldes/Ausdruckes, das die Liste erzeugt. \r\n" -"zB Auswahl von \"sale order\" in Objekt und alle Averkaufsauftragszeilen " -"werden ausgewählt.\r\n" -"Ausdruck = `object.order_line`." +"Eingabe des Feldes/Ausdruckes, das die Liste erzeugt. zB Auswahl von sale " +"order in Objekt und alle Averkaufsauftragszeilen werden ausgewählt.Ausdruck " +"= `object.order_line`." #. module: base #: selection:ir.translation,type:0 @@ -1472,13 +1466,6 @@ msgstr "" "Der Objekt Name muss mit einem x_ starten und darf keine Sonderzeichen " "beinhalten" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" -"Mache die Regel global gültig, ansonsten muss diese auf Gruppeneben " -"definiert werden." - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -1613,7 +1600,7 @@ msgstr "Felder Zuordnungen" #: model:ir.actions.act_window,name:base.res_request-closed #: model:ir.ui.menu,name:base.next_id_12_close msgid "My Closed Requests" -msgstr "" +msgstr "Meine abgeschlossenen Anfragen" #. module: base #: model:ir.ui.menu,name:base.menu_custom @@ -1996,7 +1983,7 @@ msgstr "Module" #: model:ir.actions.act_window,name:base.action_res_bank_form #: model:ir.ui.menu,name:base.menu_action_res_bank_form msgid "Bank List" -msgstr "" +msgstr "Bankenliste" #. module: base #: field:ir.attachment,description:0 @@ -2194,11 +2181,6 @@ msgstr "Rollen" msgid "Countries" msgstr "Länder" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Aufzeichnung Regel" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2830,11 +2812,6 @@ msgstr "Kundenzufriedenheit" msgid "Benin" msgstr "Benin" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "Die Regel ist für mich o.K. falls alle Tests erfolgreich verlaufen." - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3156,7 +3133,6 @@ msgstr "Kasachstan" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3274,10 +3250,10 @@ msgstr "Gruppiere nach" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "" -"\"%s\" contains too many dots. XML ids should not contain dots ! These are " +"'%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\" beinhaltet zu viele Punkte. XML IDs sollen keine Punkte enthalten. " +"'%s' beinhaltet zu viele Punkte. XML IDs sollen keine Punkte enthalten. " "Punkte werdfen verwendet um andere Module zu ferferenzieren wie zB. " "module.reference_id" @@ -3828,11 +3804,6 @@ msgstr "Abgeleitete Ansicht" msgid "ir.translation" msgstr "ir.translation" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4160,12 +4131,6 @@ msgstr "a4" msgid "Search View Ref." msgstr "Suche Ansicht Referenz" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" -"Mehrere Regeln für dasselbe Objekt werden mit dem Operator OR verbunden" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4457,11 +4422,9 @@ msgid "" "Keep empty to not save the printed reports. You can use a python expression " "with the object and time variables." msgstr "" -"Das ist der Dateiname des Anhanges unter dem Ausdrucke gespeichert " -"werden.\r\n" -"Leer lassen, wenn Ausdrucke nicht gespeichert wreden sollen.\r\n" -"Die Verwendung von Python Ausdrücken sowie Objekt und Zeitvariablen ist " -"möglich." +"Das ist der Dateiname des Anhanges unter dem Ausdrucke gespeichert werden. " +"Leer lassen, wenn Ausdrucke nicht gespeichert wreden sollen. Die Verwendung " +"von Python Ausdrücken sowie Objekt und Zeitvariablen ist möglich." #. module: base #: model:res.country,name:base.ng @@ -4476,7 +4439,7 @@ msgstr "res.partner.event" #. module: base #: field:res.company,user_ids:0 msgid "Accepted Users" -msgstr "" +msgstr "Zugelassene Benutzer" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4796,11 +4759,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "Reunion (franz.)" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Global" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -5049,7 +5007,6 @@ msgstr "Komponenten Lieferant" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -5420,7 +5377,7 @@ msgstr "Partner Ereignisse" #: model:ir.ui.menu,name:base.menu_partner_function_form #: view:res.partner.function:0 msgid "Contact Functions" -msgstr "" +msgstr "Kontaktfunktionen" #. module: base #: view:multi_company.default:0 @@ -6073,7 +6030,7 @@ msgstr "Stunde 00->24: %(h24)s" #. module: base #: help:multi_company.default,field_id:0 msgid "Select field property" -msgstr "" +msgstr "Wähle Feldmerkmal" #. module: base #: field:res.request.history,date_sent:0 @@ -6164,7 +6121,7 @@ msgstr "(Ober-) Konto" #. module: base #: view:multi_company.default:0 msgid "Returning" -msgstr "" +msgstr "Rückgabe" #. module: base #: field:ir.actions.act_window,res_model:0 @@ -6180,7 +6137,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7435,7 +7391,7 @@ msgstr "Lösche Rechte" #. module: base #: model:ir.model,name:base.model_multi_company_default msgid "multi_company.default" -msgstr "" +msgstr "Standard (bei mehreren Mandanten)" #. module: base #: selection:workflow.activity,join_mode:0 @@ -7965,12 +7921,6 @@ msgstr "a5" msgid "Seychelles" msgstr "Seychellen" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "2 Benuzter können nicht den gleichen Login Code haben." - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -8101,6 +8051,149 @@ msgstr "Sri Lanka" msgid "Russian / русский язык" msgstr "Russian / русский язык" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "2 Benuzter können nicht den gleichen Login Code haben!" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "Die Feldlänge kann niemals kleiner als 1 sein!" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "Die Verknüpfung existiert bereits für dieses Menü!" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" +"Mehrere Datensätze dürfen nicht die selbe ID für dasselbe Modul besitzen!" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "Ihr Wartungsvertrag wurde bereits in Ihrem System registriert!" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "Der Name des Moduls muss eindeutig sein!" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "Die Zertifikats-ID muss eindeutig sein!" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "Der Code der Partnerfunktion muss eindeutig sein." + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "Der Name des Partners muss eindeutig sein!" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "Der Name des Landes muss eindeutig sein!" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "Der Code des Landes muss eindeutig sein!" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "Der Name der Sprache muss eindeutig sein!" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "Der Code der Sprache muss eindeutig sein!" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "Der Name der Gruppe muss eindeutig sein!" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "Abhängigkeitsfehler" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" +"Die Aktion kann nicht fertiggestellt werden, wahrscheinlich aufgrund einer " +"der folgenden Fehler:\n" +"- Löschen: Sie versuchen einen Datensatz zu löschen, auf den noch andere " +"Datensätze referenzieren\n" +"- Neu/Aktualisierung: Ein Pflicht-Feld wurde nicht oder nicht richtig " +"ausgefüllt" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" +"\n" +"\n" +"[Objekt mit Referenz: %s - %s]" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "Datenintegritäts Fehler" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "Benutzerfehler" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "Basis Sprache 'en_US' kann nicht gelöscht werden !" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" +"Eine Sprache, die in einer Benutzereinstellung definiert ist, kann nicht " +"gelöscht werden." + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "" +"You cannot delete the language which is Active !\n" +"Please de-activate the language first." +msgstr "" +"Eine aktive Sprache kann nicht gelöscht werden !\n" +"Bitte diese vorher deaktivieren." + #~ msgid "Attached ID" #~ msgstr "Sie können dieses Dokument nicht lesen ! (%s)" diff --git a/bin/addons/base/i18n/el.po b/bin/addons/base/i18n/el.po index 5c68f7a380f..e5a7c3b2bc6 100644 --- a/bin/addons/base/i18n/el.po +++ b/bin/addons/base/i18n/el.po @@ -6,13 +6,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2009-12-16 06:38+0000\n" +"PO-Revision-Date: 2010-10-12 07:49+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: nls@hellug.gr \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-01-14 04:46+0000\n" +"X-Launchpad-Export-Date: 2010-10-13 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" @@ -261,11 +261,6 @@ msgstr "%y - Χρονολογία χωρίς τον αιώνα, σε δεκαδ msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Ο κανόνας πληροίται αν τουλάχιστον ένα τεστ είναι Ορθό" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -819,11 +814,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "Ιστοσελίδα" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Tests" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1365,7 +1355,6 @@ msgstr "Αριθμός Αρθρωμάτων που ενημερώθηκαν" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1472,11 +1461,6 @@ msgid "" msgstr "" "Το όνομα πρέπει να ξεκινάει με x_ και να μην περιέχει ειδικούς χαρακτήρες!" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "Κάντε τον κανόνα γενικό, αλλιώς πρέπει να μπει σε ένα μια ομάδα" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2194,11 +2178,6 @@ msgstr "Ρόλοι" msgid "Countries" msgstr "Χώρες" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Καταχώρηση κανόνων" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2835,11 +2814,6 @@ msgstr "Προδιάθεση" msgid "Benin" msgstr "Benin" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "Ο κανόνας πληροίται αν τουλάχιστον ένα τεστ είναι Ορθό (AND)" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3164,7 +3138,6 @@ msgstr "Kazakhstan" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3282,10 +3255,10 @@ msgstr "Ομαδοποίηση Ανά" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "" -"\"%s\" contains too many dots. XML ids should not contain dots ! These are " +"'%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) δεν πρέπει να " +"'%s' περιέχει πολλές τελείες. Οι XML ταυτότητες (ids) δεν πρέπει να " "περιέχουν τελείες! Οι τελείες χρησιμοποιούνται σε αναφορές σε άλλες ενότητες " "όπως στο module.reference_id" @@ -3835,11 +3808,6 @@ msgstr "Παράγωγος Προβολή" msgid "ir.translation" msgstr "ir.translation" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4169,13 +4137,6 @@ msgstr "Α4" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" -"Πολλαπλοί κανόνες στα ίδια αντικείμενα συνδέονται μέσω της λογικής " -"συνάρτησης 'Ή'" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4802,11 +4763,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "Reunion (French)" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Παγκόσμια" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -5055,7 +5011,6 @@ msgstr "Προμηθευτής Μερών" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6188,7 +6143,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7972,12 +7926,6 @@ msgstr "Α5" msgid "Seychelles" msgstr "Seychelles" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "Δεν μπορεί να υπάρχουν δύο χρήστες με το ίδιο όνομα!" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -8108,6 +8056,135 @@ msgstr "Σρι Λάνκα / Κευλάνη" msgid "Russian / русский язык" msgstr "Ρώσσικα / русский язык" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "Δεν μπορεί να υπάρχουν δύο χρήστες με το ίδιο όνομα!" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "" +"You cannot delete the language which is Active !\n" +"Please de-activate the language first." +msgstr "" + #, python-format #~ msgid "The unlink method is not implemented on this object !" #~ msgstr "Η μέθοδος αποσύνδεσης δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" diff --git a/bin/addons/base/i18n/en_GB.po b/bin/addons/base/i18n/en_GB.po new file mode 100644 index 00000000000..3281e740ae9 --- /dev/null +++ b/bin/addons/base/i18n/en_GB.po @@ -0,0 +1,8162 @@ +# English (United Kingdom) translation for openobject-server +# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 +# This file is distributed under the same license as the openobject-server package. +# Robert Readman , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-server\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2009-12-18 08:39+0000\n" +"PO-Revision-Date: 2010-10-12 07:42+0000\n" +"Last-Translator: Anup (OpenERP) \n" +"Language-Team: English (United Kingdom) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2010-10-13 04:58+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. module: base +#: model:res.country,name:base.sh +msgid "Saint Helena" +msgstr "Saint Helena" + +#. module: base +#: wizard_view:res.partner.sms_send,init:0 +msgid "SMS - Gateway: clickatell" +msgstr "SMS - Gateway: clickatell" + +#. module: base +#: view:res.lang:0 +msgid "%j - Day of the year as a decimal number [001,366]." +msgstr "%j - Day of the year as a decimal number [001,366]." + +#. module: base +#: field:ir.values,meta_unpickle:0 +msgid "Metadata" +msgstr "Metadata" + +#. module: base +#: field:ir.ui.view,arch:0 +#: field:ir.ui.view.custom,arch:0 +msgid "View Architecture" +msgstr "View Architecture" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not create this kind of document! (%s)" +msgstr "You can not create this kind of document! (%s)" + +#. module: base +#: wizard_field:module.lang.import,init,code:0 +msgid "Code (eg:en__US)" +msgstr "Code (eg:en__US)" + +#. module: base +#: view:workflow:0 +#: field:workflow.activity,wkf_id:0 +#: field:workflow.instance,wkf_id:0 +msgid "Workflow" +msgstr "Workflow" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "To browse official translations, you can visit this link: " +msgstr "To browse official translations, you can visit this link: " + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Hungarian / Magyar" +msgstr "Hungarian / Magyar" + +#. module: base +#: field:ir.actions.server,wkf_model_id:0 +msgid "Workflow On" +msgstr "Workflow On" + +#. module: base +#: view:ir.module.module:0 +msgid "Created Views" +msgstr "Created Views" + +#. module: base +#: view:workflow.activity:0 +msgid "Outgoing transitions" +msgstr "Outgoing transitions" + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Yearly" +msgstr "Yearly" + +#. module: base +#: field:ir.actions.act_window,target:0 +msgid "Target Window" +msgstr "Target Window" + +#. module: base +#: model:ir.actions.todo,note:base.config_wizard_simple_view +msgid "" +"Choose between the \"Simplified Interface\" or the extended one.\n" +"If you are testing or using OpenERP for the first time, we suggest you to " +"use\n" +"the simplified interface, which has less options and fields but is easier " +"to\n" +"understand. You will be able to switch to the extended view later.\n" +" " +msgstr "" +"Choose between the \"Simplified Interface\" or the extended one.\n" +"If you are testing or using OpenERP for the first time, we suggest you to " +"use\n" +"the simplified interface, which has less options and fields but is easier " +"to\n" +"understand. You will be able to switch to the extended view later.\n" +" " + +#. module: base +#: field:ir.rule,operand:0 +msgid "Operand" +msgstr "Operand" + +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "South Korea" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "Transitions" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view_custom +msgid "ir.ui.view.custom" +msgstr "ir.ui.view.custom" + +#. module: base +#: model:res.country,name:base.sz +msgid "Swaziland" +msgstr "Swaziland" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_report_custom +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.report.custom" +msgstr "ir.actions.report.custom" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CANCEL" +msgstr "STOCK_CANCEL" + +#. module: base +#: field:ir.report.custom,sortby:0 +msgid "Sorted By" +msgstr "Sorted By" + +#. module: base +#: field:ir.sequence,number_increment:0 +msgid "Increment Number" +msgstr "Increment Number" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_company_tree +#: model:ir.ui.menu,name:base.menu_action_res_company_tree +msgid "Company's Structure" +msgstr "Company's Structure" + +#. module: base +#: model:ir.model,name:base.model_ir_report_custom_fields +msgid "ir.report.custom.fields" +msgstr "ir.report.custom.fields" + +#. module: base +#: view:res.partner:0 +msgid "Search Partner" +msgstr "Search Partner" + +#. module: base +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#, python-format +msgid "new" +msgstr "new" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_TOP" +msgstr "STOCK_GOTO_TOP" + +#. module: base +#: field:ir.actions.report.custom,multi:0 +#: field:ir.actions.report.xml,multi:0 +msgid "On multiple doc." +msgstr "On multiple doc." + +#. module: base +#: field:ir.module.category,module_nr:0 +msgid "Number of Modules" +msgstr "Number of Modules" + +#. module: base +#: field:res.partner.bank.type.field,size:0 +msgid "Max. Size" +msgstr "Max. Size" + +#. module: base +#: field:res.partner.address,name:0 +msgid "Contact Name" +msgstr "Contact Name" + +#. 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 "" +"Save this document to a %s file and edit it with a specific software or a " +"text editor. The file encoding is UTF-8." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "STOCK_DELETE" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "Password mismatch !" +msgstr "Passwords do not match !" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "This url '%s' must provide an html file with links to zip modules" +msgstr "" +"This url '%s' must provide an html file with the links to zip modules" + +#. module: base +#: selection:res.request,state:0 +msgid "active" +msgstr "active" + +#. module: base +#: field:ir.actions.wizard,wiz_name:0 +msgid "Wizard Name" +msgstr "Wizard Name" + +#. module: base +#: view:res.lang:0 +msgid "%y - Year without century as a decimal number [00,99]." +msgstr "%y - Year without century as a decimal number [00,99]." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_FIRST" +msgstr "STOCK_GOTO_FIRST" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Get Max" +msgstr "Get Max" + +#. module: base +#: help:ir.actions.act_window,limit:0 +msgid "Default limit for the list view" +msgstr "Default limit for the list view" + +#. module: base +#: field:ir.model.data,date_update:0 +msgid "Update Date" +msgstr "Update Date" + +#. module: base +#: field:ir.actions.act_window,src_model:0 +msgid "Source Object" +msgstr "Source Object" + +#. module: base +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: view:ir.actions.todo:0 +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +msgid "Config Wizard Steps" +msgstr "Configuration Wizard Steps" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view_sc +msgid "ir.ui.view_sc" +msgstr "ir.ui.view_sc" + +#. module: base +#: field:ir.model.access,group_id:0 +#: field:ir.rule,rule_group:0 +msgid "Group" +msgstr "Group" + +#. module: base +#: field:ir.exports.line,name:0 +#: field:ir.translation,name:0 +#: field:res.partner.bank.type.field,name:0 +msgid "Field Name" +msgstr "Field Name" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_uninstall +#: model:ir.ui.menu,name:base.menu_module_tree_uninstall +msgid "Uninstalled modules" +msgstr "Uninstalled modules" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "txt" +msgstr "txt" + +#. module: base +#: wizard_view:server.action.create,init:0 +#: wizard_field:server.action.create,init,type:0 +msgid "Select Action Type" +msgstr "Select Action Type" + +#. module: base +#: selection:ir.actions.todo,type:0 +msgid "Configure" +msgstr "Configure" + +#. module: base +#: model:res.country,name:base.tv +msgid "Tuvalu" +msgstr "Tuvalu" + +#. module: base +#: selection:ir.model,state:0 +#: selection:ir.model.grid,state:0 +msgid "Custom Object" +msgstr "Custom Object" + +#. module: base +#: field:res.lang,date_format:0 +msgid "Date Format" +msgstr "Date Format" + +#. module: base +#: field:res.bank,email:0 +#: field:res.partner.address,email:0 +msgid "E-Mail" +msgstr "e-Mail" + +#. module: base +#: model:res.country,name:base.an +msgid "Netherlands Antilles" +msgstr "Netherlands Antilles" + +#. module: base +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "" +"You can not remove the admin user as it is used internally for resources " +"created by OpenERP (updates, module installation, ...)" +msgstr "" +"You can not remove the user 'admin' as it is used internally for resources " +"created by OpenERP (updates, module installation etc)" + +#. module: base +#: model:res.country,name:base.gf +msgid "French Guyana" +msgstr "French Guyana" + +#. module: base +#: field:ir.ui.view.custom,ref_id:0 +msgid "Original View" +msgstr "Original View" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Bosnian / bosanski jezik" +msgstr "Bosnian / bosanski jezik" + +#. module: base +#: help:ir.actions.report.xml,attachment_use:0 +msgid "" +"If you check this, then the second time the user prints with same attachment " +"name, it returns the previous report." +msgstr "On checking this successive reports are generated from cache." + +#. module: base +#: help:res.lang,iso_code:0 +msgid "This ISO code is the name of po files to use for translations" +msgstr "PO files must use this ISO code for transalations" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_REWIND" +msgstr "STOCK_MEDIA_REWIND" + +#. module: base +#: field:ir.actions.todo,note:0 +msgid "Text" +msgstr "Text" + +#. module: base +#: field:res.country,name:0 +msgid "Country Name" +msgstr "Country Name" + +#. module: base +#: model:res.country,name:base.coreturn +msgid "Colombia" +msgstr "Colombia" + +#. module: base +#: view:ir.module.module:0 +msgid "Schedule Upgrade" +msgstr "Schedule Upgrade" + +#. module: base +#: field:ir.actions.report.custom,report_id:0 +msgid "Report Ref." +msgstr "Report Ref." + +#. module: base +#: help:res.country,code:0 +msgid "" +"The ISO country code in two chars.\n" +"You can use this field for quick search." +msgstr "" +"The ISO country code in two chars.\n" +"You can use this field for quick search." + +#. module: base +#: selection:workflow.activity,join_mode:0 +#: selection:workflow.activity,split_mode:0 +msgid "Xor" +msgstr "Xor" + +#. module: base +#: view:res.partner:0 +msgid "Sales & Purchases" +msgstr "Sales & Purchases" + +#. module: base +#: view:ir.actions.wizard:0 +#: field:wizard.ir.model.menu.create.line,wizard_id:0 +msgid "Wizard" +msgstr "Wizard" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CUT" +msgstr "STOCK_CUT" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_wizard +#: view:ir.actions.wizard:0 +#: model:ir.ui.menu,name:base.menu_ir_action_wizard +msgid "Wizards" +msgstr "Wizards" + +#. module: base +#: selection:res.config.view,view:0 +msgid "Extended Interface" +msgstr "Extended Interface" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "Custom fields must have a name that starts with 'x_' !" +msgstr "The name of custom fields must begin with 'x_' !" + +#. module: base +#: help:ir.actions.server,action_id:0 +msgid "Select the Action Window, Report, Wizard to be executed." +msgstr "Select the Action Window, Report, Wizard to be executed." + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export done" +msgstr "Export completed" + +#. module: base +#: view:ir.model:0 +msgid "Model Description" +msgstr "Model Description" + +#. module: base +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "Trigger Expression" + +#. module: base +#: model:res.country,name:base.jo +msgid "Jordan" +msgstr "Jordan" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not remove the model '%s' !" +msgstr "You cannot remove the model '%s' !" + +#. module: base +#: model:res.country,name:base.er +msgid "Eritrea" +msgstr "Eritrea" + +#. module: base +#: view:res.config.view:0 +msgid "Configure simple view" +msgstr "Configure simple view" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Bulgarian / български" +msgstr "Bulgarian / български" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_actions +msgid "ir.actions.actions" +msgstr "ir.actions.actions" + +#. module: base +#: model:ir.actions.act_window,name:base.action_report_custom +#: view:ir.report.custom:0 +msgid "Custom Report" +msgstr "Custom Report" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Bar Chart" +msgstr "Bar Chart" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_ERROR" +msgstr "STOCK_DIALOG_ERROR" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_INDEX" +msgstr "STOCK_INDEX" + +#. module: base +#: model:res.country,name:base.rs +msgid "Serbia" +msgstr "Serbia" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard View" +msgstr "Wizard View" + +#. module: base +#: model:res.country,name:base.kh +msgid "Cambodia, Kingdom of" +msgstr "Cambodia, Kingdom of" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_form +#: view:ir.sequence:0 +#: model:ir.ui.menu,name:base.menu_ir_sequence_form +#: model:ir.ui.menu,name:base.next_id_5 +msgid "Sequences" +msgstr "Sequences" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_QUESTION" +msgstr "STOCK_DIALOG_QUESTION" + +#. module: base +#: model:res.country,name:base.pg +msgid "Papua New Guinea" +msgstr "Papua New Guinea" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_4 +msgid "Basic Partner" +msgstr "Basic Partner" + +#. module: base +#: rml:ir.module.reference:0 +msgid "," +msgstr "," + +#. module: base +#: view:res.partner:0 +msgid "My Partners" +msgstr "My Partners" + +#. module: base +#: model:res.country,name:base.es +msgid "Spain" +msgstr "Spain" + +#. module: base +#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 +msgid "You may have to reinstall some language pack." +msgstr "You may have to re-install a language pack." + +#. module: base +#: field:res.partner.address,mobile:0 +msgid "Mobile" +msgstr "Mobile" + +#. module: base +#: model:res.country,name:base.om +msgid "Oman" +msgstr "Oman" + +#. module: base +#: model:ir.actions.act_window,name:base.action_payterm_form +#: model:ir.model,name:base.model_res_payterm +msgid "Payment term" +msgstr "Payment term" + +#. module: base +#: model:res.country,name:base.nu +msgid "Niue" +msgstr "Niue" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Work Days" +msgstr "Work Days" + +#. module: base +#: help:ir.values,action_id:0 +msgid "This field is not used, it only helps you to select the right action." +msgstr "" +"This field is not used, it only helps you to select the right action." + +#. module: base +#: model:ir.actions.act_window,name:base.act_menu_create +#: view:wizard.ir.model.menu.create:0 +msgid "Create Menu" +msgstr "Create Menu" + +#. module: base +#: model:res.country,name:base.in +msgid "India" +msgstr "India" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract_module +msgid "maintenance contract modules" +msgstr "maintenance contract modules" + +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "client_action_multi, client_action_relate" + +#. module: base +#: model:res.country,name:base.ad +msgid "Andorra, Principality of" +msgstr "Andorra, Principality of" + +#. module: base +#: field:ir.module.category,child_ids:0 +#: field:res.partner.category,child_ids:0 +msgid "Child Categories" +msgstr "Child Categories" + +#. module: base +#: selection:wizard.module.lang.export,format:0 +msgid "TGZ Archive" +msgstr "TGZ Archive" + +#. module: base +#: field:res.partner.som,factor:0 +msgid "Factor" +msgstr "Factor" + +#. module: base +#: view:res.lang:0 +msgid "%B - Full month name." +msgstr "%B - Full month name." + +#. module: base +#: field:ir.actions.report.xml,report_type:0 +#: field:ir.actions.todo,type:0 +#: field:ir.server.object.lines,type:0 +#: field:ir.translation,type:0 +#: field:ir.values,key:0 +#: view:res.partner:0 +msgid "Type" +msgstr "Type" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FILE" +msgstr "STOCK_FILE" + +#. module: base +#: model:res.country,name:base.gu +msgid "Guam (USA)" +msgstr "Guam (USA)" + +#. module: base +#: model:ir.model,name:base.model_ir_model_grid +msgid "Objects Security Grid" +msgstr "Objects Security Grid" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_DOWN" +msgstr "STOCK_GO_DOWN" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_OK" +msgstr "STOCK_OK" + +#. module: base +#: selection:ir.actions.server,state:0 +#: selection:workflow.activity,kind:0 +msgid "Dummy" +msgstr "Dummy" + +#. module: base +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Invalid XML code in Arch fields of View!" + +#. module: base +#: model:res.country,name:base.ky +msgid "Cayman Islands" +msgstr "Cayman Islands" + +#. module: base +#: model:res.country,name:base.ir +msgid "Iran" +msgstr "Iran" + +#. module: base +#: model:ir.actions.act_window,name:base.res_request-act +#: model:ir.ui.menu,name:base.menu_res_request_act +msgid "My Requests" +msgstr "My Requests" + +#. module: base +#: field:ir.sequence,name:0 +#: field:ir.sequence.type,name:0 +msgid "Sequence Name" +msgstr "Sequence Name" + +#. module: base +#: model:res.country,name:base.td +msgid "Chad" +msgstr "Chad" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Spanish (AR) / Español (AR)" +msgstr "Spanish (AR) / Español (AR)" + +#. module: base +#: model:res.country,name:base.ug +msgid "Uganda" +msgstr "Uganda" + +#. module: base +#: model:res.country,name:base.ne +msgid "Niger" +msgstr "Niger" + +#. module: base +#: model:res.country,name:base.ba +msgid "Bosnia-Herzegovina" +msgstr "Bosnia-Herzegovina" + +#. module: base +#: field:ir.report.custom.fields,alignment:0 +msgid "Alignment" +msgstr "Alignment" + +#. module: base +#: selection:ir.rule,operator:0 +msgid ">=" +msgstr ">=" + +#. module: base +#: view:res.lang:0 +msgid "" +"%W - Week number of the year (Monday as the first day of the week) as a " +"decimal number [00,53]. All days in a new year preceding the first Monday " +"are considered to be in week 0." +msgstr "" +"%W - Week number of the year (Monday as the first day of the week) as a " +"decimal number [00,53]. All days in a new year preceding the first Monday " +"are considered to be in week 0." + +#. module: base +#: field:res.partner.event,planned_cost:0 +msgid "Planned Cost" +msgstr "Planned Cost" + +#. module: base +#: model:ir.model,name:base.model_ir_model_config +msgid "ir.model.config" +msgstr "ir.model.config" + +#. module: base +#: field:ir.module.module,website:0 +#: field:res.partner,website:0 +msgid "Website" +msgstr "Website" + +#. module: base +#: view:ir.module.repository:0 +msgid "Repository" +msgstr "Repository" + +#. module: base +#: model:res.country,name:base.gs +msgid "S. Georgia & S. Sandwich Isls." +msgstr "S. Georgia & S. Sandwich Isls." + +#. module: base +#: field:ir.actions.url,url:0 +msgid "Action URL" +msgstr "Action URL" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_FILL" +msgstr "STOCK_JUSTIFY_FILL" + +#. module: base +#: model:res.country,name:base.mh +msgid "Marshall Islands" +msgstr "Marshall Islands" + +#. module: base +#: model:res.country,name:base.ht +msgid "Haiti" +msgstr "Haiti" + +#. module: base +#: selection:ir.translation,type:0 +msgid "RML" +msgstr "RML" + +#. module: base +#: selection:ir.ui.view,type:0 +msgid "Search" +msgstr "Search" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Pie charts need exactly two fields" +msgstr "Pie charts need exactly two fields" + +#. module: base +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." +msgstr "To export a new language, do not select a language." + +#. module: base +#: model:res.country,name:base.md +msgid "Moldavia" +msgstr "Moldavia" + +#. module: base +#: view:ir.module.module:0 +msgid "Features" +msgstr "Features" + +#. module: base +#: field:ir.report.custom,frequency:0 +msgid "Frequency" +msgstr "Frequency" + +#. module: base +#: field:ir.report.custom.fields,fc0_op:0 +#: field:ir.report.custom.fields,fc1_op:0 +#: field:ir.report.custom.fields,fc2_op:0 +#: field:ir.report.custom.fields,fc3_op:0 +msgid "Relation" +msgstr "Relation" + +#. module: base +#: field:ir.model.access,perm_read:0 +msgid "Read Access" +msgstr "Read Access" + +#. module: base +#: model:ir.model,name:base.model_ir_exports +msgid "ir.exports" +msgstr "ir.exports" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MISSING_IMAGE" +msgstr "STOCK_MISSING_IMAGE" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" +msgstr "Define New Users" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REMOVE" +msgstr "STOCK_REMOVE" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "raw" +msgstr "raw" + +#. module: base +#: help:ir.actions.server,email:0 +msgid "" +"Provides the fields that will be used to fetch the email address, e.g. when " +"you select the invoice, then `object.invoice_address_id.email` is the field " +"which gives the correct address" +msgstr "" +"Provides the fields that will be used to fetch the e-mail address, e.g. when " +"you select the invoice, then `object.invoice_address_id.email` is the field " +"which gives the correct address" + +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Role Name" + +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "Dedicated Salesman" + +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "-" + +#. module: base +#: field:res.payterm,name:0 +msgid "Payment Term (short name)" +msgstr "Payment Term (short name)" + +#. module: base +#: model:ir.model,name:base.model_res_bank +#: view:res.bank:0 +#: field:res.partner.bank,bank:0 +msgid "Bank" +msgstr "Bank" + +#. module: base +#: view:res.lang:0 +msgid "Examples" +msgstr "Examples" + +#. module: base +#: field:ir.module.module,reports_by_module:0 +msgid "Reports" +msgstr "Reports" + +#. module: base +#: field:workflow,on_create:0 +msgid "On Create" +msgstr "On Create" + +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "Please give your module in compressed (.ZIP) format to import." + +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "Default Value" + +#. module: base +#: wizard_field:res.partner.sms_send,init,user:0 +#: field:res.users,login:0 +msgid "Login" +msgstr "Login" + +#. module: base +#: view:maintenance.contract:0 +#: field:maintenance.contract,module_ids:0 +msgid "Covered Modules" +msgstr "Covered Modules" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_COPY" +msgstr "STOCK_COPY" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "Model %s Does not Exist !" +msgstr "Model %s Does not Exist !" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "" +"You try to install the module '%s' that depends on the module:'%s'.\n" +"But this module is not available in your system." +msgstr "" +"You try to install the module '%s' that depends on the module:'%s'.\n" +"But this module is not available in your system." + +#. module: base +#: model:ir.model,name:base.model_res_request_link +msgid "res.request.link" +msgstr "res.request.link" + +#. module: base +#: wizard_button:module.module.update,init,update:0 +msgid "Check new modules" +msgstr "Check new modules" + +#. module: base +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "Comoros" + +#. module: base +#: model:ir.actions.act_window,name:base.action_server_action +#: view:ir.actions.server:0 +#: model:ir.ui.menu,name:base.menu_server_action +msgid "Server Actions" +msgstr "Server Actions" + +#. module: base +#: model:res.country,name:base.tp +msgid "East Timor" +msgstr "East Timor" + +#. module: base +#: view:ir.rule:0 +msgid "Simple domain setup" +msgstr "Simple domain setup" + +#. module: base +#: field:res.currency,accuracy:0 +msgid "Computational Accuracy" +msgstr "Computational Accuracy" + +#. module: base +#: model:res.country,name:base.kg +msgid "Kyrgyz Republic (Kyrgyzstan)" +msgstr "Kyrgyz Republic (Kyrgyzstan)" + +#. module: base +#: model:ir.model,name:base.model_wizard_ir_model_menu_create_line +msgid "wizard.ir.model.menu.create.line" +msgstr "wizard.ir.model.menu.create.line" + +#. module: base +#: view:ir.sequence:0 +msgid "Day: %(day)s" +msgstr "Day: %(day)s" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not read this document! (%s)" +msgstr "You are not permitted to access this document! (%s)" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FIND_AND_REPLACE" +msgstr "STOCK_FIND_AND_REPLACE" + +#. module: base +#: model:res.country,name:base.mv +msgid "Maldives" +msgstr "Maldives" + +#. module: base +#: help:ir.values,res_id:0 +msgid "Keep 0 if the action must appear on all resources." +msgstr "Keep 0 if the action must appear on all resources." + +#. module: base +#: model:ir.model,name:base.model_ir_rule +msgid "ir.rule" +msgstr "ir.rule" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Days" +msgstr "Days" + +#. module: base +#: field:ir.report.custom.fields,width:0 +msgid "Fixed Width" +msgstr "Fixed Width" + +#. module: base +#: model:res.company,overdue_msg:base.main_company +msgid "" +"Would your payment have been carried out after this mail was sent, please " +"consider the present one as void. Do not hesitate to contact our accounting " +"department at (+32).81.81.37.00." +msgstr "" +"Would your payment have been carried out after this mail was sent, please " +"consider the present one as void. Do not hesitate to contact our accounting " +"department at (+32).81.81.37.00." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-calendar" +msgstr "terp-calendar" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_YES" +msgstr "STOCK_YES" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_report_custom +#: model:ir.ui.menu,name:base.menu_ir_action_report_custom +msgid "Report Custom" +msgstr "Custom Report" + +#. module: base +#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid " (copy)" +msgstr " (copy)" + +#. module: base +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "Year without century: %(y)s" + +#. module: base +#: view:res.lang:0 +msgid "7. %H:%M:%S ==> 18:25:20" +msgstr "7. %H:%M:%S ==> 18:25:20" + +#. module: base +#: help:res.users,company_id:0 +msgid "The company this user is currently working on." +msgstr "The company this user is currently working on." + +#. module: base +#: help:ir.actions.server,message:0 +msgid "" +"Specify the message. You can use the fields from the object. e.g. `Dear [[ " +"object.partner_id.name ]]`" +msgstr "" +"Specify the message. You can use the fields from the object. e.g. `Dear [[ " +"object.partner_id.name ]]`" + +#. module: base +#: field:ir.actions.server,trigger_name:0 +msgid "Trigger Name" +msgstr "Trigger Name" + +#. module: base +#: model:ir.model,name:base.model_ir_model_access +msgid "ir.model.access" +msgstr "ir.model.access" + +#. module: base +#: field:ir.cron,priority:0 +#: field:ir.ui.view,priority:0 +#: field:res.request,priority:0 +#: field:res.request.link,priority:0 +msgid "Priority" +msgstr "Priority" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "Source Activity" + +#. module: base +#: view:ir.sequence:0 +msgid "Legend (for prefix, suffix)" +msgstr "Legend (for prefix, suffix)" + +#. module: base +#: selection:ir.server.object.lines,type:0 +msgid "Formula" +msgstr "Formula" + +#. module: base +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "Can not remove root user!" +msgstr "Can not remove root user!" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_LEFT" +msgstr "STOCK_JUSTIFY_LEFT" + +#. module: base +#: model:res.country,name:base.mw +msgid "Malawi" +msgstr "Malawi" + +#. module: base +#: field:res.partner.address,type:0 +msgid "Address Type" +msgstr "Address Type" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +msgstr "Auto" + +#. module: base +#: view:res.request:0 +msgid "End of Request" +msgstr "End of Request" + +#. module: base +#: view:res.request:0 +msgid "References" +msgstr "References" + +#. module: base +#: view:res.lang:0 +msgid "" +"%U - Week number of the year (Sunday as the first day of the week) as a " +"decimal number [00,53]. All days in a new year preceding the first Sunday " +"are considered to be in week 0." +msgstr "" +"%U - Week number of the year (Sunday as the first day of the week) as a " +"decimal number [00,53]. All days in a new year preceding the first Sunday " +"are considered to be in week 0." + +#. module: base +#: wizard_view:module.lang.install,init:0 +msgid "Note that this operation may take a few minutes." +msgstr "Note that this operation may take a few minutes." + +#. module: base +#: help:ir.sequence,condition:0 +msgid "" +"If set, sequence will only be used in case this python expression matches, " +"and will precede other sequences." +msgstr "" +"If set, sequence will only be used in case this python expression matches, " +"and will precede other sequences." + +#. module: base +#: selection:ir.actions.act_window,view_type:0 +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Tree" +msgstr "Tree" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "Could you check your contract information ?" +msgstr "Could you check your contract information ?" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLEAR" +msgstr "STOCK_CLEAR" + +#. module: base +#: help:res.users,password:0 +msgid "" +"Keep empty if you don't want the user to be able to connect on the system." +msgstr "" +"Keep empty if you don't want the user to be able to connect on the system." + +#. module: base +#: field:ir.actions.act_window,view_mode:0 +#: field:res.config.view,view:0 +msgid "View Mode" +msgstr "View Mode" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Spanish / Español" +msgstr "Spanish / Español" + +#. module: base +#: field:res.company,logo:0 +msgid "Logo" +msgstr "Logo" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PROPERTIES" +msgstr "STOCK_PROPERTIES" + +#. module: base +#: view:res.partner.address:0 +msgid "Search Contact" +msgstr "Search Contact" + +#. module: base +#: view:ir.module.module:0 +msgid "Uninstall (beta)" +msgstr "Uninstall (beta)" + +#. module: base +#: selection:ir.actions.act_window,target:0 +#: selection:ir.actions.url,target:0 +msgid "New Window" +msgstr "New Window" + +#. module: base +#: model:res.country,name:base.bs +msgid "Bahamas" +msgstr "Bahamas" + +#. module: base +#: selection:res.partner.event,partner_type:0 +msgid "Commercial Prospect" +msgstr "Commercial Prospect" + +#. 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 "" +"Couldn't generate the next id because some partners have an alphabetic id !" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "Attachment" + +#. module: base +#: model:res.country,name:base.ie +msgid "Ireland" +msgstr "Ireland" + +#. module: base +#: wizard_field:module.module.update,update,update:0 +msgid "Number of modules updated" +msgstr "Number of modules updated" + +#. module: base +#: field:ir.actions.act_window,groups_id:0 +#: model:ir.actions.act_window,name:base.action_res_groups +#: field:ir.actions.report.xml,groups_id:0 +#: field:ir.actions.todo,groups_id:0 +#: field:ir.actions.wizard,groups_id:0 +#: field:ir.model.fields,groups:0 +#: field:ir.ui.menu,groups_id:0 +#: model:ir.ui.menu,name:base.menu_action_res_groups +#: view:res.groups:0 +#: view:res.users:0 +#: field:res.users,groups_id:0 +msgid "Groups" +msgstr "Groups" + +#. module: base +#: constraint:res.users:0 +msgid "This user can not connect using this company !" +msgstr "This user can not connect using this company !" + +#. module: base +#: model:res.country,name:base.bz +msgid "Belize" +msgstr "Belize" + +#. module: base +#: model:res.country,name:base.ge +msgid "Georgia" +msgstr "Georgia" + +#. module: base +#: model:res.country,name:base.pl +msgid "Poland" +msgstr "Poland" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "To be removed" +msgstr "To be removed" + +#. module: base +#: field:ir.values,meta:0 +msgid "Meta Datas" +msgstr "Meta Datas" + +#. module: base +#: view:wizard.module.update_translations:0 +msgid "" +"This wizard will detect new terms in the application so that you can update " +"them manually." +msgstr "" +"This wizard will detect new terms in the application so that you can update " +"them manually." + +#. module: base +#: help:ir.actions.server,expression:0 +msgid "" +"Enter the field/expression that will return the list. E.g. select the sale " +"order in Object, and you can have loop on the sales order line. Expression = " +"`object.order_line`." +msgstr "" +"Enter the field/expression that will return the list. E.g. select the sale " +"order in Object, and you can have loop on the sales order line. Expression = " +"`object.order_line`." + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard Field" +msgstr "Wizard Field" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SELECT_COLOR" +msgstr "STOCK_SELECT_COLOR" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NO" +msgstr "STOCK_NO" + +#. module: base +#: model:res.country,name:base.st +msgid "Saint Tome (Sao Tome) and Principe" +msgstr "Saint Tome (Sao Tome) and Principe" + +#. module: base +#: selection:res.partner.address,type:0 +msgid "Invoice" +msgstr "Invoice" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REDO" +msgstr "STOCK_REDO" + +#. module: base +#: model:res.country,name:base.bb +msgid "Barbados" +msgstr "Barbados" + +#. module: base +#: model:res.country,name:base.mg +msgid "Madagascar" +msgstr "Madagascar" + +#. module: base +#: constraint:ir.model:0 +msgid "" +"The Object name must start with x_ and not contain any special character !" +msgstr "" +"The Object name must start with x_ and not contain any special character !" + +#. module: base +#: model:ir.actions.act_window,name:base.action_menu_admin +#: field:ir.report.custom,menu_id:0 +#: view:ir.ui.menu:0 +#: field:ir.ui.menu,name:0 +msgid "Menu" +msgstr "Menu" + +#. module: base +#: field:res.currency,rate:0 +msgid "Current Rate" +msgstr "Current Rate" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Greek / Ελληνικά" +msgstr "Greek / Ελληνικά" + +#. module: base +#: view:ir.values:0 +msgid "Action To Launch" +msgstr "Action To Launch" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +#: selection:ir.rule,operator:0 +msgid "in" +msgstr "in" + +#. module: base +#: field:ir.actions.url,target:0 +msgid "Action Target" +msgstr "Action Target" + +#. module: base +#: model:res.country,name:base.ai +msgid "Anguilla" +msgstr "Anguilla" + +#. module: base +#: field:ir.model.config,password_check:0 +msgid "Confirmation" +msgstr "Confirmation" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Enter at least one field !" +msgstr "Enter at least one field !" + +#. module: base +#: field:ir.ui.view_sc,name:0 +msgid "Shortcut Name" +msgstr "Shortcut Name" + +#. module: base +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" +msgstr "Credit Limit" + +#. module: base +#: help:ir.actions.server,write_id:0 +msgid "" +"Provide the field name that the record id refers to for the write operation. " +"If it is empty it will refer to the active id of the object." +msgstr "" +"Provide the field name that the record id refers to for the write operation. " +"If it is empty it will refer to the active id of the object." + +#. module: base +#: model:res.country,name:base.zw +msgid "Zimbabwe" +msgstr "Zimbabwe" + +#. module: base +#: model:ir.ui.menu,name:base.menu_translation_export +msgid "Import / Export" +msgstr "Import / Export" + +#. module: base +#: model:ir.actions.act_window,name:base.action_config_user_form +#: view:res.users:0 +msgid "Configure User" +msgstr "Configure User" + +#. module: base +#: field:ir.actions.server,email:0 +msgid "Email Address" +msgstr "E-mail Address" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "French (BE) / Français (BE)" +msgstr "French (BE) / Français (BE)" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not write in this document! (%s)" +msgstr "You can not write in this document! (%s)" + +#. module: base +#: view:ir.actions.server:0 +#: field:workflow.activity,action_id:0 +msgid "Server Action" +msgstr "Server Action" + +#. module: base +#: model:res.country,name:base.tt +msgid "Trinidad and Tobago" +msgstr "Trinidad and Tobago" + +#. module: base +#: model:res.country,name:base.lv +msgid "Latvia" +msgstr "Latvia" + +#. module: base +#: view:ir.values:0 +msgid "Values" +msgstr "Values" + +#. module: base +#: view:ir.actions.server:0 +msgid "Field Mappings" +msgstr "Field Mappings" + +#. module: base +#: model:ir.actions.act_window,name:base.res_request-closed +#: model:ir.ui.menu,name:base.next_id_12_close +msgid "My Closed Requests" +msgstr "My Closed Requests" + +#. module: base +#: model:ir.ui.menu,name:base.menu_custom +msgid "Customization" +msgstr "Customisation" + +#. module: base +#: model:res.country,name:base.py +msgid "Paraguay" +msgstr "Paraguay" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "left" +msgstr "left" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window_close +msgid "ir.actions.act_window_close" +msgstr "ir.actions.act_window_close" + +#. module: base +#: field:ir.server.object.lines,col1:0 +msgid "Destination" +msgstr "Destination" + +#. module: base +#: model:res.country,name:base.lt +msgid "Lithuania" +msgstr "Lithuania" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PRINT_PREVIEW" +msgstr "STOCK_PRINT_PREVIEW" + +#. module: base +#: model:res.country,name:base.si +msgid "Slovenia" +msgstr "Slovenia" + +#. module: base +#: view:res.partner.canal:0 +#: field:res.partner.event,canal_id:0 +msgid "Channel" +msgstr "Channel" + +#. module: base +#: view:res.lang:0 +msgid "%p - Equivalent of either AM or PM." +msgstr "%p - Equivalent of either AM or PM." + +#. module: base +#: view:ir.actions.server:0 +msgid "Iteration Actions" +msgstr "Iteration Actions" + +#. module: base +#: field:maintenance.contract,date_stop:0 +msgid "Ending Date" +msgstr "Ending Date" + +#. module: base +#: model:res.country,name:base.nz +msgid "New Zealand" +msgstr "New Zealand" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_7 +msgid "Openstuff.net" +msgstr "Openstuff.net" + +#. module: base +#: model:res.country,name:base.nf +msgid "Norfolk Island" +msgstr "Norfolk Island" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PLAY" +msgstr "STOCK_MEDIA_PLAY" + +#. module: base +#: field:ir.rule,operator:0 +msgid "Operator" +msgstr "Operator" + +#. module: base +#: wizard_view:module.lang.install,start:0 +msgid "Installation Done" +msgstr "Installation Done" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_OPEN" +msgstr "STOCK_OPEN" + +#. module: base +#: field:ir.actions.server,action_id:0 +#: selection:ir.actions.server,state:0 +msgid "Client Action" +msgstr "Client Action" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "right" +msgstr "right" + +#. module: base +#: model:res.country,name:base.bd +msgid "Bangladesh" +msgstr "Bangladesh" + +#. module: base +#: constraint:res.company:0 +msgid "Error! You can not create recursive companies." +msgstr "Error! You can not create recursive companies." + +#. module: base +#: selection:maintenance.contract,state:0 +msgid "Valid" +msgstr "Valid" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not delete this document! (%s)" +msgstr "You can not delete this document! (%s)" + +#. module: base +#: selection:ir.translation,type:0 +msgid "XSL" +msgstr "XSL" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "Can not upgrade module '%s'. It is not installed." +msgstr "Can not upgrade module '%s'. It is not installed." + +#. module: base +#: model:res.country,name:base.cu +msgid "Cuba" +msgstr "Cuba" + +#. module: base +#: view:res.lang:0 +msgid "%S - Second as a decimal number [00,61]." +msgstr "%S - Second as a decimal number [00,61]." + +#. module: base +#: model:res.country,name:base.am +msgid "Armenia" +msgstr "Armenia" + +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "Year with century: %(year)s" + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Daily" +msgstr "Daily" + +#. module: base +#: model:res.country,name:base.se +msgid "Sweden" +msgstr "Sweden" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Gantt" +msgstr "Gantt" + +#. module: base +#: view:ir.property:0 +msgid "Property" +msgstr "Property" + +#. module: base +#: model:ir.model,name:base.model_res_partner_bank_type +#: view:res.partner.bank.type:0 +msgid "Bank Account Type" +msgstr "Bank Account Type" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-project" +msgstr "terp-project" + +#. module: base +#: view:ir.actions.server:0 +msgid "Iteration Action Configuration" +msgstr "Iteration Action Configuration" + +#. module: base +#: model:res.country,name:base.at +msgid "Austria" +msgstr "Austria" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Calendar" +msgstr "Calendar" + +#. module: base +#: field:workflow.activity,signal_send:0 +msgid "Signal (subflow.*)" +msgstr "Signal (subflow.*)" + +#. module: base +#: model:ir.model,name:base.model_ir_module_module_dependency +msgid "Module dependency" +msgstr "Module dependency" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Draft" +msgstr "Draft" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_CENTER" +msgstr "STOCK_JUSTIFY_CENTER" + +#. module: base +#: view:res.config.view:0 +msgid "Choose Your Mode" +msgstr "Choose Your Mode" + +#. module: base +#: field:res.company,rml_footer1:0 +msgid "Report Footer 1" +msgstr "Report Footer 1" + +#. module: base +#: field:res.company,rml_footer2:0 +msgid "Report Footer 2" +msgstr "Report Footer 2" + +#. module: base +#: view:ir.model.access:0 +#: model:ir.ui.menu,name:base.menu_security_access +#: view:res.groups:0 +#: field:res.groups,model_access:0 +msgid "Access Controls" +msgstr "Access Controls" + +#. module: base +#: view:ir.module.module:0 +#: field:ir.module.module,dependencies_id:0 +msgid "Dependencies" +msgstr "Dependencies" + +#. module: base +#: field:ir.report.custom.fields,bgcolor:0 +msgid "Background Color" +msgstr "Background Colour" + +#. module: base +#: view:ir.actions.server:0 +msgid "" +"If you use a formula type, use a python expression using the variable " +"'object'." +msgstr "" +"If you use a formula type, use a python expression using the variable " +"'object'." + +#. module: base +#: field:res.partner.address,birthdate:0 +msgid "Birthdate" +msgstr "Birthdate" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title_contact +#: model:ir.ui.menu,name:base.menu_partner_title_contact +msgid "Contact Titles" +msgstr "Contact Titles" + +#. module: base +#: model:ir.model,name:base.model_res_partner_som +msgid "res.partner.som" +msgstr "res.partner.som" + +#. module: base +#: model:ir.model,name:base.model_workflow_activity +msgid "workflow.activity" +msgstr "workflow.activity" + +#. module: base +#: field:ir.model.fields,select_level:0 +msgid "Searchable" +msgstr "Searchable" + +#. module: base +#: model:res.country,name:base.uy +msgid "Uruguay" +msgstr "Uruguay" + +#. module: base +#: view:res.partner.event:0 +msgid "Document Link" +msgstr "Document Link" + +#. module: base +#: model:ir.model,name:base.model_res_partner_title +msgid "res.partner.title" +msgstr "res.partner.title" + +#. module: base +#: field:ir.sequence,prefix:0 +msgid "Prefix" +msgstr "Prefix" + +#. module: base +#: field:ir.actions.server,loop_action:0 +msgid "Loop Action" +msgstr "Loop Action" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "German / Deutsch" +msgstr "German / Deutsch" + +#. module: base +#: help:ir.actions.server,trigger_name:0 +msgid "Select the Signal name that is to be used as the trigger." +msgstr "Select the Signal name that is to be used as the trigger." + +#. module: base +#: view:ir.actions.server:0 +msgid "Fields Mapping" +msgstr "Fields Mapping" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +msgstr "Sir" + +#. module: base +#: wizard_button:module.upgrade,next,start:0 +msgid "Start Upgrade" +msgstr "Start Upgrade" + +#. module: base +#: field:ir.default,ref_id:0 +msgid "ID Ref." +msgstr "ID Ref." + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "French / Français" +msgstr "French / Français" + +#. module: base +#: model:res.country,name:base.mt +msgid "Malta" +msgstr "Malta" + +#. module: base +#: field:ir.actions.server,fields_lines:0 +msgid "Field Mappings." +msgstr "Field Mappings." + +#. module: base +#: model:ir.model,name:base.model_ir_module_module +#: field:ir.model.data,module:0 +#: view:ir.module.module:0 +#: field:ir.module.module.dependency,module_id:0 +#: rml:ir.module.reference:0 +msgid "Module" +msgstr "Module" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_bank_form +#: model:ir.ui.menu,name:base.menu_action_res_bank_form +msgid "Bank List" +msgstr "Bank List" + +#. module: base +#: field:ir.attachment,description:0 +#: field:ir.module.module,description:0 +#: view:res.partner:0 +#: field:res.partner.bank,name:0 +#: view:res.partner.event:0 +#: field:res.partner.event,description:0 +#: view:res.request:0 +msgid "Description" +msgstr "Description" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_instance_form +#: model:ir.ui.menu,name:base.menu_workflow_instance +msgid "Instances" +msgstr "Instances" + +#. module: base +#: model:ir.model,name:base.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + +#. module: base +#: field:res.users,action_id:0 +msgid "Home Action" +msgstr "Home Action" + +#. module: base +#: field:res.lang,grouping:0 +msgid "Separator Format" +msgstr "Separator Format" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export language" +msgstr "Export language" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Unvalidated" +msgstr "Unvalidated" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_9 +msgid "Database Structure" +msgstr "Database Structure" + +#. module: base +#: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard +#: wizard_view:res.partner.spam_send,init:0 +msgid "Mass Mailing" +msgstr "Mass Mailing" + +#. module: base +#: model:res.country,name:base.yt +msgid "Mayotte" +msgstr "Mayotte" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." +msgstr "You can also import .po files." + +#. module: base +#: code:addons/base/maintenance/maintenance.py:0 +#, python-format +msgid "Unable to find a valid contract" +msgstr "Unable to find a valid contract" + +#. module: base +#: code:addons/base/ir/ir_actions.py:0 +#, python-format +msgid "Please specify an action to launch !" +msgstr "Please specify an action to launch !" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_RIGHT" +msgstr "STOCK_JUSTIFY_RIGHT" + +#. module: base +#: model:ir.model,name:base.model_res_partner_function +msgid "Function of the contact" +msgstr "Function of the contact" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_upgrade +#: model:ir.ui.menu,name:base.menu_module_tree_upgrade +msgid "Modules to be installed, upgraded or removed" +msgstr "Modules to be installed, upgraded or removed" + +#. module: base +#: view:res.payterm:0 +msgid "Payment Term" +msgstr "Payment Term" + +#. module: base +#: field:ir.report.custom,footer:0 +msgid "Report Footer" +msgstr "Report Footer" + +#. module: base +#: selection:res.lang,direction:0 +msgid "Right-to-Left" +msgstr "Right-to-Left" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "Import language" +msgstr "Import language" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_cron_act +#: view:ir.cron:0 +#: model:ir.ui.menu,name:base.menu_ir_cron_act +msgid "Scheduled Actions" +msgstr "Scheduled Actions" + +#. module: base +#: field:res.partner,title:0 +#: field:res.partner.address,title:0 +#: field:res.partner.title,name:0 +msgid "Title" +msgstr "Title" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SAVE" +msgstr "STOCK_SAVE" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-account" +msgstr "terp-account" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "Recursion error in modules dependencies !" +msgstr "Recursion error in modules dependencies !" + +#. module: base +#: view:ir.model:0 +msgid "Create a Menu" +msgstr "Create a Menu" + +#. module: base +#: help:res.partner,vat:0 +msgid "" +"Value Added Tax number. Check the box if the partner is subjected to the " +"VAT. Used by the VAT legal statement." +msgstr "" +"Value Added Tax number. Check the box if the partner is subjected to the " +"VAT. Used by the VAT legal statement." + +#. 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 of Modules" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "Ukrainian / украї́нська мо́ва" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Not Started" +msgstr "Not Started" + +#. module: base +#: model:res.country,name:base.ru +msgid "Russian Federation" +msgstr "Russian Federation" + +#. module: base +#: field:res.company,name:0 +msgid "Company Name" +msgstr "Company Name" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_roles_form +#: model:ir.ui.menu,name:base.menu_action_res_roles_form +#: view:res.roles:0 +#: view:res.users:0 +#: field:res.users,roles_id:0 +msgid "Roles" +msgstr "Roles" + +#. module: base +#: model:ir.actions.act_window,name:base.action_country +#: model:ir.ui.menu,name:base.menu_country_partner +msgid "Countries" +msgstr "Countries" + +#. module: base +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "VAT" + +#. module: base +#: view:res.lang:0 +msgid "12. %w ==> 5 ( Friday is the 6th day)" +msgstr "12. %w ==> 5 ( Friday is the 6th day)" + +#. module: base +#: constraint:res.partner.category:0 +msgid "Error ! You can not create recursive categories." +msgstr "Error ! You can not create recursive categories." + +#. module: base +#: view:res.lang:0 +msgid "%x - Appropriate date representation." +msgstr "%x - Appropriate date representation." + +#. module: base +#: help:ir.module.repository,filter:0 +msgid "" +"Regexp to search module on the repository webpage:\n" +"- The first parenthesis must match the name of the module.\n" +"- The second parenthesis must match the whole version number.\n" +"- The last parenthesis must match the extension of the module." +msgstr "" +"Regexp to search module on the repository webpage:\n" +"- The first parenthesis must match the name of the module.\n" +"- The second parenthesis must match the whole version number.\n" +"- The last parenthesis must match the extension of the module." + +#. module: base +#: view:res.lang:0 +msgid "%M - Minute as a decimal number [00,59]." +msgstr "%M - Minute as a decimal number [00,59]." + +#. module: base +#: model:res.country,name:base.tj +msgid "Tajikistan" +msgstr "Tajikistan" + +#. module: base +#: model:ir.actions.act_window,name:base.act_values_form_action +#: model:ir.ui.menu,name:base.menu_values_form_action +msgid "Connect Actions To Client Events" +msgstr "Connect Actions To Client Events" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-2 or later version" +msgstr "GPL-2 or later version" + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" +msgstr "Prospect Contact" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_wizard +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.wizard" +msgstr "ir.actions.wizard" + +#. module: base +#: model:res.country,name:base.nr +msgid "Nauru" +msgstr "Nauru" + +#. module: base +#: model:ir.model,name:base.model_ir_property +msgid "ir.property" +msgstr "ir.property" + +#. module: base +#: selection:ir.actions.act_window,view_type:0 +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Form" +msgstr "Form" + +#. module: base +#: model:res.country,name:base.me +msgid "Montenegro" +msgstr "Montenegro" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_QUIT" +msgstr "STOCK_QUIT" + +#. module: base +#: view:ir.cron:0 +msgid "Technical Data" +msgstr "Technical Data" + +#. module: base +#: view:res.partner:0 +#: field:res.partner,category_id:0 +msgid "Categories" +msgstr "Categories" + +#. module: base +#: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard +#: wizard_button:res.partner.sms_send,init,send:0 +msgid "Send SMS" +msgstr "Send SMS" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "To be upgraded" +msgstr "To be upgraded" + +#. module: base +#: model:res.country,name:base.ly +msgid "Libya" +msgstr "Libya" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-purchase" +msgstr "terp-purchase" + +#. module: base +#: wizard_field:module.module.update,init,repositories:0 +msgid "Repositories" +msgstr "Repositories" + +#. module: base +#: model:res.country,name:base.cf +msgid "Central African Republic" +msgstr "Central African Republic" + +#. module: base +#: model:res.country,name:base.li +msgid "Liechtenstein" +msgstr "Liechtenstein" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_ltd +msgid "Ltd" +msgstr "Ltd" + +#. module: base +#: field:res.partner,ean13:0 +msgid "EAN13" +msgstr "EAN13" + +#. module: base +#: model:res.country,name:base.pt +msgid "Portugal" +msgstr "Portugal" + +#. module: base +#: selection:maintenance.contract,state:0 +msgid "Unvalid" +msgstr "Unvalid" + +#. module: base +#: field:ir.module.module,certificate:0 +msgid "Quality Certificate" +msgstr "Quality Certificate" + +#. module: base +#: view:res.lang:0 +msgid "6. %d, %m ==> 05, 12" +msgstr "6. %d, %m ==> 05, 12" + +#. module: base +#: help:res.partner,customer:0 +msgid "Check this box if the partner is a customer." +msgstr "Check this box if the partner is a customer." + +#. module: base +#: model:ir.actions.act_window,name:base.res_lang_act_window +#: model:ir.model,name:base.model_res_lang +#: model:ir.ui.menu,name:base.menu_res_lang_act_window +#: view:res.lang:0 +msgid "Languages" +msgstr "Languages" + +#. module: base +#: model:res.country,name:base.pw +msgid "Palau" +msgstr "Palau" + +#. module: base +#: model:res.country,name:base.ec +msgid "Ecuador" +msgstr "Ecuador" + +#. module: base +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#, python-format +msgid "" +"Save this document to a .CSV file and open it with your favourite " +"spreadsheet software. The file encoding is UTF-8. You have to translate the " +"latest column before reimporting it." +msgstr "" +"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." + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_customer_form +#: view:res.partner:0 +msgid "Customers" +msgstr "Customers" + +#. module: base +#: model:res.country,name:base.au +msgid "Australia" +msgstr "Australia" + +#. module: base +#: help:res.partner,lang:0 +msgid "" +"If the selected language is loaded in the system, all documents related to " +"this partner will be printed in this language. If not, it will be english." +msgstr "" +"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." + +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "Menu :" + +#. module: base +#: selection:ir.model.fields,state:0 +msgid "Base Field" +msgstr "Base Field" + +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "New modules" + +#. module: base +#: field:ir.actions.report.xml,report_sxw_content:0 +#: field:ir.actions.report.xml,report_sxw_content_data:0 +msgid "SXW content" +msgstr "SXW content" + +#. module: base +#: view:ir.cron:0 +msgid "Action to Trigger" +msgstr "Action to Trigger" + +#. module: base +#: field:ir.report.custom.fields,fc0_operande:0 +#: field:ir.report.custom.fields,fc1_operande:0 +#: field:ir.report.custom.fields,fc2_operande:0 +#: field:ir.report.custom.fields,fc3_operande:0 +#: selection:ir.translation,type:0 +msgid "Constraint" +msgstr "Constraint" + +#. module: base +#: selection:ir.values,key:0 +#: selection:res.partner.address,type:0 +msgid "Default" +msgstr "Default" + +#. module: base +#: field:ir.model.fields,required:0 +#: field:res.partner.bank.type.field,required:0 +msgid "Required" +msgstr "Required" + +#. module: base +#: field:ir.model.fields,domain:0 +#: field:ir.rule,domain:0 +#: field:res.partner.title,domain:0 +msgid "Domain" +msgstr "Domain" + +#. module: base +#: field:res.request.history,name:0 +msgid "Summary" +msgstr "Summary" + +#. module: base +#: help:ir.actions.server,subject:0 +msgid "" +"Specify the subject. You can use fields from the object, e.g. `Hello [[ " +"object.partner_id.name ]]`" +msgstr "" +"Specify the subject. You can use fields from the object, e.g. `Hello [[ " +"object.partner_id.name ]]`" + +#. module: base +#: view:res.company:0 +msgid "Header/Footer" +msgstr "Header/Footer" + +#. module: base +#: model:res.country,name:base.lb +msgid "Lebanon" +msgstr "Lebanon" + +#. module: base +#: wizard_field:module.lang.import,init,name:0 +msgid "Language name" +msgstr "Language name" + +#. module: base +#: model:res.country,name:base.va +msgid "Holy See (Vatican City State)" +msgstr "Holy See (Vatican City State)" + +#. module: base +#: help:ir.actions.server,condition:0 +msgid "" +"Condition that is to be tested before action is executed, e.g. " +"object.list_price > object.cost_price" +msgstr "" +"Condition that is to be tested before action is executed, e.g. " +"object.list_price > object.cost_price" + +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "Module .ZIP file" + +#. module: base +#: field:res.roles,child_id:0 +msgid "Children" +msgstr "Children" + +#. module: base +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" +msgstr "Trigger Object" + +#. module: base +#: selection:ir.report.custom,state:0 +msgid "Subscribed" +msgstr "Subscribed" + +#. module: base +#: wizard_view:module.lang.install,init:0 +#: wizard_view:module.upgrade,next:0 +msgid "System Upgrade" +msgstr "System Upgrade" + +#. module: base +#: field:workflow.activity,in_transitions:0 +msgid "Incoming Transitions" +msgstr "Incoming Transitions" + +#. module: base +#: model:res.country,name:base.sr +msgid "Suriname" +msgstr "Suriname" + +#. module: base +#: field:ir.values,key2:0 +#: view:res.partner.event.type:0 +#: field:res.partner.event.type,name:0 +msgid "Event Type" +msgstr "Event Type" + +#. module: base +#: view:res.partner.bank:0 +#: model:res.partner.bank.type,name:base.bank_normal +msgid "Bank account" +msgstr "Bank account" + +#. module: base +#: view:ir.sequence.type:0 +msgid "Sequence Type" +msgstr "Sequence Type" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "" +"You try to upgrade a module that depends on the module: %s.\n" +"But this module is not available in your system." +msgstr "" +"You try to upgrade a module that depends on the module: %s.\n" +"But this module is not available in your system." + +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "Partner Address" + +#. module: base +#: field:ir.module.module,license:0 +msgid "License" +msgstr "License" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Invalid operation" +msgstr "Invalid operation" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SAVE_AS" +msgstr "STOCK_SAVE_AS" + +#. module: base +#: selection:ir.translation,type:0 +msgid "SQL Constraint" +msgstr "SQL Constraint" + +#. module: base +#: field:ir.actions.server,srcmodel_id:0 +msgid "Model" +msgstr "Model" + +#. module: base +#: field:ir.actions.act_window.view,view_id:0 +#: field:ir.default,page:0 +#: selection:ir.translation,type:0 +#: field:wizard.ir.model.menu.create.line,view_id:0 +msgid "View" +msgstr "View" + +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open a Window" +msgstr "Open a Window" + +#. module: base +#: model:res.country,name:base.gq +msgid "Equatorial Guinea" +msgstr "Equatorial Guinea" + +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Module Import" +msgstr "Module Import" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not remove the field '%s' !" +msgstr "You can not remove the field '%s' !" + +#. module: base +#: field:res.bank,zip:0 +#: field:res.partner.address,zip:0 +#: field:res.partner.bank,zip:0 +msgid "Zip" +msgstr "Postcode" + +#. module: base +#: field:ir.module.module,author:0 +msgid "Author" +msgstr "Author" + +#. module: base +#: model:res.country,name:base.mk +msgid "FYROM" +msgstr "FYROM" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDELETE" +msgstr "STOCK_UNDELETE" + +#. module: base +#: view:res.lang:0 +msgid "%c - Appropriate date and time representation." +msgstr "%c - Appropriate date and time representation." + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "Finland / Suomi" + +#. module: base +#: model:res.country,name:base.bo +msgid "Bolivia" +msgstr "Bolivia" + +#. module: base +#: model:res.country,name:base.gh +msgid "Ghana" +msgstr "Ghana" + +#. module: base +#: field:res.lang,direction:0 +msgid "Direction" +msgstr "Direction" + +#. module: base +#: model:ir.model,name:base.model_wizard_module_update_translations +msgid "wizard.module.update_translations" +msgstr "wizard.module.update_translations" + +#. module: base +#: view:ir.actions.act_window:0 +#: model:ir.actions.act_window,name:base.action_ui_view +#: field:ir.actions.act_window,view_ids:0 +#: field:ir.actions.act_window,views:0 +#: field:ir.module.module,views_by_module:0 +#: model:ir.ui.menu,name:base.menu_action_ui_view +#: view:ir.ui.view:0 +#: view:wizard.ir.model.menu.create:0 +#: field:wizard.ir.model.menu.create,view_ids:0 +msgid "Views" +msgstr "Views" + +#. module: base +#: view:res.groups:0 +#: field:res.groups,rule_groups:0 +#: field:res.users,rules_id:0 +msgid "Rules" +msgstr "Rules" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "You try to remove a module that is installed or will be installed" +msgstr "You try to remove a module that is installed or will be installed" + +#. module: base +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "" +"The kind of action or button in the client side that will trigger the action." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PASTE" +msgstr "STOCK_PASTE" + +#. module: base +#: model:res.country,name:base.gt +msgid "Guatemala" +msgstr "Guatemala" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_form +#: model:ir.ui.menu,name:base.menu_workflow +msgid "Workflows" +msgstr "Workflows" + +#. module: base +#: model:ir.actions.act_window,name:base.action_config_wizard_form +#: model:ir.ui.menu,name:base.menu_config_module +msgid "Configuration Wizard" +msgstr "Configuration Wizard" + +#. module: base +#: model:ir.model,name:base.model_res_roles +msgid "res.roles" +msgstr "res.roles" + +#. module: base +#: help:ir.cron,priority:0 +msgid "" +"0=Very Urgent\n" +"10=Not urgent" +msgstr "" +"0=Very Urgent\n" +"10=Not urgent" + +#. module: base +#: view:res.users:0 +msgid "Skip" +msgstr "Skip" + +#. module: base +#: model:ir.actions.act_window,name:base.res_request_link-act +#: model:ir.ui.menu,name:base.menu_res_request_link_act +msgid "Accepted Links in Requests" +msgstr "Accepted Links in Requests" + +#. module: base +#: model:res.country,name:base.ls +msgid "Lesotho" +msgstr "Lesotho" + +#. module: base +#: model:res.country,name:base.ke +msgid "Kenya" +msgstr "Kenya" + +#. module: base +#: view:res.config.view:0 +msgid "" +"Choose the simplified interface if you are testing OpenERP for the first " +"time. Less used options or fields are automatically hidden. You will be able " +"to change this, later, through the Administration menu." +msgstr "" +"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." + +#. module: base +#: model:res.country,name:base.sm +msgid "San Marino" +msgstr "San Marino" + +#. module: base +#: model:res.country,name:base.bm +msgid "Bermuda" +msgstr "Bermuda" + +#. module: base +#: model:res.country,name:base.pe +msgid "Peru" +msgstr "Peru" + +#. module: base +#: selection:ir.model.fields,on_delete:0 +msgid "Set NULL" +msgstr "Set NULL" + +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "State of Mind" + +#. module: base +#: model:res.country,name:base.bj +msgid "Benin" +msgstr "Benin" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CONNECT" +msgstr "STOCK_CONNECT" + +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Not Searchable" +msgstr "Not Searchable" + +#. module: base +#: field:res.partner.event.type,key:0 +msgid "Key" +msgstr "Key" + +#. module: base +#: field:ir.cron,nextcall:0 +msgid "Next Call Date" +msgstr "Next Call Date" + +#. module: base +#: field:res.company,rml_header:0 +msgid "RML Header" +msgstr "RML Header" + +#. module: base +#: wizard_field:res.partner.sms_send,init,app_id:0 +msgid "API ID" +msgstr "API ID" + +#. module: base +#: model:res.country,name:base.mu +msgid "Mauritius" +msgstr "Mauritius" + +#. module: base +#: wizard_view:module.module.update,init:0 +msgid "Scan for new modules" +msgstr "Scan for new modules" + +#. module: base +#: view:ir.actions.act_window:0 +#: model:ir.ui.menu,name:base.menu_security +msgid "Security" +msgstr "Security" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Using a relation field which uses an unknown object" +msgstr "Using a relation field which uses an unknown object" + +#. module: base +#: model:res.country,name:base.za +msgid "South Africa" +msgstr "South Africa" + +#. module: base +#: model:ir.model,name:base.model_wizard_module_lang_export +msgid "wizard.module.lang.export" +msgstr "wizard.module.lang.export" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "Installed" +msgstr "Installed" + +#. module: base +#: model:res.country,name:base.sn +msgid "Senegal" +msgstr "Senegal" + +#. module: base +#: model:res.country,name:base.hu +msgid "Hungary" +msgstr "Hungary" + +#. module: base +#: model:ir.model,name:base.model_res_groups +msgid "res.groups" +msgstr "res.groups" + +#. module: base +#: model:res.country,name:base.br +msgid "Brazil" +msgstr "Brazil" + +#. module: base +#: field:ir.sequence,number_next:0 +msgid "Next Number" +msgstr "Next Number" + +#. module: base +#: view:res.currency:0 +#: field:res.currency,rate_ids:0 +msgid "Rates" +msgstr "Rates" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "Albanian / Shqipëri" + +#. module: base +#: model:res.country,name:base.sy +msgid "Syria" +msgstr "Syria" + +#. module: base +#: view:res.lang:0 +msgid "======================================================" +msgstr "======================================================" + +#. module: base +#: field:ir.report.custom.fields,field_child2:0 +msgid "Field child2" +msgstr "Field child2" + +#. module: base +#: field:ir.report.custom.fields,field_child3:0 +msgid "Field child3" +msgstr "Field child3" + +#. module: base +#: field:ir.report.custom.fields,field_child0:0 +msgid "Field child0" +msgstr "Field child0" + +#. module: base +#: field:ir.report.custom.fields,field_child1:0 +msgid "Field child1" +msgstr "Field child1" + +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Field Selection" +msgstr "Field Selection" + +#. module: base +#: selection:res.request,state:0 +msgid "draft" +msgstr "draft" + +#. module: base +#: field:res.currency,date:0 +#: field:res.currency.rate,name:0 +#: field:res.partner,date:0 +#: field:res.partner.event,date:0 +#: field:res.request,date_sent:0 +msgid "Date" +msgstr "Date" + +#. module: base +#: field:ir.actions.report.xml,report_sxw:0 +msgid "SXW path" +msgstr "SXW path" + +#. module: base +#: view:ir.attachment:0 +#: field:ir.attachment,datas:0 +msgid "Data" +msgstr "Data" + +#. module: base +#: view:res.users:0 +msgid "Groups are used to defined access rights on each screen and menu." +msgstr "Groups are used to defined access rights on each screen and menu." + +#. module: base +#: field:ir.ui.menu,parent_id:0 +#: field:wizard.ir.model.menu.create,menu_id:0 +msgid "Parent Menu" +msgstr "Parent Menu" + +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.custom,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." + +#. module: base +#: model:ir.ui.menu,name:base.menu_custom_multicompany +msgid "Multi company" +msgstr "Multi company" + +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "Attached To" + +#. module: base +#: field:res.lang,decimal_point:0 +msgid "Decimal Separator" +msgstr "Decimal Separator" + +#. module: base +#: view:res.partner:0 +#: view:res.request:0 +#: field:res.request,history:0 +msgid "History" +msgstr "History" + +#. module: base +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "Creator" + +#. module: base +#: model:res.country,name:base.mx +msgid "Mexico" +msgstr "Mexico" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Swedish / svenska" +msgstr "Swedish / svenska" + +#. module: base +#: field:res.company,child_ids:0 +msgid "Child Companies" +msgstr "Child Companies" + +#. module: base +#: model:ir.model,name:base.model_res_users +msgid "res.users" +msgstr "res.users" + +#. module: base +#: model:res.country,name:base.ni +msgid "Nicaragua" +msgstr "Nicaragua" + +#. module: base +#: view:res.partner.event:0 +msgid "General Description" +msgstr "General Description" + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Sale Opportunity" +msgstr "Sale Opportunity" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "Maintenance contract added !" +msgstr "Maintenance contract added !" + +#. module: base +#: field:ir.rule,field_id:0 +#: selection:ir.translation,type:0 +#: field:multi_company.default,field_id:0 +msgid "Field" +msgstr "Field" + +#. module: base +#: model:res.country,name:base.ve +msgid "Venezuela" +msgstr "Venezuela" + +#. module: base +#: view:res.lang:0 +msgid "9. %j ==> 340" +msgstr "9. %j ==> 340" + +#. module: base +#: model:res.country,name:base.zm +msgid "Zambia" +msgstr "Zambia" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_report_xml +#: model:ir.ui.menu,name:base.menu_ir_action_report_xml +msgid "Report Xml" +msgstr "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 "" +"The internal user that is in charge of communicating with this partner if " +"any." + +#. module: base +#: field:res.partner,parent_id:0 +msgid "Parent Partner" +msgstr "Parent Partner" + +#. module: base +#: view:ir.module.module:0 +msgid "Cancel Upgrade" +msgstr "Cancel Upgrade" + +#. module: base +#: model:res.country,name:base.ci +msgid "Ivory Coast (Cote D'Ivoire)" +msgstr "Ivory Coast (Cote D'Ivoire)" + +#. module: base +#: model:res.country,name:base.kz +msgid "Kazakhstan" +msgstr "Kazakhstan" + +#. module: base +#: field:ir.actions.report.xml,name:0 +#: field:ir.actions.todo,name:0 +#: field:ir.cron,name:0 +#: field:ir.model.access,name:0 +#: field:ir.model.fields,name:0 +#: field:ir.module.category,name:0 +#: field:ir.module.module,name:0 +#: field:ir.module.module.dependency,name:0 +#: rml:ir.module.reference:0 +#: field:ir.module.repository,name:0 +#: field:ir.property,name:0 +#: field:ir.report.custom.fields,name:0 +#: field:ir.values,name:0 +#: field:maintenance.contract.module,name:0 +#: field:res.bank,name:0 +#: field:res.config.view,name:0 +#: field:res.lang,name:0 +#: field:res.partner,name:0 +#: field:res.partner.bank.type,name:0 +#: field:res.request.link,name:0 +#: field:res.users,name:0 +#: field:workflow,name:0 +#: field:workflow.activity,name:0 +msgid "Name" +msgstr "Name" + +#. module: base +#: model:res.country,name:base.ms +msgid "Montserrat" +msgstr "Montserrat" + +#. module: base +#: model:ir.ui.menu,name:base.menu_translation_app +msgid "Application Terms" +msgstr "Application Terms" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Average" +msgstr "Calculate Average" + +#. module: base +#: field:ir.module.module,demo:0 +msgid "Demo data" +msgstr "Demo data" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "English (UK)" +msgstr "English (UK)" + +#. module: base +#: model:res.country,name:base.aq +msgid "Antarctica" +msgstr "Antarctica" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_3 +msgid "Starter Partner" +msgstr "Starter Partner" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window_view +msgid "ir.actions.act_window.view" +msgstr "ir.actions.act_window.view" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Web" +msgstr "Web" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "English (CA)" +msgstr "English (CA)" + +#. module: base +#: field:res.partner.event,planned_revenue:0 +msgid "Planned Revenue" +msgstr "Planned Revenue" + +#. 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 "" +"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:" + +#. module: base +#: model:res.country,name:base.et +msgid "Ethiopia" +msgstr "Ethiopia" + +#. module: base +#: view:res.lang:0 +msgid "%H - Hour (24-hour clock) as a decimal number [00,23]." +msgstr "%H - Hour (24-hour clock) as a decimal number [00,23]." + +#. module: base +#: view:res.roles:0 +msgid "Role" +msgstr "Role" + +#. module: base +#: help:res.country.state,code:0 +msgid "The state code in three chars.\n" +msgstr "The state code in three chars.\n" + +#. module: base +#: model:res.country,name:base.sj +msgid "Svalbard and Jan Mayen Islands" +msgstr "Svalbard and Jan Mayen Islands" + +#. module: base +#: view:ir.rule:0 +msgid "Test" +msgstr "Test" + +#. module: base +#: field:ir.report.custom.fields,groupby:0 +msgid "Group By" +msgstr "Group By" + +#. 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' contains too many dots. XML ids should not contain dots ! These are " +"used to refer to other modules data, as in module.reference_id" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_WARNING" +msgstr "STOCK_DIALOG_WARNING" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_IN" +msgstr "STOCK_ZOOM_IN" + +#. module: base +#: selection:res.request,state:0 +msgid "closed" +msgstr "closed" + +#. module: base +#: selection:wizard.module.lang.export,state:0 +msgid "get" +msgstr "get" + +#. module: base +#: help:ir.model.fields,on_delete:0 +msgid "On delete property for many2one fields" +msgstr "On delete property for many2one fields" + +#. module: base +#: field:ir.actions.server,write_id:0 +msgid "Write Id" +msgstr "Write Id" + +#. module: base +#: field:ir.actions.act_window,domain:0 +msgid "Domain Value" +msgstr "Domain Value" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ITALIC" +msgstr "STOCK_ITALIC" + +#. module: base +#: view:ir.actions.server:0 +msgid "SMS Configuration" +msgstr "SMS Configuration" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_access_act +#: model:ir.ui.menu,name:base.menu_ir_access_act +msgid "Access Controls List" +msgstr "Access Controls List" + +#. module: base +#: model:res.country,name:base.um +msgid "USA Minor Outlying Islands" +msgstr "USA Minor Outlying Islands" + +#. module: base +#: field:res.partner.bank,state:0 +#: field:res.partner.bank.type.field,bank_type_id:0 +msgid "Bank Type" +msgstr "Bank Type" + +#. module: base +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "The name of the group can not start with \"-\"" +msgstr "The name of the group can not start with \"-\"" + +#. module: base +#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 +msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." +msgstr "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." + +#. module: base +#: view:ir.ui.view_sc:0 +#: field:res.partner.title,shortcut:0 +msgid "Shortcut" +msgstr "Shortcut" + +#. module: base +#: field:ir.model.data,date_init:0 +msgid "Init Date" +msgstr "Init Date" + +#. module: base +#: field:workflow.activity,flow_start:0 +msgid "Flow Start" +msgstr "Flow Start" + +#. module: base +#: view:ir.model:0 +#: view:ir.model.fields:0 +msgid "Security on Groups" +msgstr "Security on Groups" + +#. module: base +#: view:res.partner.bank:0 +msgid "Bank Account Owner" +msgstr "Bank Account Owner" + +#. module: base +#: model:ir.actions.act_window,name:base.act_values_form +#: model:ir.ui.menu,name:base.menu_values_form +msgid "Client Actions Connections" +msgstr "Client Actions Connections" + +#. module: base +#: field:ir.ui.view_sc,resource:0 +msgid "Resource Name" +msgstr "Resource Name" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Hours" +msgstr "Hours" + +#. module: base +#: model:res.country,name:base.gp +msgid "Guadeloupe (French)" +msgstr "Guadeloupe (French)" + +#. module: base +#: field:ir.report.custom.fields,cumulate:0 +msgid "Accumulate" +msgstr "Accumulate" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Tree can only be used in tabular reports" +msgstr "Tree can only be used in tabular reports" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Directory" +msgstr "Directory" + +#. module: base +#: field:wizard.ir.model.menu.create,name:0 +msgid "Menu Name" +msgstr "Menu Name" + +#. module: base +#: field:ir.report.custom,title:0 +msgid "Report Title" +msgstr "Report Title" + +#. module: base +#: field:ir.report.custom.fields,fontcolor:0 +msgid "Font color" +msgstr "Font colour" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SORT_DESCENDING" +msgstr "STOCK_SORT_DESCENDING" + +#. module: base +#: model:res.country,name:base.my +msgid "Malaysia" +msgstr "Malaysia" + +#. module: base +#: model:ir.model,name:base.model_res_request_history +msgid "res.request.history" +msgstr "res.request.history" + +#. module: base +#: view:ir.actions.server:0 +msgid "Client Action Configuration" +msgstr "Client Action Configuration" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_address_form +#: model:ir.model,name:base.model_res_partner_address +#: model:ir.ui.menu,name:base.menu_partner_address_form +#: view:res.partner.address:0 +msgid "Partner Addresses" +msgstr "Partner Addresses" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Indonesian / Bahasa Indonesia" +msgstr "Indonesian / Bahasa Indonesia" + +#. module: base +#: model:res.country,name:base.cv +msgid "Cape Verde" +msgstr "Cape Verde" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "" +"Some installed modules depend on the module you plan to Uninstall :\n" +" %s" +msgstr "" +"Some installed modules depend on the module you plan to Uninstall :\n" +" %s" + +#. module: base +#: model:ir.actions.act_window,name:base.act_res_partner_event +#: field:res.partner,events:0 +#: field:res.partner.event,name:0 +msgid "Events" +msgstr "Events" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_roles +#: model:ir.ui.menu,name:base.menu_action_res_roles +msgid "Roles Structure" +msgstr "Roles Structure" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.url" +msgstr "ir.actions.url" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_STOP" +msgstr "STOCK_MEDIA_STOP" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DND_MULTIPLE" +msgstr "STOCK_DND_MULTIPLE" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_addess_tree +#: view:res.partner:0 +msgid "Partner Contacts" +msgstr "Partner Contacts" + +#. module: base +#: wizard_field:module.module.update,update,add:0 +msgid "Number of modules added" +msgstr "Number of modules added" + +#. module: base +#: field:workflow.transition,role_id:0 +msgid "Role Required" +msgstr "Role Required" + +#. module: base +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Created Menus" + +#. module: base +#: field:workflow.triggers,workitem_id:0 +msgid "Workitem" +msgstr "Workitem" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_AUTHENTICATION" +msgstr "STOCK_DIALOG_AUTHENTICATION" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_OUT" +msgstr "STOCK_ZOOM_OUT" + +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "Action" + +#. module: base +#: view:ir.actions.server:0 +msgid "Email Configuration" +msgstr "E-mail Configuration" + +#. module: base +#: model:ir.model,name:base.model_ir_cron +msgid "ir.cron" +msgstr "ir.cron" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-mrp" +msgstr "terp-mrp" + +#. module: base +#: field:ir.actions.server,trigger_obj_id:0 +msgid "Trigger On" +msgstr "Trigger On" + +#. module: base +#: model:res.country,name:base.fj +msgid "Fiji" +msgstr "Fiji" + +#. module: base +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "Size" + +#. module: base +#: model:res.country,name:base.sd +msgid "Sudan" +msgstr "Sudan" + +#. module: base +#: view:res.lang:0 +msgid "%m - Month as a decimal number [01,12]." +msgstr "%m - Month as a decimal number [01,12]." + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export Data" +msgstr "Export Data" + +#. module: base +#: model:res.country,name:base.fm +msgid "Micronesia" +msgstr "Micronesia" + +#. module: base +#: view:res.request.history:0 +msgid "Request History" +msgstr "Request History" + +#. module: base +#: field:ir.actions.act_window,menus:0 +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" +msgstr "Menus" + +#. module: base +#: model:res.country,name:base.il +msgid "Israel" +msgstr "Israel" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_server_action_create +msgid "Create Action" +msgstr "Create Action" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "HTML from HTML" +msgstr "HTML from HTML" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "html" +msgstr "html" + +#. module: base +#: field:res.lang,time_format:0 +msgid "Time Format" +msgstr "Time Format" + +#. module: base +#: wizard_view:module.upgrade,next:0 +msgid "Your system will be upgraded." +msgstr "Your system will be upgraded." + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "Defined Reports" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-tools" +msgstr "terp-tools" + +#. module: base +#: view:ir.actions.report.xml:0 +msgid "Report xml" +msgstr "Report xml" + +#. module: base +#: model:ir.actions.act_window,name:base.action_module_open_categ +#: model:ir.actions.act_window,name:base.open_module_tree +#: view:ir.module.module:0 +#: model:ir.ui.menu,name:base.menu_module_tree +#: field:wizard.module.lang.export,modules:0 +msgid "Modules" +msgstr "Modules" + +#. module: base +#: selection:workflow.activity,kind:0 +#: field:workflow.activity,subflow_id:0 +#: field:workflow.workitem,subflow_id:0 +msgid "Subflow" +msgstr "Subflow" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDO" +msgstr "STOCK_UNDO" + +#. module: base +#: field:workflow.transition,signal:0 +msgid "Signal (button Name)" +msgstr "Signal (button Name)" + +#. module: base +#: view:res.bank:0 +#: field:res.partner,bank_ids:0 +msgid "Banks" +msgstr "Banks" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-sale" +msgstr "terp-sale" + +#. module: base +#: view:res.lang:0 +msgid "%d - Day of the month as a decimal number [01,31]." +msgstr "%d - Day of the month as a decimal number [01,31]." + +#. module: base +#: view:res.lang:0 +msgid "%I - Hour (12-hour clock) as a decimal number [01,12]." +msgstr "%I - Hour (12-hour clock) as a decimal number [01,12]." + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Romanian / limba română" +msgstr "Romanian / limba română" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ADD" +msgstr "STOCK_ADD" + +#. module: base +#: field:ir.cron,doall:0 +msgid "Repeat Missed" +msgstr "Repeat Missed" + +#. module: base +#: help:ir.actions.server,state:0 +msgid "Type of the Action that is to be executed" +msgstr "Type of the Action that is to be executed" + +#. module: base +#: field:ir.server.object.lines,server_id:0 +msgid "Object Mapping" +msgstr "Object Mapping" + +#. 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 "The rate of the currency to the currency of rate 1" + +#. module: base +#: model:res.country,name:base.uk +msgid "United Kingdom" +msgstr "United Kingdom" + +#. module: base +#: view:ir.actions.server:0 +msgid "Create / Write" +msgstr "Create / Write" + +#. module: base +#: help:res.partner.category,active:0 +msgid "The active field allows you to hide the category without removing it." +msgstr "" +"The active field allows you to hide the category without removing it." + +#. module: base +#: rml:ir.module.reference:0 +msgid "Object:" +msgstr "Object:" + +#. module: base +#: model:res.country,name:base.bw +msgid "Botswana" +msgstr "Botswana" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title_partner +#: model:ir.ui.menu,name:base.menu_partner_title_partner +#: view:res.partner.title:0 +msgid "Partner Titles" +msgstr "Partner Titles" + +#. module: base +#: selection:ir.actions.todo,type:0 +msgid "Service" +msgstr "Service" + +#. module: base +#: help:ir.actions.act_window,auto_refresh:0 +msgid "Add an auto-refresh on the view" +msgstr "Add an auto-refresh on the view" + +#. module: base +#: wizard_view:module.upgrade,next:0 +#: wizard_field:module.upgrade,next,module_download:0 +msgid "Modules to download" +msgstr "Modules to download" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_workitem_form +#: model:ir.ui.menu,name:base.menu_workflow_workitem +msgid "Workitems" +msgstr "Workitems" + +#. module: base +#: field:wizard.module.lang.export,advice:0 +msgid "Advice" +msgstr "Advice" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Lithuanian / Lietuvių kalba" +msgstr "Lithuanian / Lietuvių kalba" + +#. module: base +#: help:ir.actions.server,record_id:0 +msgid "" +"Provide the field name where the record id is stored after the create " +"operations. If it is empty, you can not track the new record." +msgstr "" +"Provide the field name where the record id is stored after the create " +"operations. If it is empty, you can not track the new record." + +#. module: base +#: field:ir.ui.view,inherit_id:0 +msgid "Inherited View" +msgstr "Inherited View" + +#. module: base +#: model:ir.model,name:base.model_ir_translation +msgid "ir.translation" +msgstr "ir.translation" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_install +#: model:ir.ui.menu,name:base.menu_module_tree_install +msgid "Installed modules" +msgstr "Installed modules" + +#. module: base +#: model:res.country,name:base.lc +msgid "Saint Lucia" +msgstr "Saint Lucia" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +#: view:maintenance.contract:0 +msgid "Maintenance Contract" +msgstr "Maintenance Contract" + +#. module: base +#: help:ir.actions.server,trigger_obj_id:0 +msgid "Select the object from the model on which the workflow will executed." +msgstr "" +"Select the object from the model on which the workflow will executed." + +#. module: base +#: field:ir.model,state:0 +#: field:ir.model.fields,state:0 +#: field:ir.model.grid,state:0 +msgid "Manually Created" +msgstr "Manually Created" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Count" +msgstr "Calculate Count" + +#. module: base +#: field:ir.model.access,perm_create:0 +msgid "Create Access" +msgstr "Create Access" + +#. module: base +#: field:res.partner.address,state_id:0 +msgid "Fed. State" +msgstr "Fed. State" + +#. module: base +#: model:res.country,name:base.io +msgid "British Indian Ocean Territory" +msgstr "British Indian Ocean Territory" + +#. module: base +#: view:ir.actions.server:0 +msgid "Field Mapping" +msgstr "Field Mapping" + +#. module: base +#: field:maintenance.contract,date_start:0 +msgid "Starting Date" +msgstr "Starting Date" + +#. module: base +#: view:ir.model:0 +#: field:ir.model.fields,ttype:0 +msgid "Field Type" +msgstr "Field Type" + +#. module: base +#: field:res.country.state,code:0 +msgid "State Code" +msgstr "State Code" + +#. module: base +#: field:ir.model.fields,on_delete:0 +msgid "On delete" +msgstr "On delete" + +#. module: base +#: selection:res.lang,direction:0 +msgid "Left-to-Right" +msgstr "Left-to-Right" + +#. module: base +#: field:res.lang,translatable:0 +msgid "Translatable" +msgstr "Translatable" + +#. module: base +#: model:res.country,name:base.vn +msgid "Vietnam" +msgstr "Vietnam" + +#. module: base +#: field:res.users,signature:0 +msgid "Signature" +msgstr "Signature" + +#. module: base +#: field:res.partner.category,complete_name:0 +msgid "Full Name" +msgstr "Full Name" + +#. module: base +#: model:res.country,name:base.mz +msgid "Mozambique" +msgstr "Mozambique" + +#. module: base +#: model:ir.actions.act_window,name:base.grant_menu_access +#: model:ir.ui.menu,name:base.menu_grant_menu_access +msgid "Manage Menus" +msgstr "Manage Menus" + +#. module: base +#: field:ir.actions.server,message:0 +#: wizard_field:res.partner.spam_send,init,text:0 +msgid "Message" +msgstr "Message" + +#. module: base +#: field:ir.actions.act_window.view,multi:0 +msgid "On Multiple Doc." +msgstr "On Multiple Doc." + +#. module: base +#: model:ir.ui.menu,name:base.menu_base_config_contact +#: field:res.partner,address:0 +#: view:res.partner.address:0 +msgid "Contacts" +msgstr "Contacts" + +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Faroe Islands" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_upgrade +#: model:ir.ui.menu,name:base.menu_wizard_upgrade +msgid "Apply Scheduled Upgrades" +msgstr "Apply Scheduled Upgrades" + +#. module: base +#: model:ir.ui.menu,name:base.maintenance +msgid "Maintenance" +msgstr "Maintenance" + +#. module: base +#: model:res.country,name:base.mp +msgid "Northern Mariana Islands" +msgstr "Northern Mariana Islands" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "module,type,name,res_id,src,value" + +#. module: base +#: model:ir.ui.menu,name:base.menu_management +msgid "Modules Management" +msgstr "Modules Management" + +#. module: base +#: rml:ir.module.reference:0 +#: field:maintenance.contract.module,version:0 +msgid "Version" +msgstr "Version" + +#. module: base +#: model:ir.model,name:base.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "wizard.ir.model.menu.create" + +#. module: base +#: view:workflow.transition:0 +msgid "Transition" +msgstr "Transition" + +#. module: base +#: field:ir.actions.todo,active:0 +#: field:ir.cron,active:0 +#: field:ir.module.repository,active:0 +#: field:ir.sequence,active:0 +#: field:res.bank,active:0 +#: field:res.currency,active:0 +#: field:res.lang,active:0 +#: field:res.partner,active:0 +#: field:res.partner.address,active:0 +#: field:res.partner.canal,active:0 +#: field:res.partner.category,active:0 +#: field:res.partner.event.type,active:0 +#: field:res.request,active:0 +#: field:res.users,active:0 +msgid "Active" +msgstr "Active" + +#. module: base +#: model:res.country,name:base.na +msgid "Namibia" +msgstr "Namibia" + +#. module: base +#: model:res.country,name:base.mn +msgid "Mongolia" +msgstr "Mongolia" + +#. module: base +#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/maintenance/maintenance.py:0 +#: code:addons/base/module/module.py:0 +#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "Error" +msgstr "Error" + +#. module: base +#: view:res.partner.som:0 +msgid "Partner State of Mind" +msgstr "Partner State of Mind" + +#. module: base +#: selection:ir.ui.view,type:0 +msgid "mdx" +msgstr "mdx" + +#. module: base +#: model:res.country,name:base.bi +msgid "Burundi" +msgstr "Burundi" + +#. module: base +#: wizard_button:base.module.import,import,open_window:0 +#: wizard_button:module.upgrade,end,end:0 +#: wizard_button:module.upgrade,start,end:0 +#: wizard_button:server.action.create,init,end:0 +#: wizard_button:server.action.create,step_1,end:0 +#: view:wizard.module.lang.export:0 +msgid "Close" +msgstr "Close" + +#. module: base +#: model:res.country,name:base.bt +msgid "Bhutan" +msgstr "Bhutan" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_11 +msgid "Textile Suppliers" +msgstr "Textile Suppliers" + +#. module: base +#: selection:ir.actions.url,target:0 +msgid "This Window" +msgstr "This Window" + +#. module: base +#: field:wizard.module.lang.export,format:0 +msgid "File Format" +msgstr "File Format" + +#. module: base +#: field:res.lang,iso_code:0 +msgid "ISO code" +msgstr "ISO code" + +#. module: base +#: model:ir.model,name:base.model_res_config_view +msgid "res.config.view" +msgstr "res.config.view" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_INDENT" +msgstr "STOCK_INDENT" + +#. module: base +#: view:workflow.workitem:0 +msgid "Workflow Workitems" +msgstr "Workflow Workitems" + +#. module: base +#: model:res.country,name:base.vc +msgid "Saint Vincent & Grenadines" +msgstr "Saint Vincent & Grenadines" + +#. module: base +#: field:ir.model.config,password:0 +#: field:maintenance.contract,password:0 +#: field:maintenance.contract.wizard,password:0 +#: wizard_field:res.partner.sms_send,init,password:0 +#: field:res.users,password:0 +msgid "Password" +msgstr "Password" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_fields +#: view:ir.model:0 +#: field:ir.model,field_id:0 +#: model:ir.model,name:base.model_ir_model_fields +#: view:ir.model.fields:0 +#: field:ir.model.grid,field_id:0 +#: field:ir.property,fields_id:0 +#: field:ir.report.custom,fields_child0:0 +#: model:ir.ui.menu,name:base.ir_model_model_fields +msgid "Fields" +msgstr "Fields" + +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "Module successfully imported !" + +#. module: base +#: field:res.company,rml_header2:0 +msgid "RML Internal Header" +msgstr "RML Internal Header" + +#. module: base +#: selection:ir.report.custom,print_format:0 +msgid "a4" +msgstr "a4" + +#. module: base +#: field:ir.actions.act_window,search_view_id:0 +msgid "Search View Ref." +msgstr "Search View Ref." + +#. module: base +#: model:res.partner.bank.type.field,name:base.bank_normal_field +msgid "acc_number" +msgstr "acc_number" + +#. module: base +#: model:res.country,name:base.mm +msgid "Myanmar" +msgstr "Myanmar" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Chinese (CN) / 简体中文" +msgstr "Chinese (CN) / 简体中文" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_NEXT" +msgstr "STOCK_MEDIA_NEXT" + +#. module: base +#: field:res.bank,street:0 +#: field:res.partner.address,street:0 +#: field:res.partner.bank,street:0 +msgid "Street" +msgstr "Street" + +#. module: base +#: model:res.country,name:base.yu +msgid "Yugoslavia" +msgstr "Yugoslavia" + +#. module: base +#: wizard_view:module.upgrade,next:0 +msgid "Note that this operation my take a few minutes." +msgstr "Note that this operation my take a few minutes." + +#. module: base +#: field:ir.model.data,name:0 +msgid "XML Identifier" +msgstr "XML Identifier" + +#. module: base +#: model:res.country,name:base.ca +msgid "Canada" +msgstr "Canada" + +#. module: base +#: field:ir.actions.report.xml,report_name:0 +msgid "Internal Name" +msgstr "Internal Name" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +msgid "Unknown" +msgstr "Unknown" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_users_my +msgid "Change My Preferences" +msgstr "Change My Preferences" + +#. module: base +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "Invalid model name in the action definition." + +#. module: base +#: wizard_field:res.partner.sms_send,init,text:0 +msgid "SMS Message" +msgstr "SMS Message" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_EDIT" +msgstr "STOCK_EDIT" + +#. module: base +#: model:res.country,name:base.cm +msgid "Cameroon" +msgstr "Cameroon" + +#. module: base +#: model:res.country,name:base.bf +msgid "Burkina Faso" +msgstr "Burkina Faso" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_FORWARD" +msgstr "STOCK_MEDIA_FORWARD" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Skipped" +msgstr "Skipped" + +#. module: base +#: selection:ir.model.fields,state:0 +msgid "Custom Field" +msgstr "Custom Field" + +#. module: base +#: model:res.country,name:base.cc +msgid "Cocos (Keeling) Islands" +msgstr "Cocos (Keeling) Islands" + +#. module: base +#: field:workflow.instance,uid:0 +msgid "User ID" +msgstr "User ID" + +#. module: base +#: view:ir.actions.server:0 +msgid "" +"Access all the fields related to the current object using expression in " +"double brackets, i.e.[[ object.partner_id.name ]]" +msgstr "" +"Access all the fields related to the current object using expression in " +"double brackets, i.e.[[ object.partner_id.name ]]" + +#. module: base +#: view:res.lang:0 +msgid "11. %U or %W ==> 48 (49th week)" +msgstr "11. %U or %W ==> 48 (49th week)" + +#. module: base +#: model:ir.model,name:base.model_res_partner_bank_type_field +msgid "Bank type fields" +msgstr "Bank type fields" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "type,name,res_id,src,value" +msgstr "type,name,res_id,src,value" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Dutch / Nederlands" +msgstr "Dutch / Nederlands" + +#. module: base +#: wizard_view:server.action.create,step_1:0 +#: wizard_field:server.action.create,step_1,report:0 +msgid "Select Report" +msgstr "Select Report" + +#. module: base +#: field:ir.report.custom.fields,fc1_condition:0 +#: field:ir.report.custom.fields,fc2_condition:0 +#: field:ir.report.custom.fields,fc3_condition:0 +msgid "condition" +msgstr "condition" + +#. module: base +#: rml:ir.module.reference:0 +msgid "1cm 28cm 20cm 28cm" +msgstr "1cm 28cm 20cm 28cm" + +#. module: base +#: field:ir.sequence,suffix:0 +msgid "Suffix" +msgstr "Suffix" + +#. module: base +#: model:res.country,name:base.mo +msgid "Macau" +msgstr "Macau" + +#. module: base +#: model:ir.actions.report.xml,name:base.res_partner_address_report +msgid "Labels" +msgstr "Labels" + +#. module: base +#: wizard_field:res.partner.spam_send,init,from:0 +msgid "Sender's email" +msgstr "Sender's e-mail" + +#. module: base +#: field:ir.default,field_name:0 +msgid "Object Field" +msgstr "Object Field" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "French (CH) / Français (CH)" +msgstr "French (CH) / Français (CH)" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NEW" +msgstr "STOCK_NEW" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "None" +msgstr "None" + +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "Report Fields" + +#. module: base +#: view:res.partner:0 +msgid "General" +msgstr "General" + +#. module: base +#: field:workflow.transition,act_to:0 +msgid "Destination Activity" +msgstr "Destination Activity" + +#. module: base +#: view:ir.values:0 +msgid "Connect Events to Actions" +msgstr "Connect Events to Actions" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SORT_ASCENDING" +msgstr "STOCK_SORT_ASCENDING" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" +msgstr "STOCK_ABOUT" + +#. module: base +#: field:ir.module.category,parent_id:0 +#: field:res.partner.category,parent_id:0 +msgid "Parent Category" +msgstr "Parent Category" + +#. module: base +#: model:res.country,name:base.fi +msgid "Finland" +msgstr "Finland" + +#. module: base +#: selection:res.partner.address,type:0 +#: selection:res.partner.title,domain:0 +msgid "Contact" +msgstr "Contact" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "ir.ui.menu" + +#. module: base +#: view:ir.module.module:0 +msgid "Cancel Uninstall" +msgstr "Cancel Uninstall" + +#. module: base +#: view:res.bank:0 +#: view:res.partner:0 +#: view:res.partner.address:0 +msgid "Communication" +msgstr "Communication" + +#. module: base +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" +msgstr "ir.server.object.lines" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "Module %s: Invalid Quality Certificate" +msgstr "Module %s: Invalid Quality Certificate" + +#. module: base +#: model:res.country,name:base.kw +msgid "Kuwait" +msgstr "Kuwait" + +#. module: base +#: field:workflow.workitem,inst_id:0 +msgid "Instance" +msgstr "Instance" + +#. module: base +#: help:ir.actions.report.xml,attachment:0 +msgid "" +"This is the filename of the attachment used to store the printing result. " +"Keep empty to not save the printed reports. You can use a python expression " +"with the object and time variables." +msgstr "" +"This is the filename of the attachment used to store the printing result. " +"Keep empty to not save the printed reports. You can use a python expression " +"with the object and time variables." + +#. module: base +#: model:res.country,name:base.ng +msgid "Nigeria" +msgstr "Nigeria" + +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + +#. module: base +#: field:res.company,user_ids:0 +msgid "Accepted Users" +msgstr "Accepted Users" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDERLINE" +msgstr "STOCK_UNDERLINE" + +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "Values for Event Type" + +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Always Searchable" +msgstr "Always Searchable" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" +msgstr "STOCK_CLOSE" + +#. module: base +#: model:res.country,name:base.hk +msgid "Hong Kong" +msgstr "Hong Kong" + +#. module: base +#: help:ir.actions.server,name:0 +msgid "Easy to Refer action by name e.g. One Sales Order -> Many Invoices" +msgstr "Easy to Refer action by name e.g. One Sales Order -> Many Invoices" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_10 +msgid "Scheduler" +msgstr "Scheduler" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_BOLD" +msgstr "STOCK_BOLD" + +#. module: base +#: model:res.country,name:base.ph +msgid "Philippines" +msgstr "Philippines" + +#. module: base +#: model:res.country,name:base.ma +msgid "Morocco" +msgstr "Morocco" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-graph" +msgstr "terp-graph" + +#. module: base +#: view:res.lang:0 +msgid "2. %a ,%A ==> Fri, Friday" +msgstr "2. %a ,%A ==> Fri, Friday" + +#. 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 "" +"The selected language has been successfully installed. You must change the " +"preferences of the user and open a new menu to view changes." + +#. module: base +#: model:ir.model,name:base.model_ir_sequence +msgid "ir.sequence" +msgstr "ir.sequence" + +#. module: base +#: model:ir.model,name:base.model_res_partner_event_type +#: model:ir.ui.menu,name:base.next_id_14 +#: view:res.partner.event:0 +msgid "Partner Events" +msgstr "Partner Events" + +#. module: base +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "workflow.transition" + +#. module: base +#: view:res.lang:0 +msgid "%a - Abbreviated weekday name." +msgstr "%a - Abbreviated weekday name." + +#. module: base +#: rml:ir.module.reference:0 +msgid "Introspection report on objects" +msgstr "Introspection report on objects" + +#. module: base +#: model:res.country,name:base.pf +msgid "Polynesia (French)" +msgstr "Polynesia (French)" + +#. module: base +#: model:res.country,name:base.dm +msgid "Dominica" +msgstr "Dominica" + +#. module: base +#: model:ir.model,name:base.model_res_currency_rate +msgid "Currency Rate" +msgstr "Currency Rate" + +#. module: base +#: model:res.country,name:base.np +msgid "Nepal" +msgstr "Nepal" + +#. module: base +#: field:res.partner.event,event_ical_id:0 +msgid "iCal id" +msgstr "iCal id" + +#. module: base +#: wizard_view:res.partner.sms_send,init:0 +msgid "Bulk SMS send" +msgstr "Bulk SMS send" + +#. module: base +#: view:res.lang:0 +msgid "%Y - Year with century as a decimal number." +msgstr "%Y - Year with century as a decimal number." + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Pie Chart" +msgstr "Pie Chart" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" +msgstr "Seconde: %(sec)s" + +#. module: base +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.partner,ref:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +msgid "Code" +msgstr "Code" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "" +"Can not create the module file:\n" +" %s" +msgstr "" +"Can not create the module file:\n" +" %s" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_update +#: model:ir.ui.menu,name:base.menu_module_update +msgid "Update Modules List" +msgstr "Update Modules List" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Continue" +msgstr "Continue" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Thai / ภาษาไทย" +msgstr "Thai / ภาษาไทย" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_property_form +#: model:ir.ui.menu,name:base.menu_ir_property_form +msgid "Default Properties" +msgstr "Default Properties" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Slovenian / slovenščina" +msgstr "Slovenian / slovenščina" + +#. module: base +#: field:ir.actions.report.xml,attachment_use:0 +msgid "Reload from Attachment" +msgstr "Reload from Attachment" + +#. module: base +#: model:res.country,name:base.bv +msgid "Bouvet Island" +msgstr "Bouvet Island" + +#. module: base +#: field:ir.report.custom,print_orientation:0 +msgid "Print orientation" +msgstr "Print orientation" + +#. module: base +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export a Translation File" +msgstr "Export a Translation File" + +#. module: base +#: field:ir.attachment,name:0 +msgid "Attachment Name" +msgstr "Attachment Name" + +#. module: base +#: wizard_field:module.lang.import,init,data:0 +#: field:wizard.module.lang.export,data:0 +msgid "File" +msgstr "File" + +#. module: base +#: view:res.users:0 +msgid "Add User" +msgstr "Add User" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" +msgstr "ir.actions.configuration.wizard" + +#. module: base +#: view:res.lang:0 +msgid "%b - Abbreviated month name." +msgstr "%b - Abbreviated month name." + +#. module: base +#: field:res.partner,supplier:0 +#: model:res.partner.category,name:base.res_partner_category_8 +msgid "Supplier" +msgstr "Supplier" + +#. module: base +#: view:ir.actions.server:0 +#: selection:ir.actions.server,state:0 +msgid "Multi Actions" +msgstr "Multi Actions" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Close" +msgstr "_Close" + +#. module: base +#: selection:maintenance.contract,kind:0 +msgid "Full" +msgstr "Full" + +#. module: base +#: model:res.country,name:base.as +msgid "American Samoa" +msgstr "American Samoa" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_model +#: model:ir.model,name:base.model_ir_model +#: model:ir.ui.menu,name:base.ir_model_model_menu +msgid "Objects" +msgstr "Objects" + +#. module: base +#: field:ir.model.fields,selectable:0 +msgid "Selectable" +msgstr "Selectable" + +#. module: base +#: view:res.request.link:0 +msgid "Request Link" +msgstr "Request Link" + +#. module: base +#: field:ir.module.module,url:0 +#: field:ir.module.repository,url:0 +msgid "URL" +msgstr "URL" + +#. module: base +#: help:res.country,name:0 +msgid "The full name of the country." +msgstr "The full name of the country." + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Iteration" +msgstr "Iteration" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" +msgstr "terp-stock" + +#. module: base +#: model:res.country,name:base.ae +msgid "United Arab Emirates" +msgstr "United Arab Emirates" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_RECORD" +msgstr "STOCK_MEDIA_RECORD" + +#. module: base +#: model:res.country,name:base.re +msgid "Reunion (French)" +msgstr "Reunion (French)" + +#. module: base +#: model:res.country,name:base.cz +msgid "Czech Republic" +msgstr "Czech Republic" + +#. module: base +#: model:res.country,name:base.sb +msgid "Solomon Islands" +msgstr "Solomon Islands" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "AccessError" +msgstr "AccessError" + +#. module: base +#: view:res.lang:0 +msgid "8. %I:%M:%S %p ==> 06:25:20 PM" +msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" + +#. module: base +#: view:ir.translation:0 +#: model:ir.ui.menu,name:base.menu_translation +msgid "Translations" +msgstr "Translations" + +#. module: base +#: field:ir.sequence,padding:0 +msgid "Number padding" +msgstr "Number padding" + +#. module: base +#: model:res.country,name:base.ua +msgid "Ukraine" +msgstr "Ukraine" + +#. module: base +#: model:res.country,name:base.to +msgid "Tonga" +msgstr "Tonga" + +#. module: base +#: model:ir.model,name:base.model_ir_module_category +#: view:ir.module.category:0 +msgid "Module Category" +msgstr "Module Category" + +#. module: base +#: model:res.country,name:base.us +msgid "United States" +msgstr "United States" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Reference Guide" +msgstr "Reference Guide" + +#. module: base +#: model:res.country,name:base.ml +msgid "Mali" +msgstr "Mali" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNINDENT" +msgstr "STOCK_UNINDENT" + +#. module: base +#: field:ir.cron,interval_number:0 +msgid "Interval Number" +msgstr "Interval Number" + +#. module: base +#: selection:maintenance.contract,kind:0 +msgid "Partial" +msgstr "Partial" + +#. module: base +#: model:res.country,name:base.tk +msgid "Tokelau" +msgstr "Tokelau" + +#. module: base +#: field:ir.actions.report.xml,report_xsl:0 +msgid "XSL path" +msgstr "XSL path" + +#. module: base +#: model:res.country,name:base.bn +msgid "Brunei Darussalam" +msgstr "Brunei Darussalam" + +#. module: base +#: field:ir.actions.act_window,view_type:0 +#: field:ir.actions.act_window.view,view_mode:0 +#: field:ir.ui.view,type:0 +#: field:wizard.ir.model.menu.create.line,view_type:0 +msgid "View Type" +msgstr "View Type" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_2 +msgid "User Interface" +msgstr "User Interface" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_INFO" +msgstr "STOCK_DIALOG_INFO" + +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "Date Created" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" +msgstr "ir.actions.todo" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Get file" +msgstr "Get file" + +#. module: base +#: wizard_view:module.module.update,init:0 +msgid "" +"This function will check for new modules in the 'addons' path and on module " +"repositories:" +msgstr "" +"This function will check for new modules in the 'addons' path and on module " +"repositories:" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_BACK" +msgstr "STOCK_GO_BACK" + +#. module: base +#: view:ir.actions.act_window:0 +msgid "General Settings" +msgstr "General Settings" + +#. module: base +#: model:ir.ui.menu,name:base.custom_shortcuts +msgid "Custom Shortcuts" +msgstr "Custom Shortcuts" + +#. module: base +#: model:res.country,name:base.dz +msgid "Algeria" +msgstr "Algeria" + +#. module: base +#: model:res.country,name:base.be +msgid "Belgium" +msgstr "Belgium" + +#. module: base +#: field:ir.translation,lang:0 +#: wizard_field:module.lang.install,init,lang:0 +#: field:res.partner,lang:0 +#: field:res.users,context_lang:0 +#: field:wizard.module.lang.export,lang:0 +#: field:wizard.module.update_translations,lang:0 +msgid "Language" +msgstr "Language" + +#. module: base +#: model:res.country,name:base.gm +msgid "Gambia" +msgstr "Gambia" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_company_form +#: model:ir.ui.menu,name:base.menu_action_res_company_form +#: model:ir.ui.menu,name:base.menu_res_company_global +#: view:res.company:0 +msgid "Companies" +msgstr "Companies" + +#. module: base +#: view:ir.actions.server:0 +#: field:ir.actions.server,code:0 +#: selection:ir.actions.server,state:0 +msgid "Python Code" +msgstr "Python Code" + +#. module: base +#: code:addons/base/module/wizard/wizard_module_import.py:0 +#, python-format +msgid "Can not create the module file: %s !" +msgstr "Can not create the module file: %s !" + +#. module: base +#: model:ir.module.module,description:base.module_meta_information +msgid "The kernel of OpenERP, needed for all installation." +msgstr "The kernel of OpenERP, needed for all installation." + +#. module: base +#: wizard_button:base.module.import,init,end:0 +#: selection:ir.actions.todo,state:0 +#: wizard_button:module.lang.import,init,end:0 +#: wizard_button:module.lang.install,init,end:0 +#: wizard_button:module.module.update,init,end:0 +#: wizard_button:module.upgrade,next,end:0 +#: wizard_button:res.partner.sms_send,init,end:0 +#: wizard_button:res.partner.spam_send,init,end:0 +#: view:wizard.ir.model.menu.create:0 +#: view:wizard.module.lang.export:0 +#: view:wizard.module.update_translations:0 +msgid "Cancel" +msgstr "Cancel" + +#. module: base +#: code:addons/base/ir/ir_actions.py:0 +#, python-format +msgid "Please specify server option --smtp-from !" +msgstr "Please specify server option --smtp-from !" + +#. module: base +#: selection:wizard.module.lang.export,format:0 +msgid "PO File" +msgstr "PO File" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" +msgstr "STOCK_SPELL_CHECK" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_category +#: model:ir.ui.menu,name:base.menu_partner_category_main +msgid "Partners by Categories" +msgstr "Partners by Categories" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_9 +msgid "Components Supplier" +msgstr "Components Supplier" + +#. module: base +#: field:ir.actions.act_window,default_user_ids:0 +#: model:ir.actions.act_window,name:base.action_res_users +#: field:ir.actions.todo,users_id:0 +#: field:ir.default,uid:0 +#: model:ir.ui.menu,name:base.menu_action_res_users +#: model:ir.ui.menu,name:base.menu_users +#: view:res.groups:0 +#: field:res.groups,users:0 +#: field:res.roles,users:0 +#: view:res.users:0 +msgid "Users" +msgstr "Users" + +#. module: base +#: field:ir.module.module,published_version:0 +msgid "Published Version" +msgstr "Published Version" + +#. module: base +#: model:res.country,name:base.is +msgid "Iceland" +msgstr "Iceland" + +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "Roles are used to defined available actions, provided by workflows." + +#. module: base +#: model:res.country,name:base.de +msgid "Germany" +msgstr "Germany" + +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "Week of the year: %(woy)s" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_14 +msgid "Bad customers" +msgstr "Bad customers" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HARDDISK" +msgstr "STOCK_HARDDISK" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "Reports :" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_APPLY" +msgstr "STOCK_APPLY" + +#. module: base +#: model:ir.actions.act_window,name:base.action_maintenance_contract_form +#: model:ir.ui.menu,name:base.menu_maintenance_contract +msgid "Your Maintenance Contracts" +msgstr "Your Maintenance Contracts" + +#. module: base +#: view:res.users:0 +msgid "" +"Please note that you will have to logout and relog if you change your " +"password." +msgstr "" +"Please note that you will have to logout and relog if you change your " +"password." + +#. module: base +#: model:res.country,name:base.gy +msgid "Guyana" +msgstr "Guyana" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3" +msgstr "GPL-3" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-2" +msgstr "GPL-2" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Portugese (BR) / português (BR)" +msgstr "Portugese (BR) / português (BR)" + +#. module: base +#: field:ir.actions.server,record_id:0 +msgid "Create Id" +msgstr "Create Id" + +#. module: base +#: model:res.country,name:base.hn +msgid "Honduras" +msgstr "Honduras" + +#. module: base +#: model:res.country,name:base.eg +msgid "Egypt" +msgstr "Egypt" + +#. module: base +#: help:ir.actions.server,model_id:0 +msgid "" +"Select the object on which the action will work (read, write, create)." +msgstr "" +"Select the object on which the action will work (read, write, create)." + +#. module: base +#: view:ir.model:0 +msgid "Fields Description" +msgstr "Fields Description" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CDROM" +msgstr "STOCK_CDROM" + +#. module: base +#: field:ir.model.fields,readonly:0 +#: field:res.partner.bank.type.field,readonly:0 +msgid "Readonly" +msgstr "Readonly" + +#. module: base +#: field:res.partner.event,type:0 +msgid "Type of Event" +msgstr "Type of Event" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_type +#: model:ir.ui.menu,name:base.menu_ir_sequence_type +msgid "Sequence Types" +msgstr "Sequence Types" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "To be installed" +msgstr "To be installed" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_meta_information +#: field:res.currency,base:0 +msgid "Base" +msgstr "Base" + +#. module: base +#: model:res.country,name:base.lr +msgid "Liberia" +msgstr "Liberia" + +#. module: base +#: view:ir.attachment:0 +#: view:ir.model:0 +#: view:res.groups:0 +#: view:res.partner:0 +#: field:res.partner,comment:0 +#: field:res.partner.function,ref:0 +msgid "Notes" +msgstr "Notes" + +#. module: base +#: field:ir.property,value:0 +#: selection:ir.server.object.lines,type:0 +#: field:ir.server.object.lines,value:0 +#: field:ir.values,value:0 +#: field:ir.values,value_unpickle:0 +msgid "Value" +msgstr "Value" + +#. module: base +#: view:wizard.module.update_translations:0 +msgid "Update Translations" +msgstr "Update Translations" + +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "Set" + +#. module: base +#: model:res.country,name:base.mc +msgid "Monaco" +msgstr "Monaco" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Minutes" +msgstr "Minutes" + +#. module: base +#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 +msgid "The modules have been upgraded / installed !" +msgstr "The modules have been upgraded / installed !" + +#. module: base +#: selection:ir.translation,type:0 +#: view:wizard.module.lang.export:0 +msgid "Help" +msgstr "Help" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" + +#. module: base +#: wizard_button:server.action.create,step_1,create:0 +msgid "Create" +msgstr "Create" + +#. module: base +#: field:ir.exports,export_fields:0 +msgid "Export ID" +msgstr "Export ID" + +#. module: base +#: model:res.country,name:base.fr +msgid "France" +msgstr "France" + +#. module: base +#: field:workflow.activity,flow_stop:0 +msgid "Flow Stop" +msgstr "Flow Stop" + +#. module: base +#: model:res.country,name:base.ar +msgid "Argentina" +msgstr "Argentina" + +#. module: base +#: model:res.country,name:base.af +msgid "Afghanistan, Islamic State of" +msgstr "Afghanistan, Islamic State of" + +#. module: base +#: code:addons/base/module/wizard/wizard_module_import.py:0 +#, python-format +msgid "Error !" +msgstr "Error !" + +#. module: base +#: model:res.partner.bank.type.field,name:base.bank_normal_field_contry +msgid "country_id" +msgstr "country_id" + +#. module: base +#: field:ir.cron,interval_type:0 +msgid "Interval Unit" +msgstr "Interval Unit" + +#. module: base +#: field:maintenance.contract,kind:0 +#: field:workflow.activity,kind:0 +msgid "Kind" +msgstr "Kind" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" +msgstr "Manual" + +#. module: base +#: field:res.bank,fax:0 +#: field:res.partner.address,fax:0 +msgid "Fax" +msgstr "Fax" + +#. module: base +#: field:res.lang,thousands_sep:0 +msgid "Thousands Separator" +msgstr "Thousands Separator" + +#. module: base +#: field:res.request,create_date:0 +msgid "Created Date" +msgstr "Created Date" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Line Plot" +msgstr "Line Plot" + +#. module: base +#: help:ir.actions.server,loop_action:0 +msgid "" +"Select the action that will be executed. Loop action will not be avaliable " +"inside loop." +msgstr "" +"Select the action that will be executed. Loop action will not be avaliable " +"inside loop." + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Chinese (TW) / 正體字" +msgstr "Chinese (TW) / 正體字" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_UP" +msgstr "STOCK_GO_UP" + +#. module: base +#: model:ir.model,name:base.model_res_request +msgid "res.request" +msgstr "res.request" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "pdf" +msgstr "pdf" + +#. module: base +#: field:ir.default,company_id:0 +#: field:ir.property,company_id:0 +#: field:ir.sequence,company_id:0 +#: field:ir.values,company_id:0 +#: view:res.company:0 +#: field:res.currency,company_id:0 +#: field:res.partner,company_id:0 +#: field:res.partner.address,company_id:0 +#: view:res.users:0 +#: field:res.users,company:0 +#: field:res.users,company_id:0 +msgid "Company" +msgstr "Company" + +#. module: base +#: model:res.country,name:base.pa +msgid "Panama" +msgstr "Panama" + +#. module: base +#: selection:ir.report.custom,state:0 +msgid "Unsubscribed" +msgstr "Unsubscribed" + +#. module: base +#: view:ir.attachment:0 +msgid "Preview" +msgstr "Preview" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Skip Step" +msgstr "Skip Step" + +#. module: base +#: model:res.country,name:base.pn +msgid "Pitcairn Island" +msgstr "Pitcairn Island" + +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_event_type-act +#: model:ir.ui.menu,name:base.menu_res_partner_event_type-act +msgid "Active Partner Events" +msgstr "Active Partner Events" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_function_form +#: model:ir.ui.menu,name:base.menu_partner_function_form +#: view:res.partner.function:0 +msgid "Contact Functions" +msgstr "Contact Functions" + +#. module: base +#: view:multi_company.default:0 +msgid "Multi Company" +msgstr "Multi Company" + +#. module: base +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" +msgstr "Day of the year: %(doy)s" + +#. module: base +#: model:res.country,name:base.nt +msgid "Neutral Zone" +msgstr "Neutral Zone" + +#. module: base +#: view:ir.model:0 +#: view:ir.model.fields:0 +#: view:ir.property:0 +#: model:ir.ui.menu,name:base.next_id_15 +msgid "Properties" +msgstr "Properties" + +#. module: base +#: view:res.lang:0 +msgid "%A - Full weekday name." +msgstr "%A - Full weekday name." + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" +msgstr "Months" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Selection" +msgstr "Selection" + +#. module: base +#: field:ir.actions.act_window,search_view:0 +msgid "Search View" +msgstr "Search View" + +#. module: base +#: field:ir.rule,domain_force:0 +msgid "Force Domain" +msgstr "Force Domain" + +#. module: base +#: help:ir.sequence,weight:0 +msgid "If two sequences match, the highest weight will be used." +msgstr "If two sequences match, the highest weight will be used." + +#. module: base +#: model:ir.actions.act_window,name:base.action_attachment +#: view:ir.attachment:0 +#: model:ir.ui.menu,name:base.menu_action_attachment +msgid "Attachments" +msgstr "Attachments" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Validate" +msgstr "_Validate" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract_wizard +msgid "maintenance.contract.wizard" +msgstr "maintenance.contract.wizard" + +#. module: base +#: field:ir.actions.server,child_ids:0 +msgid "Other Actions" +msgstr "Other Actions" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Done" +msgstr "Done" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Validated" +msgstr "Validated" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_miss +msgid "Miss" +msgstr "Miss" + +#. module: base +#: field:ir.model.access,perm_write:0 +msgid "Write Access" +msgstr "Write Access" + +#. module: base +#: field:res.bank,city:0 +#: field:res.partner,city:0 +#: field:res.partner.address,city:0 +#: field:res.partner.bank,city:0 +msgid "City" +msgstr "City" + +#. module: base +#: model:res.country,name:base.qa +msgid "Qatar" +msgstr "Qatar" + +#. module: base +#: model:res.country,name:base.it +msgid "Italy" +msgstr "Italy" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "<>" +msgstr "<>" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "<=" +msgstr "<=" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Estonian / Eesti keel" +msgstr "Estonian / Eesti keel" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Portugese / português" +msgstr "Portugese / português" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "GPL-3 or later version" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "HTML from HTML(Mako)" +msgstr "HTML from HTML(Mako)" + +#. module: base +#: field:workflow.activity,action:0 +msgid "Python Action" +msgstr "Python Action" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "English (US)" +msgstr "English (US)" + +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "Probability (0.50)" + +#. module: base +#: field:ir.report.custom,repeat_header:0 +msgid "Repeat Header" +msgstr "Repeat Header" + +#. module: base +#: view:res.bank:0 +#: field:res.users,address_id:0 +msgid "Address" +msgstr "Address" + +#. module: base +#: field:ir.module.module,latest_version:0 +msgid "Installed version" +msgstr "Installed version" + +#. module: base +#: model:ir.ui.menu,name:base.menu_workflow_root +msgid "Workflow Definitions" +msgstr "Workflow Definitions" + +#. module: base +#: model:res.country,name:base.mr +msgid "Mauritania" +msgstr "Mauritania" + +#. module: base +#: view:workflow.activity:0 +#: field:workflow.workitem,act_id:0 +msgid "Activity" +msgstr "Activity" + +#. module: base +#: view:res.partner:0 +#: view:res.partner.address:0 +msgid "Postal Address" +msgstr "Postal Address" + +#. module: base +#: field:res.company,parent_id:0 +msgid "Parent Company" +msgstr "Parent Company" + +#. module: base +#: field:res.currency.rate,rate:0 +msgid "Rate" +msgstr "Rate" + +#. module: base +#: model:res.country,name:base.cg +msgid "Congo" +msgstr "Congo" + +#. module: base +#: model:ir.model,name:base.model_ir_exports_line +msgid "ir.exports.line" +msgstr "ir.exports.line" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PAUSE" +msgstr "STOCK_MEDIA_PAUSE" + +#. module: base +#: model:ir.model,name:base.model_res_country_state +msgid "Country state" +msgstr "Country state" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_property_form_all +#: model:ir.ui.menu,name:base.menu_ir_property_form_all +msgid "All Properties" +msgstr "All Properties" + +#. 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 "Window Actions" + +#. module: base +#: model:res.country,name:base.kn +msgid "Saint Kitts & Nevis Anguilla" +msgstr "Saint Kitts & Nevis Anguilla" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HOME" +msgstr "STOCK_HOME" + +#. module: base +#: field:ir.model,name:0 +#: field:ir.model.fields,model:0 +#: field:ir.model.grid,name:0 +#: field:ir.values,model:0 +msgid "Object Name" +msgstr "Object Name" + +#. module: base +#: help:ir.actions.server,srcmodel_id:0 +msgid "" +"Object in which you want to create / write the object. If it is empty then " +"refer to the Object field." +msgstr "" +"Object in which you want to create / write the object. If it is empty then " +"refer to the Object field." + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "Not Installed" +msgstr "Not Installed" + +#. module: base +#: field:workflow.activity,out_transitions:0 +msgid "Outgoing Transitions" +msgstr "Outgoing Transitions" + +#. module: base +#: field:ir.ui.menu,icon:0 +msgid "Icon" +msgstr "Icon" + +#. module: base +#: wizard_button:module.lang.import,init,finish:0 +#: wizard_button:module.lang.install,start,end:0 +#: wizard_button:module.module.update,update,open_window:0 +msgid "Ok" +msgstr "Ok" + +#. module: base +#: model:res.country,name:base.mq +msgid "Martinique (French)" +msgstr "Martinique (French)" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_12 +#: view:res.request:0 +msgid "Requests" +msgstr "Requests" + +#. module: base +#: model:res.country,name:base.ye +msgid "Yemen" +msgstr "Yemen" + +#. module: base +#: selection:workflow.activity,split_mode:0 +msgid "Or" +msgstr "Or" + +#. module: base +#: model:res.country,name:base.pk +msgid "Pakistan" +msgstr "Pakistan" + +#. module: base +#: model:res.country,name:base.al +msgid "Albania" +msgstr "Albania" + +#. module: base +#: model:res.country,name:base.ws +msgid "Samoa" +msgstr "Samoa" + +#. module: base +#: field:ir.ui.menu,child_id:0 +msgid "Child IDs" +msgstr "Child IDs" + +#. module: base +#: code:addons/base/ir/ir_actions.py:0 +#, python-format +msgid "Problem in configuration `Record Id` in Server Action!" +msgstr "Problem in configuration `Record Id` in Server Action!" + +#. module: base +#: code:addons/base/maintenance/maintenance.py:0 +#, python-format +msgid "This error occurs on database %s" +msgstr "This error occurs on database %s" + +#. module: base +#: wizard_button:base.module.import,init,import:0 +#: model:ir.actions.wizard,name:base.wizard_base_module_import +#: model:ir.ui.menu,name:base.menu_wizard_module_import +msgid "Import module" +msgstr "Import module" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DISCONNECT" +msgstr "STOCK_DISCONNECT" + +#. module: base +#: model:res.country,name:base.la +msgid "Laos" +msgstr "Laos" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Email" +msgstr "E-mail" + +#. module: base +#: model:ir.actions.act_window,name:base.action_wizard_update_translations +#: model:ir.ui.menu,name:base.menu_wizard_update_translations +msgid "Resynchronise Terms" +msgstr "Resynchronise Terms" + +#. module: base +#: model:res.country,name:base.tg +msgid "Togo" +msgstr "Togo" + +#. module: base +#: selection:workflow.activity,kind:0 +msgid "Stop All" +msgstr "Stop All" + +#. module: base +#: view:res.lang:0 +msgid "3. %x ,%X ==> 12/05/08, 18:25:20" +msgstr "3. %x ,%X ==> 12/05/08, 18:25:20" + +#. module: base +#: selection:ir.model.fields,on_delete:0 +msgid "Cascade" +msgstr "Cascade" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Field %d should be a figure" +msgstr "Field %d should be a figure" + +#. module: base +#: model:ir.actions.act_window,name:base.action_inventory_form +#: model:ir.ui.menu,name:base.menu_action_inventory_form +msgid "Default Company per Object" +msgstr "Default Company per Object" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" +msgstr "Next Configuration Step" + +#. module: base +#: field:res.groups,comment:0 +msgid "Comment" +msgstr "Comment" + +#. module: base +#: model:res.country,name:base.ro +msgid "Romania" +msgstr "Romania" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PREFERENCES" +msgstr "STOCK_PREFERENCES" + +#. module: base +#: field:res.country.state,name:0 +msgid "State Name" +msgstr "State Name" + +#. module: base +#: field:workflow.activity,join_mode:0 +msgid "Join Mode" +msgstr "Join Mode" + +#. module: base +#: field:res.users,context_tz:0 +msgid "Timezone" +msgstr "Timezone" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_LAST" +msgstr "STOCK_GOTO_LAST" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_report_xml +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.report.xml" +msgstr "ir.actions.report.xml" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "" +"To improve some terms of the official translations of OpenERP, you should " +"modify the terms directly on the launchpad interface. If you made lots of " +"translations for your own module, you can also publish all your translation " +"at once." +msgstr "" +"To improve some terms of the official translations of OpenERP, you should " +"modify the terms directly on the launchpad interface. If you made lots of " +"translations for your own module, you can also publish all your translation " +"at once." + +#. module: base +#: wizard_button:module.lang.install,init,start:0 +msgid "Start installation" +msgstr "Start installation" + +#. module: base +#: help:res.lang,code:0 +msgid "This field is used to set/get locales for user" +msgstr "This field is used to set/get locales for user" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_2 +msgid "OpenERP Partners" +msgstr "OpenERP Partners" + +#. module: base +#: model:res.country,name:base.by +msgid "Belarus" +msgstr "Belarus" + +#. module: base +#: field:ir.actions.act_window,name:0 +#: field:ir.actions.act_window_close,name:0 +#: field:ir.actions.actions,name:0 +#: field:ir.actions.server,name:0 +#: field:ir.actions.url,name:0 +msgid "Action Name" +msgstr "Action Name" + +#. module: base +#: selection:res.request,priority:0 +msgid "Normal" +msgstr "Normal" + +#. module: base +#: field:res.bank,street2:0 +#: field:res.partner.address,street2:0 +msgid "Street2" +msgstr "Street2" + +#. module: base +#: field:ir.cron,user_id:0 +#: field:ir.ui.view.custom,user_id:0 +#: field:ir.values,user_id:0 +#: field:res.partner.event,user_id:0 +#: view:res.users:0 +msgid "User" +msgstr "User" + +#. module: base +#: model:res.country,name:base.pr +msgid "Puerto Rico" +msgstr "Puerto Rico" + +#. module: base +#: code:addons/base/res/res_currency.py:0 +#, python-format +msgid "" +"No rate found \n" +"' \\n 'for the currency: %s \n" +"' \\n 'at the date: %s" +msgstr "" +"No rate found \n" +"' \\n 'for the currency: %s \n" +"' \\n 'at the date: %s" + +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "Open Window" + +#. module: base +#: field:ir.actions.act_window,filter:0 +#: field:ir.module.repository,filter:0 +msgid "Filter" +msgstr "Filter" + +#. module: base +#: model:res.country,name:base.ch +msgid "Switzerland" +msgstr "Switzerland" + +#. module: base +#: model:res.country,name:base.gd +msgid "Grenada" +msgstr "Grenada" + +#. module: base +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "Trigger Configuration" + +#. module: base +#: selection:server.action.create,init,type:0 +msgid "Open Report" +msgstr "Open Report" + +#. module: base +#: field:res.currency,rounding:0 +msgid "Rounding factor" +msgstr "Rounding factor" + +#. module: base +#: model:ir.model,name:base.model_res_company +msgid "res.company" +msgstr "res.company" + +#. module: base +#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 +msgid "System upgrade done" +msgstr "System upgrade done" + +#. module: base +#: model:res.country,name:base.so +msgid "Somalia" +msgstr "Somalia" + +#. module: base +#: model:ir.actions.act_window,name:base.action_config_simple_view_form +msgid "Configure Simple View" +msgstr "Configure Simple View" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_13 +msgid "Important customers" +msgstr "Important customers" + +#. module: base +#: field:res.request,act_to:0 +#: field:res.request.history,act_to:0 +msgid "To" +msgstr "To" + +#. module: base +#: field:ir.cron,args:0 +msgid "Arguments" +msgstr "Arguments" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "sxw" +msgstr "sxw" + +#. module: base +#: field:ir.actions.report.xml,auto:0 +msgid "Automatic XSL:RML" +msgstr "Automatic XSL:RML" + +#. module: base +#: view:ir.rule:0 +msgid "Manual domain setup" +msgstr "Manual domain setup" + +#. module: base +#: field:res.partner,customer:0 +#: model:res.partner.category,name:base.res_partner_category_0 +#: selection:res.partner.event,partner_type:0 +msgid "Customer" +msgstr "Customer" + +#. module: base +#: field:ir.actions.report.custom,name:0 +#: field:ir.report.custom,name:0 +msgid "Report Name" +msgstr "Report Name" + +#. module: base +#: field:ir.module.module,shortdesc:0 +msgid "Short Description" +msgstr "Short Description" + +#. module: base +#: field:res.partner.event,partner_type:0 +msgid "Partner Relation" +msgstr "Partner Relation" + +#. module: base +#: field:ir.actions.act_window,context:0 +msgid "Context Value" +msgstr "Context Value" + +#. module: base +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" +msgstr "Hour 00->24: %(h24)s" + +#. module: base +#: help:multi_company.default,field_id:0 +msgid "Select field property" +msgstr "Select field property" + +#. module: base +#: field:res.request.history,date_sent:0 +msgid "Date sent" +msgstr "Date sent" + +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "Month: %(month)s" + +#. module: base +#: field:ir.actions.act_window.view,sequence:0 +#: field:ir.actions.server,sequence:0 +#: field:ir.actions.todo,sequence:0 +#: field:ir.module.repository,sequence:0 +#: field:ir.report.custom.fields,sequence:0 +#: view:ir.sequence:0 +#: field:ir.ui.menu,sequence:0 +#: field:ir.ui.view_sc,sequence:0 +#: field:res.partner.bank,sequence:0 +#: field:wizard.ir.model.menu.create.line,sequence:0 +msgid "Sequence" +msgstr "Sequence" + +#. module: base +#: model:res.country,name:base.tn +msgid "Tunisia" +msgstr "Tunisia" + +#. module: base +#: field:ir.actions.wizard,name:0 +msgid "Wizard Info" +msgstr "Wizard Info" + +#. module: base +#: help:ir.cron,numbercall:0 +msgid "" +"Number of time the function is called,\n" +"a negative number indicates that the function will always be called" +msgstr "" +"Number of time the function is called,\n" +"a negative number indicates that the function will always be called" + +#. module: base +#: view:ir.module.module:0 +msgid "Cancel Install" +msgstr "Cancel Install" + +#. module: base +#: view:res.lang:0 +msgid "Legends for Date and Time Formats" +msgstr "Legends for Date and Time Formats" + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Monthly" +msgstr "Monthly" + +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_som-act +#: model:ir.ui.menu,name:base.menu_res_partner_som-act +msgid "States of mind" +msgstr "States of mind" + +#. module: base +#: model:ir.actions.act_window,name:base.action_country_state +#: model:ir.ui.menu,name:base.menu_country_state_partner +msgid "Fed. States" +msgstr "Fed. States" + +#. module: base +#: view:ir.model:0 +#: view:res.groups:0 +msgid "Access Rules" +msgstr "Access Rules" + +#. module: base +#: field:ir.default,ref_table:0 +msgid "Table Ref." +msgstr "Table Ref." + +#. module: base +#: field:res.roles,parent_id:0 +msgid "Parent" +msgstr "Parent" + +#. module: base +#: view:multi_company.default:0 +msgid "Returning" +msgstr "Returning" + +#. module: base +#: field:ir.actions.act_window,res_model:0 +#: field:ir.actions.report.custom,model:0 +#: field:ir.actions.report.xml,model:0 +#: field:ir.actions.server,model_id:0 +#: field:ir.actions.wizard,model:0 +#: field:ir.cron,model:0 +#: field:ir.default,field_tbl:0 +#: view:ir.model:0 +#: field:ir.model,model:0 +#: field:ir.model.access,model_id:0 +#: field:ir.model.data,model:0 +#: field:ir.model.grid,model:0 +#: field:ir.report.custom,model_id:0 +#: selection:ir.translation,type:0 +#: field:ir.ui.view,model:0 +#: field:ir.values,model_id:0 +#: field:res.request.link,object:0 +#: field:wizard.ir.model.menu.create,model_id:0 +#: field:workflow.triggers,model:0 +msgid "Object" +msgstr "Object" + +#. module: base +#: model:ir.model,name:base.model_ir_default +msgid "ir.default" +msgstr "ir.default" + +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "Minute: %(min)s" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_100" +msgstr "STOCK_ZOOM_100" + +#. module: base +#: view:res.lang:0 +msgid "%w - Weekday as a decimal number [0(Sunday),6]." +msgstr "%w - Weekday as a decimal number [0(Sunday),6]." + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export translation file" +msgstr "Export translation file" + +#. module: base +#: field:ir.ui.view_sc,user_id:0 +msgid "User Ref." +msgstr "User Ref." + +#. module: base +#: model:ir.ui.menu,name:base.menu_base_config +#: model:ir.ui.menu,name:base.menu_config +#: view:res.company:0 +msgid "Configuration" +msgstr "Configuration" + +#. module: base +#: field:ir.actions.server,expression:0 +msgid "Loop Expression" +msgstr "Loop Expression" + +#. module: base +#: selection:res.partner.event,partner_type:0 +msgid "Retailer" +msgstr "Retailer" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "Tabular" + +#. module: base +#: field:ir.actions.todo,start_on:0 +msgid "Start On" +msgstr "Start On" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_5 +msgid "Gold Partner" +msgstr "Gold Partner" + +#. module: base +#: model:ir.model,name:base.model_res_partner +#: field:res.company,partner_id:0 +#: field:res.partner.address,partner_id:0 +#: field:res.partner.bank,partner_id:0 +#: field:res.partner.event,partner_id:0 +#: selection:res.partner.title,domain:0 +#: view:res.users:0 +msgid "Partner" +msgstr "Partner" + +#. module: base +#: model:res.country,name:base.tr +msgid "Turkey" +msgstr "Turkey" + +#. module: base +#: model:res.country,name:base.fk +msgid "Falkland Islands" +msgstr "Falkland Islands" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" +msgstr "odt" + +#. module: base +#: field:ir.actions.report.custom,type:0 +#: field:ir.actions.report.xml,type:0 +#: field:ir.report.custom,type:0 +msgid "Report Type" +msgstr "Report Type" + +#. module: base +#: field:ir.actions.todo,state:0 +#: field:ir.module.module,state:0 +#: field:ir.module.module.dependency,state:0 +#: field:ir.report.custom,state:0 +#: field:maintenance.contract,state:0 +#: field:res.bank,state:0 +#: view:res.country.state:0 +#: field:res.partner.bank,state_id:0 +#: field:res.request,state:0 +#: field:workflow.instance,state:0 +#: field:workflow.workitem,state:0 +msgid "State" +msgstr "State" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "Other proprietary" +msgstr "Other proprietary" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-administration" +msgstr "terp-administration" + +#. module: base +#: model:ir.actions.act_window,name:base.action_translation +#: model:ir.ui.menu,name:base.menu_action_translation +msgid "All terms" +msgstr "All terms" + +#. module: base +#: model:res.country,name:base.no +msgid "Norway" +msgstr "Norway" + +#. module: base +#: view:res.lang:0 +msgid "4. %b, %B ==> Dec, December" +msgstr "4. %b, %B ==> Dec, December" + +#. 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 "Load an Official Translation" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_10 +msgid "Open Source Service Company" +msgstr "Open Source Service Company" + +#. module: base +#: selection:res.request,state:0 +msgid "waiting" +msgstr "waiting" + +#. module: base +#: field:ir.attachment,link:0 +msgid "Link" +msgstr "Link" + +#. module: base +#: model:ir.model,name:base.model_workflow_triggers +msgid "workflow.triggers" +msgstr "workflow.triggers" + +#. module: base +#: field:ir.report.custom.fields,report_id:0 +msgid "Report Ref" +msgstr "Report Ref" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-hr" +msgstr "terp-hr" + +#. module: base +#: help:ir.actions.wizard,multi:0 +msgid "" +"If set to true, the wizard will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"If set to true, the wizard will not be displayed on the right toolbar of a " +"form view." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DND" +msgstr "STOCK_DND" + +#. module: base +#: model:res.country,name:base.hm +msgid "Heard and McDonald Islands" +msgstr "Heard and McDonald Islands" + +#. module: base +#: field:ir.actions.act_window,view_id:0 +msgid "View Ref." +msgstr "View Ref." + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Dutch (Belgium) / Nederlands (Belgïe)" +msgstr "Dutch (Belgium) / Nederlands (Belgïe)" + +#. module: base +#: model:ir.actions.act_window,name:base.open_repository_tree +#: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree +msgid "Repository list" +msgstr "Repository list" + +#. module: base +#: field:res.company,rml_header1:0 +msgid "Report Header" +msgstr "Report Header" + +#. module: base +#: field:ir.actions.act_window,type:0 +#: field:ir.actions.act_window_close,type:0 +#: field:ir.actions.actions,type:0 +#: field:ir.actions.server,state:0 +#: field:ir.actions.server,type:0 +#: field:ir.actions.url,type:0 +#: field:ir.actions.wizard,type:0 +msgid "Action Type" +msgstr "Action Type" + +#. module: base +#: field:res.partner.bank.type,field_ids:0 +msgid "Type fields" +msgstr "Type fields" + +#. module: base +#: field:ir.module.module,category_id:0 +msgid "Category" +msgstr "Category" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FLOPPY" +msgstr "STOCK_FLOPPY" + +#. module: base +#: field:ir.actions.server,sms:0 +#: selection:ir.actions.server,state:0 +msgid "SMS" +msgstr "SMS" + +#. module: base +#: model:res.country,name:base.cr +msgid "Costa Rica" +msgstr "Costa Rica" + +#. module: base +#: code:addons/base/maintenance/maintenance.py:0 +#, python-format +msgid "Your can't submit bug reports due to uncovered modules: %s" +msgstr "Your can't submit bug reports due to uncovered modules: %s" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_other_form +msgid "Other Partners" +msgstr "Other Partners" + +#. module: base +#: view:ir.model:0 +#: view:res.request:0 +msgid "Status" +msgstr "Status" + +#. module: base +#: model:ir.actions.act_window,name:base.action_currency_form +#: model:ir.ui.menu,name:base.menu_action_currency_form +#: view:res.currency:0 +msgid "Currencies" +msgstr "Currencies" + +#. module: base +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" +msgstr "Hour 00->12: %(h12)s" + +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "Uncheck the active field to hide the contact." + +#. module: base +#: model:res.country,name:base.dk +msgid "Denmark" +msgstr "Denmark" + +#. module: base +#: field:res.country,code:0 +msgid "Country Code" +msgstr "Country Code" + +#. module: base +#: model:ir.model,name:base.model_workflow_instance +msgid "workflow.instance" +msgstr "workflow.instance" + +#. module: base +#: view:res.lang:0 +msgid "10. %S ==> 20" +msgstr "10. %S ==> 20" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_madam +msgid "Madam" +msgstr "Madam" + +#. module: base +#: model:res.country,name:base.ee +msgid "Estonia" +msgstr "Estonia" + +#. module: base +#: model:res.country,name:base.nl +msgid "Netherlands" +msgstr "Netherlands" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_4 +msgid "Low Level Objects" +msgstr "Low Level Objects" + +#. module: base +#: model:ir.model,name:base.model_ir_report_custom +msgid "ir.report.custom" +msgstr "ir.report.custom" + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Purchase Offer" +msgstr "Purchase Offer" + +#. module: base +#: model:ir.model,name:base.model_ir_values +msgid "ir.values" +msgstr "ir.values" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_FIT" +msgstr "STOCK_ZOOM_FIT" + +#. module: base +#: model:res.country,name:base.cd +msgid "Congo, The Democratic Republic of the" +msgstr "Congo, The Democratic Republic of the" + +#. module: base +#: view:res.request:0 +#: field:res.request,body:0 +#: field:res.request.history,req_id:0 +msgid "Request" +msgstr "Request" + +#. module: base +#: model:res.country,name:base.jp +msgid "Japan" +msgstr "Japan" + +#. module: base +#: field:ir.cron,numbercall:0 +msgid "Number of Calls" +msgstr "Number of Calls" + +#. module: base +#: wizard_view:module.lang.install,start:0 +msgid "Language file loaded." +msgstr "Language file loaded." + +#. module: base +#: wizard_view:module.upgrade,next:0 +#: wizard_field:module.upgrade,next,module_info:0 +msgid "Modules to update" +msgstr "Modules to update" + +#. module: base +#: model:ir.actions.act_window,name:base.action2 +msgid "Company Architecture" +msgstr "Company Architecture" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_BOTTOM" +msgstr "STOCK_GOTO_BOTTOM" + +#. module: base +#: help:ir.actions.server,sequence:0 +msgid "" +"Important when you deal with multiple actions, the execution order will be " +"decided based on this, low number is higher priority." +msgstr "" +"Important when you deal with multiple actions, the execution order will be " +"decided based on this, low number is higher priority." + +#. module: base +#: field:ir.actions.report.xml,header:0 +msgid "Add RML header" +msgstr "Add RML header" + +#. module: base +#: model:res.country,name:base.gr +msgid "Greece" +msgstr "Greece" + +#. module: base +#: field:res.request,trigger_date:0 +msgid "Trigger Date" +msgstr "Trigger Date" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Croatian / hrvatski jezik" +msgstr "Croatian / hrvatski jezik" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_FORWARD" +msgstr "STOCK_GO_FORWARD" + +#. module: base +#: help:ir.actions.server,code:0 +msgid "Python code to be executed" +msgstr "Python code to be executed" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "Uninstallable" + +#. module: base +#: view:res.partner.category:0 +msgid "Partner Category" +msgstr "Partner Category" + +#. module: base +#: view:ir.actions.server:0 +#: selection:ir.actions.server,state:0 +msgid "Trigger" +msgstr "Trigger" + +#. module: base +#: field:ir.model.fields,translate:0 +msgid "Translate" +msgstr "Translate" + +#. module: base +#: view:ir.actions.server:0 +msgid "" +"Access all the fields related to the current object using expression in " +"double brackets, i.e. [[ object.partner_id.name ]]" +msgstr "" +"Access all the fields related to the current object using expression in " +"double brackets, i.e. [[ object.partner_id.name ]]" + +#. module: base +#: field:res.request.history,body:0 +msgid "Body" +msgstr "Body" + +#. module: base +#: wizard_button:res.partner.spam_send,init,send:0 +msgid "Send Email" +msgstr "Send E-mail" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SELECT_FONT" +msgstr "STOCK_SELECT_FONT" + +#. module: base +#: field:res.users,menu_id:0 +msgid "Menu Action" +msgstr "Menu Action" + +#. module: base +#: selection:wizard.module.lang.export,state:0 +msgid "choose" +msgstr "choose" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Graph" +msgstr "Graph" + +#. module: base +#: field:res.partner,child_ids:0 +#: field:res.request,ref_partner_id:0 +msgid "Partner Ref." +msgstr "Partner Ref." + +#. module: base +#: field:ir.report.custom,print_format:0 +msgid "Print format" +msgstr "Print format" + +#. module: base +#: model:ir.ui.menu,name:base.menu_low_workflow +msgid "Workflow Items" +msgstr "Workflow Items" + +#. module: base +#: field:res.request,ref_doc2:0 +msgid "Document Ref 2" +msgstr "Document Ref 2" + +#. module: base +#: field:res.request,ref_doc1:0 +msgid "Document Ref 1" +msgstr "Document Ref 1" + +#. module: base +#: model:res.country,name:base.ga +msgid "Gabon" +msgstr "Gabon" + +#. module: base +#: model:ir.model,name:base.model_ir_model_data +msgid "ir.model.data" +msgstr "ir.model.data" + +#. module: base +#: view:ir.model:0 +#: view:res.groups:0 +msgid "Access Rights" +msgstr "Access Rights" + +#. module: base +#: model:res.country,name:base.gl +msgid "Greenland" +msgstr "Greenland" + +#. module: base +#: help:ir.actions.report.xml,report_rml:0 +msgid "" +"The .rml path of the file or NULL if the content is in report_rml_content" +msgstr "" +"The .rml path of the file or NULL if the content is in report_rml_content" + +#. module: base +#: field:res.partner.bank,acc_number:0 +msgid "Account Number" +msgstr "Account Number" + +#. module: base +#: view:res.lang:0 +msgid "1. %c ==> Fri Dec 5 18:25:20 2008" +msgstr "1. %c ==> Fri Dec 5 18:25:20 2008" + +#. module: base +#: help:ir.ui.menu,groups_id:0 +msgid "" +"If you have groups, the visibility of this menu will be based on these " +"groups. If this field is empty, Open ERP will compute visibility based on " +"the related object's read access." +msgstr "" +"If you have groups, the visibility of this menu will be based on these " +"groups. If this field is empty, Open ERP will compute visibility based on " +"the related object's read access." + +#. module: base +#: model:res.country,name:base.nc +msgid "New Caledonia (French)" +msgstr "New Caledonia (French)" + +#. module: base +#: field:res.partner.function,name:0 +msgid "Function Name" +msgstr "Function Name" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Cancel" +msgstr "_Cancel" + +#. module: base +#: model:res.country,name:base.cy +msgid "Cyprus" +msgstr "Cyprus" + +#. module: base +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" +msgstr "Subject" + +#. module: base +#: field:res.request,act_from:0 +#: field:res.request.history,act_from:0 +msgid "From" +msgstr "From" + +#. module: base +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" +msgstr "Next" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-report" +msgstr "terp-report" + +#. module: base +#: field:ir.actions.report.xml,report_rml_content:0 +#: field:ir.actions.report.xml,report_rml_content_data:0 +msgid "RML content" +msgstr "RML content" + +#. module: base +#: view:workflow.activity:0 +msgid "Incoming transitions" +msgstr "Incoming transitions" + +#. module: base +#: model:res.country,name:base.cn +msgid "China" +msgstr "China" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "Password empty !" +msgstr "Password empty !" + +#. module: base +#: model:res.country,name:base.eh +msgid "Western Sahara" +msgstr "Western Sahara" + +#. module: base +#: model:ir.model,name:base.model_workflow +msgid "workflow" +msgstr "workflow" + +#. module: base +#: model:res.country,name:base.id +msgid "Indonesia" +msgstr "Indonesia" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" +msgstr "At Once" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Write Object" +msgstr "Write Object" + +#. module: base +#: model:res.country,name:base.bg +msgid "Bulgaria" +msgstr "Bulgaria" + +#. module: base +#: model:res.country,name:base.ao +msgid "Angola" +msgstr "Angola" + +#. module: base +#: model:res.country,name:base.tf +msgid "French Southern Territories" +msgstr "French Southern Territories" + +#. module: base +#: view:ir.actions.server:0 +msgid "" +"Only one client action will be execute, last " +"clinent action will be consider in case of multiples clients actions" +msgstr "" +"Only one client action will be execute, last " +"clinent action will be consider in case of multiples clients actions" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HELP" +msgstr "STOCK_HELP" + +#. module: base +#: model:ir.model,name:base.model_res_currency +#: view:res.company:0 +#: field:res.company,currency_id:0 +#: field:res.company,currency_ids:0 +#: view:res.currency:0 +#: field:res.currency,name:0 +#: field:res.currency.rate,currency_id:0 +msgid "Currency" +msgstr "Currency" + +#. module: base +#: field:res.partner.canal,name:0 +msgid "Channel Name" +msgstr "Channel Name" + +#. module: base +#: view:res.lang:0 +msgid "5. %y, %Y ==> 08, 2008" +msgstr "5. %y, %Y ==> 08, 2008" + +#. module: base +#: field:ir.model.fields,model_id:0 +#: field:ir.values,res_id:0 +msgid "Object ID" +msgstr "Object ID" + +#. module: base +#: selection:ir.report.custom,print_orientation:0 +msgid "Landscape" +msgstr "Landscape" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_form +#: model:ir.ui.menu,name:base.menu_base_config_partner +#: model:ir.ui.menu,name:base.menu_base_partner +#: model:ir.ui.menu,name:base.menu_partner_form +#: view:res.partner:0 +#: view:res.partner.category:0 +#: field:res.partner.category,partner_ids:0 +msgid "Partners" +msgstr "Partners" + +#. module: base +#: model:ir.ui.menu,name:base.menu_administration +msgid "Administration" +msgstr "Administration" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "child_of" + +#. module: base +#: view:res.users:0 +#: field:res.users,company_ids:0 +msgid "Accepted Companies" +msgstr "Accepted Companies" + +#. module: base +#: field:ir.report.custom.fields,operation:0 +#: field:ir.ui.menu,icon_pict:0 +#: field:wizard.module.lang.export,state:0 +msgid "unknown" +msgstr "unknown" + +#. module: base +#: field:ir.ui.view_sc,res_id:0 +msgid "Resource Ref." +msgstr "Resource Ref." + +#. module: base +#: model:res.country,name:base.ki +msgid "Kiribati" +msgstr "Kiribati" + +#. module: base +#: model:res.country,name:base.iq +msgid "Iraq" +msgstr "Iraq" + +#. module: base +#: view:ir.actions.server:0 +msgid "Action to Launch" +msgstr "Action to Launch" + +#. module: base +#: wizard_view:base.module.import,import:0 +#: wizard_view:base.module.import,init:0 +msgid "Module import" +msgstr "Module import" + +#. module: base +#: model:ir.model,name:base.model_ir_sequence_type +msgid "ir.sequence.type" +msgstr "ir.sequence.type" + +#. module: base +#: selection:wizard.module.lang.export,format:0 +msgid "CSV File" +msgstr "CSV File" + +#. module: base +#: selection:ir.model,state:0 +#: selection:ir.model.grid,state:0 +msgid "Base Object" +msgstr "Base Object" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-crm" +msgstr "terp-crm" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_STRIKETHROUGH" +msgstr "STOCK_STRIKETHROUGH" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +msgid "(year)=" +msgstr "(year)=" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Dependencies :" +msgstr "Dependencies :" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-partner" +msgstr "terp-partner" + +#. module: base +#: field:ir.model.fields,field_description:0 +msgid "Field Label" +msgstr "Field Label" + +#. module: base +#: model:res.country,name:base.dj +msgid "Djibouti" +msgstr "Djibouti" + +#. module: base +#: field:ir.translation,value:0 +msgid "Translation Value" +msgstr "Translation Value" + +#. module: base +#: model:res.country,name:base.ag +msgid "Antigua and Barbuda" +msgstr "Antigua and Barbuda" + +#. module: base +#: field:ir.actions.server,condition:0 +#: field:ir.report.custom.fields,fc0_condition:0 +#: field:ir.sequence,condition:0 +#: view:multi_company.default:0 +#: field:workflow.transition,condition:0 +msgid "Condition" +msgstr "Condition" + +#. module: base +#: model:res.country,name:base.zr +msgid "Zaire" +msgstr "Zaire" + +#. module: base +#: field:ir.attachment,res_id:0 +#: field:ir.model.data,res_id:0 +#: field:ir.translation,res_id:0 +#: field:workflow.instance,res_id:0 +#: field:workflow.triggers,res_id:0 +msgid "Resource ID" +msgstr "Resource ID" + +#. module: base +#: view:ir.cron:0 +#: field:ir.model,info:0 +#: field:ir.model.grid,info:0 +#: view:maintenance.contract:0 +msgid "Information" +msgstr "Information" + +#. 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 "" +"The official translations pack of all OpenERP/OpenObjects module are managed " +"through launchpad. We use their online interface to synchronise all " +"translations efforts." + +#. module: base +#: field:ir.actions.report.xml,report_rml:0 +msgid "RML path" +msgstr "RML path" + +#. module: base +#: field:ir.actions.configuration.wizard,item_id:0 +msgid "Next Configuration Wizard" +msgstr "Next Configuration Wizard" + +#. module: base +#: selection:ir.actions.todo,type:0 +#: selection:res.partner.address,type:0 +msgid "Other" +msgstr "Other" + +#. module: base +#: view:res.request:0 +msgid "Reply" +msgstr "Reply" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "Turkish / Türkçe" + +#. module: base +#: model:ir.actions.act_window,name:base.action_translation_untrans +#: model:ir.ui.menu,name:base.menu_action_translation_untrans +msgid "Untranslated terms" +msgstr "Untranslated terms" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "Import New Language" +msgstr "Import New Language" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_activity_form +#: model:ir.ui.menu,name:base.menu_workflow_activity +#: view:workflow:0 +#: field:workflow,activities:0 +msgid "Activities" +msgstr "Activities" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" +msgstr "Auto-Refresh" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +#: selection:ir.rule,operator:0 +msgid "=" +msgstr "=" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Second field should be figures" +msgstr "Second field should be figures" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_grid_security +#: model:ir.ui.menu,name:base.menu_ir_access_grid +msgid "Access Controls Grid" +msgstr "Access Controls Grid" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_actions +#: model:ir.ui.menu,name:base.menu_custom_action +#: model:ir.ui.menu,name:base.menu_ir_sequence_actions +#: model:ir.ui.menu,name:base.next_id_6 +msgid "Actions" +msgstr "Actions" + +#. module: base +#: selection:res.request,priority:0 +msgid "High" +msgstr "High" + +#. module: base +#: field:ir.exports.line,export_id:0 +msgid "Export" +msgstr "Export" + +#. module: base +#: help:res.bank,bic:0 +msgid "Bank Identifier Code" +msgstr "Bank Identifier Code" + +#. module: base +#: model:res.country,name:base.tm +msgid "Turkmenistan" +msgstr "Turkmenistan" + +#. module: base +#: model:res.country,name:base.pm +msgid "Saint Pierre and Miquelon" +msgstr "Saint Pierre and Miquelon" + +#. module: base +#: help:ir.actions.report.xml,header:0 +msgid "Add or not the coporate RML header" +msgstr "Add or not the coporate RML header" + +#. module: base +#: field:res.partner.event,document:0 +msgid "Document" +msgstr "Document" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REFRESH" +msgstr "STOCK_REFRESH" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_STOP" +msgstr "STOCK_STOP" + +#. module: base +#: view:wizard.module.update_translations:0 +msgid "Update" +msgstr "Update" + +#. module: base +#: model:ir.actions.report.xml,name:base.ir_module_reference_print +msgid "Technical guide" +msgstr "Technical guide" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CONVERT" +msgstr "STOCK_CONVERT" + +#. module: base +#: model:res.country,name:base.tz +msgid "Tanzania" +msgstr "Tanzania" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Danish / Dansk" +msgstr "Danish / Dansk" + +#. module: base +#: model:res.country,name:base.cx +msgid "Christmas Island" +msgstr "Christmas Island" + +#. module: base +#: view:ir.actions.server:0 +msgid "Other Actions Configuration" +msgstr "Other Actions Configuration" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_EXECUTE" +msgstr "STOCK_EXECUTE" + +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_canal-act +#: model:ir.model,name:base.model_res_partner_canal +#: model:ir.ui.menu,name:base.menu_res_partner_canal-act +msgid "Channels" +msgstr "Channels" + +#. module: base +#: view:ir.module.module:0 +msgid "Schedule for Installation" +msgstr "Schedule for Installation" + +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Advanced Search" + +#. module: base +#: model:ir.model,name:base.model_res_partner_bank +#: view:res.partner.bank:0 +msgid "Bank Accounts" +msgstr "Bank Accounts" + +#. module: base +#: view:res.request:0 +msgid "Send" +msgstr "Send" + +#. module: base +#: field:ir.translation,src:0 +msgid "Source" +msgstr "Source" + +#. module: base +#: help:res.partner.address,partner_id:0 +msgid "Keep empty for a private address, not related to partner." +msgstr "Keep empty for a private address, not related to partner." + +#. module: base +#: model:res.country,name:base.vu +msgid "Vanuatu" +msgstr "Vanuatu" + +#. module: base +#: view:res.company:0 +msgid "Internal Header/Footer" +msgstr "Internal Header/Footer" + +#. module: base +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#, python-format +msgid "" +"Save this document to a .tgz file. This archive containt UTF-8 %s files and " +"may be uploaded to launchpad." +msgstr "" +"Save this document to a .tgz file. This archive containt UTF-8 %s files and " +"may be uploaded to launchpad." + +#. module: base +#: wizard_button:module.upgrade,end,config:0 +#: wizard_button:module.upgrade,start,config:0 +msgid "Start configuration" +msgstr "Start configuration" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Catalan / Català" +msgstr "Catalan / Català" + +#. module: base +#: model:res.country,name:base.do +msgid "Dominican Republic" +msgstr "Dominican Republic" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_COLOR_PICKER" +msgstr "STOCK_COLOR_PICKER" + +#. module: base +#: model:res.country,name:base.sa +msgid "Saudi Arabia" +msgstr "Saudi Arabia" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Bar charts need at least two fields" +msgstr "Bar charts need at least two fields" + +#. 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 "" +"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." + +#. module: base +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" +msgstr "Relation Field" + +#. module: base +#: field:workflow.triggers,instance_id:0 +msgid "Destination Instance" +msgstr "Destination Instance" + +#. module: base +#: field:ir.actions.wizard,multi:0 +msgid "Action on Multiple Doc." +msgstr "Action on Multiple Doc." + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "https://translations.launchpad.net/openobject" +msgstr "https://translations.launchpad.net/openobject" + +#. module: base +#: field:ir.actions.todo,start_date:0 +msgid "Start Date" +msgstr "Start Date" + +#. module: base +#: field:ir.actions.report.xml,report_xml:0 +msgid "XML path" +msgstr "XML path" + +#. module: base +#: model:res.country,name:base.gn +msgid "Guinea" +msgstr "Guinea" + +#. module: base +#: model:res.country,name:base.lu +msgid "Luxembourg" +msgstr "Luxembourg" + +#. module: base +#: model:ir.actions.todo,note:base.config_wizard_step_user +msgid "" +"Create your users.\n" +"You will be able to assign groups to users. Groups define the access rights " +"of each users on the different objects of the system.\n" +" " +msgstr "" +"Create your users.\n" +"You will be able to assign groups to users. Groups define the access rights " +"of each users on the different objects of the system.\n" +" " + +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "Low" + +#. module: base +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" +msgstr "tree_but_action, client_print_multi" + +#. module: base +#: model:res.country,name:base.sv +msgid "El Salvador" +msgstr "El Salvador" + +#. module: base +#: field:res.bank,phone:0 +#: field:res.partner.address,phone:0 +msgid "Phone" +msgstr "Phone" + +#. module: base +#: field:res.groups,menu_access:0 +msgid "Access Menu" +msgstr "Access Menu" + +#. module: base +#: model:res.country,name:base.th +msgid "Thailand" +msgstr "Thailand" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +msgid ">" +msgstr ">" + +#. module: base +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" +msgstr "Delete Permission" + +#. module: base +#: model:ir.model,name:base.model_multi_company_default +msgid "multi_company.default" +msgstr "multi_company.default" + +#. module: base +#: selection:workflow.activity,join_mode:0 +#: selection:workflow.activity,split_mode:0 +msgid "And" +msgstr "And" + +#. module: base +#: field:ir.model.fields,relation:0 +msgid "Object Relation" +msgstr "Object Relation" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PRINT" +msgstr "STOCK_PRINT" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +msgid "<" +msgstr "<" + +#. module: base +#: model:res.country,name:base.uz +msgid "Uzbekistan" +msgstr "Uzbekistan" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.act_window" +msgstr "ir.actions.act_window" + +#. module: base +#: model:res.country,name:base.vi +msgid "Virgin Islands (USA)" +msgstr "Virgin Islands (USA)" + +#. module: base +#: model:res.country,name:base.tw +msgid "Taiwan" +msgstr "Taiwan" + +#. module: base +#: view:ir.rule:0 +msgid "If you don't force the domain, it will use the simple domain setup" +msgstr "If you don't force the domain, it will use the simple domain setup" + +#. module: base +#: field:ir.report.custom,field_parent:0 +#: field:ir.ui.view,field_parent:0 +msgid "Child Field" +msgstr "Child Field" + +#. module: base +#: field:ir.actions.act_window,usage:0 +#: field:ir.actions.act_window_close,usage:0 +#: field:ir.actions.actions,usage:0 +#: field:ir.actions.report.custom,usage:0 +#: field:ir.actions.report.xml,usage:0 +#: field:ir.actions.server,usage:0 +#: field:ir.actions.wizard,usage:0 +msgid "Action Usage" +msgstr "Action Usage" + +#. module: base +#: model:ir.model,name:base.model_workflow_workitem +msgid "workflow.workitem" +msgstr "workflow.workitem" + +#. module: base +#: selection:ir.module.module,state:0 +msgid "Not Installable" +msgstr "Not Installable" + +#. module: base +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "View :" + +#. module: base +#: field:ir.model.fields,view_load:0 +msgid "View Auto-Load" +msgstr "View Auto-Load" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_supplier_form +#: view:res.partner:0 +msgid "Suppliers" +msgstr "Suppliers" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUMP_TO" +msgstr "STOCK_JUMP_TO" + +#. module: base +#: field:ir.actions.todo,end_date:0 +msgid "End Date" +msgstr "End Date" + +#. module: base +#: field:ir.exports,resource:0 +#: field:ir.property,res_id:0 +msgid "Resource" +msgstr "Resource" + +#. module: base +#: field:maintenance.contract,name:0 +#: field:maintenance.contract.wizard,name:0 +msgid "Contract ID" +msgstr "Contract ID" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "center" +msgstr "centre" + +#. module: base +#: field:maintenance.contract.wizard,state:0 +msgid "States" +msgstr "States" + +#. module: base +#: view:multi_company.default:0 +msgid "Matching" +msgstr "Matching" + +#. module: base +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" +msgstr "Next Wizard" + +#. module: base +#: field:ir.attachment,datas_fname:0 +#: field:wizard.module.lang.export,name:0 +msgid "Filename" +msgstr "Filename" + +#. module: base +#: field:ir.model,access_ids:0 +#: field:ir.model.grid,access_ids:0 +msgid "Access" +msgstr "Access" + +#. module: base +#: model:res.country,name:base.sk +msgid "Slovak Republic" +msgstr "Slovak Republic" + +#. module: base +#: model:res.country,name:base.aw +msgid "Aruba" +msgstr "Aruba" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Weeks" +msgstr "Weeks" + +#. module: base +#: field:res.groups,name:0 +msgid "Group Name" +msgstr "Group Name" + +#. module: base +#: model:res.country,name:base.bh +msgid "Bahrain" +msgstr "Bahrain" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_12 +msgid "Segmentation" +msgstr "Segmentation" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FIND" +msgstr "STOCK_FIND" + +#. module: base +#: model:ir.actions.act_window,name:base.action_maintenance_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_maintenance_contract_add +#: view:maintenance.contract.wizard:0 +msgid "Add Maintenance Contract" +msgstr "Add Maintenance Contract" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" + +#. module: base +#: field:ir.actions.act_window,limit:0 +#: field:ir.report.custom,limitt:0 +msgid "Limit" +msgstr "Limit" + +#. module: base +#: help:ir.actions.server,wkf_model_id:0 +msgid "Workflow to be executed on this model." +msgstr "Workflow to be executed on this model." + +#. module: base +#: model:res.country,name:base.jm +msgid "Jamaica" +msgstr "Jamaica" + +#. module: base +#: model:res.country,name:base.az +msgid "Azerbaijan" +msgstr "Azerbaijan" + +#. module: base +#: code:addons/base/res/partner/partner.py:0 +#, python-format +msgid "Warning" +msgstr "Warning" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" +msgstr "Arabic / الْعَرَبيّة" + +#. module: base +#: model:res.country,name:base.gi +msgid "Gibraltar" +msgstr "Gibraltar" + +#. module: base +#: model:res.country,name:base.vg +msgid "Virgin Islands (British)" +msgstr "Virgin Islands (British)" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PREVIOUS" +msgstr "STOCK_MEDIA_PREVIOUS" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Czech / Čeština" +msgstr "Czech / Čeština" + +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis and Futuna Islands" + +#. module: base +#: model:res.country,name:base.rw +msgid "Rwanda" +msgstr "Rwanda" + +#. module: base +#: constraint:res.partner:0 +msgid "The VAT doesn't seem to be correct." +msgstr "The VAT doesn't seem to be correct." + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Sum" +msgstr "Calculate Sum" + +#. module: base +#: view:ir.sequence:0 +msgid "Day of the week (0:Monday): %(weekday)s" +msgstr "Day of the week (0:Monday): %(weekday)s" + +#. module: base +#: model:res.country,name:base.ck +msgid "Cook Islands" +msgstr "Cook Islands" + +#. module: base +#: help:ir.actions.server,mobile:0 +msgid "" +"Provides fields that be used to fetch the mobile number, e.g. you select the " +"invoice, then `object.invoice_address_id.mobile` is the field which gives " +"the correct mobile number" +msgstr "" +"Provides fields that be used to fetch the mobile number, e.g. you select the " +"invoice, then `object.invoice_address_id.mobile` is the field which gives " +"the correct mobile number" + +#. module: base +#: field:ir.model.data,noupdate:0 +msgid "Non Updatable" +msgstr "Non Updatable" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Klingon" +msgstr "Klingon" + +#. module: base +#: model:res.country,name:base.sg +msgid "Singapore" +msgstr "Singapore" + +#. module: base +#: selection:ir.actions.act_window,target:0 +msgid "Current Window" +msgstr "Current Window" + +#. module: base +#: view:ir.values:0 +msgid "Action Source" +msgstr "Action Source" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NETWORK" +msgstr "STOCK_NETWORK" + +#. module: base +#: model:ir.model,name:base.model_res_country +#: field:res.bank,country:0 +#: view:res.country:0 +#: field:res.country.state,country_id:0 +#: field:res.partner,country:0 +#: field:res.partner.address,country_id:0 +#: field:res.partner.bank,country_id:0 +msgid "Country" +msgstr "Country" + +#. module: base +#: field:ir.model.fields,complete_name:0 +#: field:ir.ui.menu,complete_name:0 +msgid "Complete Name" +msgstr "Complete Name" + +#. module: base +#: view:ir.report.custom:0 +msgid "Subscribe Report" +msgstr "Subscribe Report" + +#. module: base +#: field:ir.values,object:0 +msgid "Is Object" +msgstr "Is Object" + +#. module: base +#: field:res.partner.category,name:0 +msgid "Category Name" +msgstr "Category Name" + +#. module: base +#: view:ir.actions.act_window:0 +msgid "Select Groups" +msgstr "Select Groups" + +#. module: base +#: field:ir.sequence,weight:0 +msgid "Weight" +msgstr "Weight" + +#. module: base +#: view:res.lang:0 +msgid "%X - Appropriate time representation." +msgstr "%X - Appropriate time representation." + +#. module: base +#: view:res.company:0 +msgid "Your Logo - Use a size of about 450x150 pixels." +msgstr "Your Logo - Use a size of about 450x150 pixels." + +#. module: base +#: help:res.lang,grouping:0 +msgid "" +"The Separator Format should be like [,n] where 0 < n :starting from Unit " +"digit.-1 will end the separation. e.g. [3,2,-1] will represent 106500 to be " +"1,06,500;[1,2,-1] will represent it to be 106,50,0;[3] will represent it as " +"106,500. Provided ',' as the thousand separator in each case." +msgstr "" +"The Separator Format should be like [,n] where 0 < n :starting from Unit " +"digit.-1 will end the separation. e.g. [3,2,-1] will represent 106500 to be " +"1,06,500;[1,2,-1] will represent it to be 106,50,0;[3] will represent it as " +"106,500. Provided ',' as the thousand separator in each case." + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_customer_form_new +msgid "New Partner" +msgstr "New Partner" + +#. module: base +#: selection:ir.report.custom,print_orientation:0 +msgid "Portrait" +msgstr "Portrait" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard Button" +msgstr "Wizard Button" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIRECTORY" +msgstr "STOCK_DIRECTORY" + +#. module: base +#: field:ir.module.module,installed_version:0 +msgid "Latest version" +msgstr "Latest version" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_server +msgid "ir.actions.server" +msgstr "ir.actions.server" + +#. module: base +#: model:ir.actions.act_window,name:base.action_rule +#: model:ir.ui.menu,name:base.menu_action_rule +msgid "Record Rules" +msgstr "Record Rules" + +#. module: base +#: view:ir.actions.report.custom:0 +msgid "Report custom" +msgstr "Report custom" + +#. module: base +#: field:ir.actions.configuration.wizard,progress:0 +msgid "Configuration Progress" +msgstr "Configuration Progress" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_11 +msgid "Configuration Wizards" +msgstr "Configuration Wizards" + +#. module: base +#: field:res.lang,code:0 +msgid "Locale Code" +msgstr "Locale Code" + +#. module: base +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" +msgstr "Split Mode" + +#. module: base +#: model:ir.ui.menu,name:base.menu_localisation +msgid "Localisation" +msgstr "Localisation" + +#. module: base +#: selection:res.config.view,view:0 +msgid "Simplified Interface" +msgstr "Simplified Interface" + +#. module: base +#: model:res.country,name:base.cl +msgid "Chile" +msgstr "Chile" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REVERT_TO_SAVED" +msgstr "STOCK_REVERT_TO_SAVED" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_lang_import +#: model:ir.ui.menu,name:base.menu_wizard_lang_import +msgid "Import a Translation File" +msgstr "Import a Translation File" + +#. module: base +#: help:ir.values,model_id:0 +msgid "This field is not used, it only helps you to select a good model." +msgstr "This field is not used, it only helps you to select a good model." + +#. module: base +#: field:ir.ui.view,name:0 +msgid "View Name" +msgstr "View Name" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Italian / Italiano" +msgstr "Italian / Italiano" + +#. module: base +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" +msgstr "Save As Attachment Prefix" + +#. module: base +#: model:res.country,name:base.hr +msgid "Croatia" +msgstr "Croatia" + +#. module: base +#: field:ir.actions.server,mobile:0 +msgid "Mobile No" +msgstr "Mobile No" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_by_category +#: model:ir.actions.act_window,name:base.action_partner_category_form +#: model:ir.model,name:base.model_res_partner_category +#: model:ir.ui.menu,name:base.menu_partner_category_form +#: view:res.partner.category:0 +msgid "Partner Categories" +msgstr "Partner Categories" + +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "Sequence Code" + +#. module: base +#: selection:ir.report.custom,print_format:0 +msgid "a5" +msgstr "a5" + +#. module: base +#: model:res.country,name:base.sc +msgid "Seychelles" +msgstr "Seychelles" + +#. module: base +#: model:res.country,name:base.sl +msgid "Sierra Leone" +msgstr "Sierra Leone" + +#. module: base +#: view:res.company:0 +#: view:res.partner:0 +msgid "General Information" +msgstr "General Information" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-product" +msgstr "terp-product" + +#. module: base +#: model:res.country,name:base.tc +msgid "Turks and Caicos Islands" +msgstr "Turks and Caicos Islands" + +#. module: base +#: field:res.partner.bank,owner_name:0 +msgid "Account Owner" +msgstr "Account Owner" + +#. module: base +#: field:ir.attachment,res_model:0 +#: field:workflow,osv:0 +#: field:workflow.instance,res_type:0 +msgid "Resource Object" +msgstr "Resource Object" + +#. module: base +#: field:ir.cron,function:0 +#: field:res.partner.address,function:0 +#: selection:workflow.activity,kind:0 +msgid "Function" +msgstr "Function" + +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "Delivery" + +#. module: base +#: field:ir.attachment,preview:0 +msgid "Image Preview" +msgstr "Image Preview" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_pvt_ltd +msgid "Corp." +msgstr "Corp." + +#. module: base +#: model:res.country,name:base.gw +msgid "Guinea Bissau" +msgstr "Guinea Bissau" + +#. module: base +#: view:workflow.instance:0 +msgid "Workflow Instances" +msgstr "Workflow Instances" + +#. module: base +#: code:addons/base/res/partner/partner.py:0 +#, python-format +msgid "Partners: " +msgstr "Partners: " + +#. module: base +#: model:res.country,name:base.kp +msgid "North Korea" +msgstr "North Korea" + +#. module: base +#: view:ir.report.custom:0 +msgid "Unsubscribe Report" +msgstr "Unsubscribe Report" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Create Object" +msgstr "Create Object" + +#. module: base +#: field:res.bank,bic:0 +msgid "BIC/Swift code" +msgstr "BIC/Swift code" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_1 +msgid "Prospect" +msgstr "Prospect" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" +msgstr "Polish / Język polski" + +#. module: base +#: field:ir.exports,name:0 +msgid "Export Name" +msgstr "Export Name" + +#. 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 "" +"Used to select automatically the right address according to the context in " +"sales and purchases documents." + +#. module: base +#: wizard_view:module.lang.install,init:0 +msgid "Choose a language to install:" +msgstr "Choose a language to install:" + +#. module: base +#: model:res.country,name:base.lk +msgid "Sri Lanka" +msgstr "Sri Lanka" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Russian / русский язык" +msgstr "Russian / русский язык" + +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "" +"You cannot delete the language which is Active !\n" +"Please de-activate the language first." +msgstr "" diff --git a/bin/addons/base/i18n/es.po b/bin/addons/base/i18n/es.po index d2b5c5c9837..3f33a004833 100644 --- a/bin/addons/base/i18n/es.po +++ b/bin/addons/base/i18n/es.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2010-02-07 05:11+0000\n" -"Last-Translator: Jordi Esteve - http://www.zikzakmedia.com " +"PO-Revision-Date: 2010-10-12 07:44+0000\n" +"Last-Translator: Jordi Esteve (www.zikzakmedia.com) " "\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: 2010-02-08 04:44+0000\n" +"X-Launchpad-Export-Date: 2010-10-13 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -258,11 +258,6 @@ msgstr "%y - Año sin siglo como un número decimal [00,99]." msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "La regla se satisface si por lo menos un test es Verdadero (OR)" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -389,7 +384,7 @@ msgid "" "name, it returns the previous report." msgstr "" "Si marca esta opción, cuando el usuario imprima el mismo nombre de adjunto " -"por segunda vez, devolverá el informe anterior." +"por segunda vez, obtendrá el informe anterior." #. module: base #: help:res.lang,iso_code:0 @@ -434,8 +429,8 @@ 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" -"Puede usar este campo para la búsqueda rápida." +"EL código ISO del país de dos caracteres.\n" +"Puede utilizar este campo para la búsqueda rápida." #. module: base #: selection:workflow.activity,join_mode:0 @@ -818,11 +813,6 @@ msgstr "ir.modelo.config" msgid "Website" msgstr "Sitio web" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Pruebas" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1368,7 +1358,6 @@ msgstr "Número de módulos actualizados" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1476,11 +1465,6 @@ msgstr "" "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter " "especial!" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "Haga la regla global, sino necesitará ser incluida en un grupo" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2196,11 +2180,6 @@ msgstr "Roles" msgid "Countries" msgstr "Países" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Reglas de registro" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2833,11 +2812,6 @@ msgstr "Grado de satisfacción" msgid "Benin" msgstr "Benín" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "La regla se satisface si todos los tests son Verdadero (AND)" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3127,7 +3101,8 @@ 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." +"El usuario interno que se encarga de comunicarse con esta empresa, si los " +"hubiera." #. module: base #: field:res.partner,parent_id:0 @@ -3162,7 +3137,6 @@ msgstr "Kazajstán" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3280,10 +3254,10 @@ msgstr "Agrupar por" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "" -"\"%s\" contains too many dots. XML ids should not contain dots ! These are " +"'%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 del XML no deberían contener " +"'%s' contiene demasiados puntos. ¡Los ids del XML no deberían contener " "puntos! Los puntos se usan para referirse a datos de otros módulos, por " "ejemplo módulo.referencia_id" @@ -3834,11 +3808,6 @@ msgstr "Vista heredada" msgid "ir.translation" msgstr "ir.traduccion" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.regla.grupo" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4166,12 +4135,6 @@ msgstr "A4" msgid "Search View Ref." msgstr "Ref. vista búsqueda" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" -"Las reglas múltiples sobre un mismo objeto se asocian usando el operador OR" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4799,11 +4762,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "Reunión (Francesa)" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Global" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -5052,7 +5010,6 @@ msgstr "Proveedor de componentes" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -5076,8 +5033,8 @@ msgstr "Islandia" #: view:res.users:0 msgid "Roles are used to defined available actions, provided by workflows." msgstr "" -"Los roles se utilizan para definir las acciones disponibles, que son " -"proporcionadas por los flujos." +"Los roles se utilizan para definir las acciones disponibles dentro de un " +"flujo de trabajo." #. module: base #: model:res.country,name:base.de @@ -5830,7 +5787,7 @@ msgstr "Compañía por defecto por objeto" #. module: base #: view:ir.actions.configuration.wizard:0 msgid "Next Configuration Step" -msgstr "Siguiente paso configuración" +msgstr "Siguiente paso de la configuración" #. module: base #: field:res.groups,comment:0 @@ -6184,7 +6141,6 @@ msgstr "Devolución" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7969,12 +7925,6 @@ msgstr "A5" msgid "Seychelles" msgstr "Seychelles" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "¡No puede tener dos usuarios con el mismo identificador de usuario!" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -8105,6 +8055,135 @@ msgstr "Sri Lanka" msgid "Russian / русский язык" msgstr "Ruso / русский язык" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "¡No puede tener dos usuarios con el mismo identificador de usuario!" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "" +"You cannot delete the language which is Active !\n" +"Please de-activate the language first." +msgstr "" + #~ msgid "Attached ID" #~ msgstr "ID archivo adjunto" diff --git a/bin/addons/base/i18n/es_AR.po b/bin/addons/base/i18n/es_AR.po index 7c11a450582..f22db5e97a5 100644 --- a/bin/addons/base/i18n/es_AR.po +++ b/bin/addons/base/i18n/es_AR.po @@ -247,11 +247,6 @@ msgstr "%y - Año sin siglo como un número decimal [00,99]." msgid "Validated" msgstr "Validado" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "La regla se satisface si por lo menos un test es Verdadero" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -819,11 +814,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "Sitio web" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Pruebas" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1366,7 +1356,6 @@ msgstr "El método set_memory no está implementado !" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1412,14 +1401,8 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." -msgstr "" -"Introduzca el campo/expresión que devolverá la lista. Por ej. si seleccione " -"el pedido de venta en Objeto podrá realizar un bucle sobre las líneas del " -"pedido de venta. Expresión = `object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." +msgstr "Introduzca el campo/expresión que devolverá la lista. Por ej. si seleccione el pedido de venta en Objeto podrá realizar un bucle sobre las líneas del pedido de venta. Expresión = `object.order_line`." #. module: base #: selection:ir.translation,type:0 @@ -1469,11 +1452,6 @@ msgstr "" "El nombre del objeto debe empezar con x_ y no contener ningún carácter " "especial !" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2181,11 +2159,6 @@ msgstr "Roles" msgid "Countries" msgstr "Países" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Reglas de registro" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2813,11 +2786,6 @@ msgstr "Establecer a NULL" msgid "Benin" msgstr "Benín" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "La regla se satisface si todos los tests son Verdaderas (AND)" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3129,7 +3097,6 @@ msgstr "Kazajstán" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3252,9 +3219,7 @@ msgstr "Agrupar por" #. module: base #: code:addons/addons/base/ir/ir_model.py:0 #, python-format -msgid "" -"\"%s\" contains too many dots. XML ids should not contain dots ! These are " -"used to refer to other modules data, as in module.reference_id" +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 @@ -3828,11 +3793,6 @@ msgstr "ir.translation" msgid "Luxembourg" msgstr "Luxemburgo" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4121,12 +4081,6 @@ msgstr "Cabecera interna RML" msgid "a4" msgstr "A4" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" -"Las reglas múltiples sobre un mismo objeto se asocian usando el operador OR" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4795,11 +4749,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "Reunión (Francesa)" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Global" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -5033,7 +4982,6 @@ msgstr "Proveedor de componentes" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6159,7 +6107,6 @@ msgstr "Padre" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -8065,6 +8012,125 @@ msgstr "Sri Lanka" msgid "Russian / русский язык" msgstr "Ruso / русский язык" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "The operation cannot be completed, probably due to the following:\n- deletion: you may be trying to delete a record while other records still reference it\n- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "\n\n[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" + #, python-format #~ msgid "" #~ "Some installed modules depends on the module you plan to desinstall :\n" diff --git a/bin/addons/base/i18n/es_EC.po b/bin/addons/base/i18n/es_EC.po index 13bc2e28a25..edd17754b3a 100644 --- a/bin/addons/base/i18n/es_EC.po +++ b/bin/addons/base/i18n/es_EC.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2009-12-27 01:49+0000\n" +"PO-Revision-Date: 2010-09-18 22:18+0000\n" "Last-Translator: Cristian Salamea (GnuThink) \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: 2010-01-14 04:48+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:47+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -257,11 +257,6 @@ msgstr "%y - Año sin siglo como un número decimal [00,99]." msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "La regla se satisface si por lo menos un test es Verdadero (OR)" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -817,11 +812,6 @@ msgstr "ir.modelo.config" msgid "Website" msgstr "Sitio web" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Pruebas" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1367,7 +1357,6 @@ msgstr "Número de módulos actualizados" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1418,14 +1407,8 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." -msgstr "" -"Introduzca el campo/expresión que devolverá la lista. Por ej. si seleccione " -"el pedido de venta en Objeto podrá realizar un bucle sobre las líneas del " -"pedido de venta. Expresión = `object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." +msgstr "Introduzca el campo/expresión que devolverá la lista. Por ej. si seleccione el pedido de venta en Objeto podrá realizar un bucle sobre las líneas del pedido de venta. Expresión = `object.order_line`." #. module: base #: selection:ir.translation,type:0 @@ -1475,11 +1458,6 @@ msgstr "" "¡El nombre del objeto debe empezar con x_ y no contener ningún carácter " "especial!" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "Haga la regla global, sino necesitará ser incluida en un grupo" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2195,11 +2173,6 @@ msgstr "Roles" msgid "Countries" msgstr "Países" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Reglas de registro" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2832,11 +2805,6 @@ msgstr "Grado de satisfacción" msgid "Benin" msgstr "Benín" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "La regla se satisface si todos los tests son Verdadero (AND)" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3161,7 +3129,6 @@ msgstr "Kazajstán" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3278,13 +3245,8 @@ msgstr "Agrupar por" #. 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 del XML no deberían contener " -"puntos! Los puntos se usan para referirse a datos de otros módulos, por " -"ejemplo módulo.referencia_id" +msgid "'%s' contains too many dots. XML ids should not contain dots ! These are used to refer to other modules data, as in module.reference_id" +msgstr "'%s' contiene demasiados puntos. ¡Los ids del XML no deberían contener puntos! Los puntos se usan para referirse a datos de otros módulos, por ejemplo módulo.referencia_id" #. module: base #: selection:ir.ui.menu,icon:0 @@ -3833,11 +3795,6 @@ msgstr "Vista heredada" msgid "ir.translation" msgstr "ir.traduccion" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.regla.grupo" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4165,12 +4122,6 @@ msgstr "A4" msgid "Search View Ref." msgstr "Ref. vista búsqueda" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" -"Las reglas múltiples sobre un mismo objeto se asocian usando el operador OR" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4798,11 +4749,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "Reunión (Francesa)" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Global" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -5051,7 +4997,6 @@ msgstr "Proveedor de componentes" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6183,7 +6128,6 @@ msgstr "Devolución" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7968,12 +7912,6 @@ msgstr "A5" msgid "Seychelles" msgstr "Seychelles" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "¡No puede tener dos usuarios con el mismo identificador de usuario!" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -8103,3 +8041,137 @@ msgstr "Sri Lanka" #: selection:module.lang.install,init,lang:0 msgid "Russian / русский язык" msgstr "Ruso / русский язык" + +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "¡No puede tener dos usuarios con el mismo identificador!" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "Tamaño del campo nunca puede ser menor que 1 !" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "Acceso directo a este menú ya existe !" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" +"No puede tener varios registros con el mismo id para el mismo módulo !" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "Tu contrato de mantenimiento esta ya suscrito en el sistema !" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "El nombre del módulo debe ser único !" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "El ID del certificado del módulo debe ser único !" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "El codigo del Título del Partner debe ser único" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "El nombre del Partner debe ser único" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "El nombre del país debe ser único" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "El codigo del pais debe ser unico" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "El nombre del lenguaje debe ser unico" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "El codigo del lenguaje debe ser unico" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "El nombre del grupo debe ser unico" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "Error de restriccion" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" +"La operacion no puede ser completada, probablemente sucedio lo siguiente:\n" +"- borrado: esta tratando de borrar un registro que hacer referencia a otro\n" +"- creacion/actualizacion: un campo requerido no fue llenado correctamente" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" +"\n" +"\n" +"[objeto con referencia: %s - %s]" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "Error de Integridad" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" diff --git a/bin/addons/base/i18n/et.po b/bin/addons/base/i18n/et.po index 309dca1a8ff..46bbbbbaa59 100644 --- a/bin/addons/base/i18n/et.po +++ b/bin/addons/base/i18n/et.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2010-03-19 08:39+0000\n" +"PO-Revision-Date: 2010-09-29 07:51+0000\n" "Last-Translator: OpenERP Administrators \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: 2010-03-20 04:42+0000\n" +"X-Launchpad-Export-Date: 2010-09-30 04:36+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -180,7 +180,7 @@ msgstr "Otsi partnerit" #: code:addons/base/module/wizard/wizard_export_lang.py:0 #, python-format msgid "new" -msgstr "" +msgstr "uus" #. module: base #: selection:ir.ui.menu,icon:0 @@ -215,6 +215,8 @@ 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 "" +"Salvest see dokument %s faili ja muuda seda spetsiaaltarkvaraga või " +"tekstiredaktoriga. Faili kodeering on UTF-8." #. module: base #: selection:ir.ui.menu,icon:0 @@ -225,13 +227,13 @@ msgstr "STOCK_DELETE" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "Password mismatch !" -msgstr "" +msgstr "Salasõna ei klapi !" #. module: base #: code:addons/base/module/module.py:0 #, python-format msgid "This url '%s' must provide an html file with links to zip modules" -msgstr "" +msgstr "See url '%s' peab andma html faili, mis viitab zip moodulitele" #. module: base #: selection:res.request,state:0 @@ -253,11 +255,6 @@ msgstr "%y - Aasta ilma sajandita kümnendarvuna [00,99]." msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "See reegel on rahuldatud kui vähemalt üks test on tõene" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -359,6 +356,8 @@ msgid "" "You can not remove the admin user as it is used internally for resources " "created by OpenERP (updates, module installation, ...)" msgstr "" +"Sa ei saa eemaldada kasutajat 'admin' sest seda kasutatakse siseselt Open " +"ERP poolt loodud vahendite jaoks (uuendused, moodulite paigaldamine, ...)" #. module: base #: model:res.country,name:base.gf @@ -381,6 +380,8 @@ msgid "" "If you check this, then the second time the user prints with same attachment " "name, it returns the previous report." msgstr "" +"Selle kasti märgistamisel pöördutakse eelmise aruande juurde, kui kasutaja " +"prindib olemasoleva manuse nimega" #. module: base #: help:res.lang,iso_code:0 @@ -464,7 +465,7 @@ msgstr "Laiendatud" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "" +msgstr "Kohandatud väljadel peab olema nimi mis algab 'x_'-ga !" #. module: base #: help:ir.actions.server,action_id:0 @@ -495,7 +496,7 @@ msgstr "Jordaania" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "You can not remove the model '%s' !" -msgstr "" +msgstr "Sa ei saa eemaldada mudelit '%s'!" #. module: base #: model:res.country,name:base.er @@ -804,11 +805,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "Veebileht" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Testid" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -847,13 +843,13 @@ msgstr "RML" #. module: base #: selection:ir.ui.view,type:0 msgid "Search" -msgstr "" +msgstr "Otsi" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Pie charts need exactly two fields" -msgstr "" +msgstr "Sektordiagrammid vajavad täpselt kahte välja" #. module: base #: help:wizard.module.lang.export,lang:0 @@ -997,7 +993,7 @@ msgstr "STOCK_COPY" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "Model %s Does not Exist !" -msgstr "" +msgstr "Mudelit %s ei eksisteeri !" #. module: base #: code:addons/base/module/module.py:0 @@ -1006,6 +1002,8 @@ msgid "" "You try to install the module '%s' that depends on the module:'%s'.\n" "But this module is not available in your system." msgstr "" +"Sa proovid installeerida moodulit '%s' mis sõltub moodulist:'%s'.\n" +"Aga seda moodulit pole sinu süsteemis saadaval." #. module: base #: model:ir.model,name:base.model_res_request_link @@ -1063,7 +1061,7 @@ msgstr "Päev: %(day)s" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "You can not read this document! (%s)" -msgstr "" +msgstr "Sa ei saa lugeda seda dokumenti! (%s)" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1125,7 +1123,7 @@ msgstr "Kohandatud aruanne" #: code:addons/base/res/res_user.py:0 #, python-format msgid " (copy)" -msgstr "" +msgstr " (koopia)" #. module: base #: view:ir.sequence:0 @@ -1140,7 +1138,7 @@ msgstr "7. %H:%M:%S ==> 18:25:20" #. module: base #: help:res.users,company_id:0 msgid "The company this user is currently working on." -msgstr "" +msgstr "Firma kus see kasutaja hetkel töötab." #. module: base #: help:ir.actions.server,message:0 @@ -1188,7 +1186,7 @@ msgstr "Valem" #: code:addons/base/res/res_user.py:0 #, python-format msgid "Can not remove root user!" -msgstr "" +msgstr "Ei saa eemaldada root kasutajat!" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1290,7 +1288,7 @@ msgstr "STOCK_PROPERTIES" #. module: base #: view:res.partner.address:0 msgid "Search Contact" -msgstr "" +msgstr "Otsi kontakti" #. module: base #: view:ir.module.module:0 @@ -1343,7 +1341,6 @@ msgstr "Uuendatud moodulite arv" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1355,7 +1352,7 @@ msgstr "Grupid" #. module: base #: constraint:res.users:0 msgid "This user can not connect using this company !" -msgstr "" +msgstr "See kasutaja ei saa ühendada kasutades seda firmat !" #. module: base #: model:res.country,name:base.bz @@ -1394,14 +1391,8 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." -msgstr "" -"Sisesta väli/avaldis, mis tagastab nimekirja. Nt vali müügikorraldus " -"objektis ja sul saab olla kordus müügikorralduse real. Avaldis = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." +msgstr "Sisesta väli/avaldis, mis tagastab nimekirja. Nt vali müügikorraldus objektis ja sul saab olla kordus müügikorralduse real. Avaldis = `object.order_line`." #. module: base #: selection:ir.translation,type:0 @@ -1450,11 +1441,6 @@ msgid "" msgstr "" "Objekti nimi peab algama x_'ga ja ei tohi sisaldada ühtegi erisümbolit !" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -1471,7 +1457,7 @@ msgstr "Hetke määr" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Greek / Ελληνικά" -msgstr "" +msgstr "Greeka / Ελληνικά" #. module: base #: view:ir.values:0 @@ -1506,7 +1492,7 @@ msgstr "Kinnitus" #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Enter at least one field !" -msgstr "" +msgstr "Sisesta vähemalt üks väli!" #. module: base #: field:ir.ui.view_sc,name:0 @@ -1557,7 +1543,7 @@ msgstr "" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "You can not write in this document! (%s)" -msgstr "" +msgstr "Sa ei saa kirjutada sellesse dokumenti! (%s)" #. module: base #: view:ir.actions.server:0 @@ -1717,7 +1703,7 @@ msgstr "Kehtiv" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "You can not delete this document! (%s)" -msgstr "" +msgstr "Sa ei saa kustutada seda dokumenti! (%s)" #. module: base #: selection:ir.translation,type:0 @@ -1728,7 +1714,7 @@ msgstr "XSL" #: code:addons/base/module/module.py:0 #, python-format msgid "Can not upgrade module '%s'. It is not installed." -msgstr "" +msgstr "Ei saa uuendata moodulit '%s'. See pole paigaldatud" #. module: base #: model:res.country,name:base.cu @@ -1972,7 +1958,7 @@ msgstr "Moodul" #: model:ir.actions.act_window,name:base.action_res_bank_form #: model:ir.ui.menu,name:base.menu_action_res_bank_form msgid "Bank List" -msgstr "" +msgstr "Bankade nimekiri" #. module: base #: field:ir.attachment,description:0 @@ -2047,7 +2033,7 @@ msgstr "" #: code:addons/base/ir/ir_actions.py:0 #, python-format msgid "Please specify an action to launch !" -msgstr "" +msgstr "Palun määra toiming, mida alustada!" #. module: base #: selection:ir.ui.menu,icon:0 @@ -2113,7 +2099,7 @@ msgstr "terp-konto" #: code:addons/base/module/module.py:0 #, python-format msgid "Recursion error in modules dependencies !" -msgstr "" +msgstr "Rekursiooni viga moodulite sõltuvustes !" #. module: base #: view:ir.model:0 @@ -2170,11 +2156,6 @@ msgstr "Rollid" msgid "Countries" msgstr "Riigid" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Kirje reeglid" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2377,12 +2358,14 @@ msgid "" "spreadsheet software. The file encoding is UTF-8. You have to translate the " "latest column before reimporting it." msgstr "" +"Salvetsa see dokument .CSV faili ja ava oma lemmik tabelarvutusprogrammiga. " +"Faili kodeering on UTF-8. Sa pead tõlkima viimase veeru enne taasimportimist." #. module: base #: model:ir.actions.act_window,name:base.action_partner_customer_form #: view:res.partner:0 msgid "Customers" -msgstr "" +msgstr "Kliendid" #. module: base #: model:res.country,name:base.au @@ -2556,6 +2539,8 @@ msgid "" "You try to upgrade a module that depends on the module: %s.\n" "But this module is not available in your system." msgstr "" +"Sa püüad uuendada moodulit, mis sõltub moodulist: %s.\n" +"Aga seda moodulit pole sinu süsteemis saadaval." #. module: base #: view:res.partner.address:0 @@ -2571,7 +2556,7 @@ msgstr "Litsents" #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Invalid operation" -msgstr "" +msgstr "Sobimatu tegevus" #. module: base #: selection:ir.ui.menu,icon:0 @@ -2615,7 +2600,7 @@ msgstr "Mooduli import" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "You can not remove the field '%s' !" -msgstr "" +msgstr "Sa ei saa eemaldada välja '%s'!" #. module: base #: field:res.bank,zip:0 @@ -2647,7 +2632,7 @@ msgstr "%c - Sobiv kuupäeva ja aja esitlus." #. module: base #: selection:module.lang.install,init,lang:0 msgid "Finland / Suomi" -msgstr "" +msgstr "Soome / Suomi" #. module: base #: model:res.country,name:base.bo @@ -2694,6 +2679,7 @@ msgstr "Reeglid" #, python-format 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" #. module: base #: help:ir.values,key2:0 @@ -2800,11 +2786,6 @@ msgstr "Meeleolu" msgid "Benin" msgstr "Benin" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "Reegel on rahuldatud, kui kõik testid on Tõesed (AND)" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -2855,7 +2836,7 @@ msgstr "Turvalisus" #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Using a relation field which uses an unknown object" -msgstr "" +msgstr "Kasutan seose välja, mis omakorda kasutab tundmatut objekti" #. module: base #: model:res.country,name:base.za @@ -3127,7 +3108,6 @@ msgstr "Kasahstan" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3165,7 +3145,7 @@ msgstr "Näidisandmed" #. module: base #: selection:module.lang.install,init,lang:0 msgid "English (UK)" -msgstr "" +msgstr "Inglise (Suurbritannia)" #. module: base #: model:res.country,name:base.aq @@ -3190,7 +3170,7 @@ msgstr "Veeb" #. module: base #: selection:module.lang.install,init,lang:0 msgid "English (CA)" -msgstr "" +msgstr "Inglise (CA)" #. module: base #: field:res.partner.event,planned_revenue:0 @@ -3244,9 +3224,7 @@ msgstr "Rühmitamine" #. 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" +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 @@ -3315,7 +3293,7 @@ msgstr "Panga tüüp" #: code:addons/base/res/res_user.py:0 #, python-format msgid "The name of the group can not start with \"-\"" -msgstr "" +msgstr "Grupi nimi ei tohi alata \"-\" märgiga" #. module: base #: wizard_view:module.upgrade,end:0 @@ -3380,7 +3358,7 @@ msgstr "Kuhja" #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Tree can only be used in tabular reports" -msgstr "" +msgstr "Puud saab kasutada ainult tabulaarsetes aruannetes" #. module: base #: rml:ir.module.reference:0 @@ -3794,11 +3772,6 @@ msgstr "Päritud vaade" msgid "ir.translation" msgstr "ir.translation" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -3908,7 +3881,7 @@ msgstr "Mosambiik" #: model:ir.actions.act_window,name:base.grant_menu_access #: model:ir.ui.menu,name:base.menu_grant_menu_access msgid "Manage Menus" -msgstr "" +msgstr "Halda menüüsid" #. module: base #: field:ir.actions.server,message:0 @@ -4012,7 +3985,7 @@ msgstr "Mongoolia" #: code:addons/base/res/res_user.py:0 #, python-format msgid "Error" -msgstr "" +msgstr "Tõrge" #. module: base #: view:res.partner.som:0 @@ -4062,7 +4035,7 @@ msgstr "Failivorming" #. module: base #: field:res.lang,iso_code:0 msgid "ISO code" -msgstr "" +msgstr "ISO kood" #. module: base #: model:ir.model,name:base.model_res_config_view @@ -4126,11 +4099,6 @@ msgstr "a4" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "Mitmikreeglid samadel objektidel ühendatakse operaatoriga O" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4318,7 +4286,7 @@ msgstr "Objekti väli" #. module: base #: selection:module.lang.install,init,lang:0 msgid "French (CH) / Français (CH)" -msgstr "" +msgstr "Prantsuse (CH) / Français (CH)" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4392,7 +4360,7 @@ msgstr "Tühista eemaldus" #: view:res.partner:0 #: view:res.partner.address:0 msgid "Communication" -msgstr "" +msgstr "Suhtlemine" #. module: base #: model:ir.model,name:base.model_ir_server_object_lines @@ -4403,7 +4371,7 @@ msgstr "ir.server.object.lines" #: code:addons/base/module/module.py:0 #, python-format msgid "Module %s: Invalid Quality Certificate" -msgstr "" +msgstr "Moodul %s: Vigane kvaliteedisertifikaat" #. module: base #: model:res.country,name:base.kw @@ -4439,7 +4407,7 @@ msgstr "res.partner.event" #. module: base #: field:res.company,user_ids:0 msgid "Accepted Users" -msgstr "" +msgstr "Aksepteeritud kasutajad" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4600,6 +4568,8 @@ msgid "" "Can not create the module file:\n" " %s" msgstr "" +"Ei saa luua mooduli faili:\n" +" %s" #. module: base #: model:ir.actions.wizard,name:base.wizard_update @@ -4615,7 +4585,7 @@ msgstr "Jätka" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Thai / ภาษาไทย" -msgstr "" +msgstr "Tai / ภาษาไทย" #. module: base #: model:ir.actions.act_window,name:base.ir_property_form @@ -4712,7 +4682,7 @@ msgstr "Objektid" #. module: base #: field:ir.model.fields,selectable:0 msgid "Selectable" -msgstr "" +msgstr "Valitav" #. module: base #: view:res.request.link:0 @@ -4755,11 +4725,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "Reunion (Prantsuse)" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Globaalne" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4774,7 +4739,7 @@ msgstr "Saalomoni Saared" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "AccessError" -msgstr "" +msgstr "Ligipääsuviga" #. module: base #: view:res.lang:0 @@ -4903,12 +4868,12 @@ msgstr "STOCK_GO_BACK" #. module: base #: view:ir.actions.act_window:0 msgid "General Settings" -msgstr "" +msgstr "Üldised seadistused" #. module: base #: model:ir.ui.menu,name:base.custom_shortcuts msgid "Custom Shortcuts" -msgstr "" +msgstr "Kohandatud kiirklahvid" #. module: base #: model:res.country,name:base.dz @@ -4954,7 +4919,7 @@ msgstr "Python kood" #: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format msgid "Can not create the module file: %s !" -msgstr "" +msgstr "Ei saa luua mooduli faili: %s !" #. module: base #: model:ir.module.module,description:base.module_meta_information @@ -4980,7 +4945,7 @@ msgstr "Tühista" #: code:addons/base/ir/ir_actions.py:0 #, python-format msgid "Please specify server option --smtp-from !" -msgstr "" +msgstr "Palun määra serveril valik --smtp-from!" #. module: base #: selection:wizard.module.lang.export,format:0 @@ -5008,7 +4973,6 @@ msgstr "Komponentidega varustaja" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -5378,7 +5342,7 @@ msgstr "Aktiivsed partneri sündmused" #: model:ir.ui.menu,name:base.menu_partner_function_form #: view:res.partner.function:0 msgid "Contact Functions" -msgstr "" +msgstr "Kontaktifunktsioonid" #. module: base #: view:multi_company.default:0 @@ -5421,7 +5385,7 @@ msgstr "Valik" #. module: base #: field:ir.actions.act_window,search_view:0 msgid "Search View" -msgstr "" +msgstr "Otsinguvaade" #. module: base #: field:ir.rule,domain_force:0 @@ -5531,7 +5495,7 @@ msgstr "Python toiming" #. module: base #: selection:module.lang.install,init,lang:0 msgid "English (US)" -msgstr "" +msgstr "Inglise (USA)" #. module: base #: field:res.partner.event,probability:0 @@ -5574,7 +5538,7 @@ msgstr "Tegevus" #: view:res.partner:0 #: view:res.partner.address:0 msgid "Postal Address" -msgstr "" +msgstr "Postiaadress" #. module: base #: field:res.company,parent_id:0 @@ -5719,7 +5683,7 @@ msgstr "" #: code:addons/base/maintenance/maintenance.py:0 #, python-format msgid "This error occurs on database %s" -msgstr "" +msgstr "See viga juhtus andmebaasis %s" #. module: base #: wizard_button:base.module.import,init,import:0 @@ -5773,13 +5737,13 @@ msgstr "Kaskaad" #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Field %d should be a figure" -msgstr "" +msgstr "Väli %d peaks olema number" #. module: base #: model:ir.actions.act_window,name:base.action_inventory_form #: model:ir.ui.menu,name:base.menu_action_inventory_form msgid "Default Company per Object" -msgstr "" +msgstr "Vaikimisi firma objektikohta" #. module: base #: view:ir.actions.configuration.wizard:0 @@ -6134,7 +6098,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7910,12 +7873,6 @@ msgstr "a5" msgid "Seychelles" msgstr "Seišellid" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -8046,6 +8003,133 @@ msgstr "Sri Lanka" msgid "Russian / русский язык" msgstr "Vene keel / русский язык" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" + #~ msgid "Attached ID" #~ msgstr "Manustatud ID" diff --git a/bin/addons/base/i18n/eu.po b/bin/addons/base/i18n/eu.po index 6f7a7f5cbcf..18076ad3f73 100644 --- a/bin/addons/base/i18n/eu.po +++ b/bin/addons/base/i18n/eu.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-01-14 04:45+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:42+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -249,11 +249,6 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -796,11 +791,6 @@ msgstr "" msgid "Website" msgstr "" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1327,7 +1317,6 @@ msgstr "" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1376,10 +1365,7 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." msgstr "" #. module: base @@ -1428,11 +1414,6 @@ msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2142,11 +2123,6 @@ msgstr "" msgid "Countries" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2757,11 +2733,6 @@ msgstr "" msgid "Benin" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3081,7 +3052,6 @@ msgstr "" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3196,9 +3166,7 @@ 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" +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 @@ -3741,11 +3709,6 @@ msgstr "" msgid "ir.translation" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4073,11 +4036,6 @@ msgstr "" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4694,11 +4652,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4945,7 +4898,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6058,7 +6010,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7807,12 +7758,6 @@ msgstr "" msgid "Seychelles" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7940,3 +7885,130 @@ msgstr "" #: selection:module.lang.install,init,lang:0 msgid "Russian / русский язык" msgstr "" + +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" diff --git a/bin/addons/base/i18n/fa.po b/bin/addons/base/i18n/fa.po new file mode 100644 index 00000000000..e0e1eed02c6 --- /dev/null +++ b/bin/addons/base/i18n/fa.po @@ -0,0 +1,8235 @@ +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-12-18 08:39+0000\n" +"PO-Revision-Date: 2010-10-12 07:54+0000\n" +"Last-Translator: Sadegh Ismael Nattaj \n" +"Language-Team: OpenERP Iran \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2010-10-13 04:57+0000\n" +"X-Generator: Launchpad (build Unknown)\n" +"X-Poedit-Country: IRAN, ISLAMIC REPUBLIC OF\n" +"X-Poedit-Language: Persian\n" + +#. module: base +#: model:res.country,name:base.sh +msgid "Saint Helena" +msgstr "سنت هلن" + +#. module: base +#: wizard_view:res.partner.sms_send,init:0 +msgid "SMS - Gateway: clickatell" +msgstr "دروازه پیامک: clickatell" + +#. module: base +#: view:res.lang:0 +msgid "%j - Day of the year as a decimal number [001,366]." +msgstr "%j - روزِ سال مانند یک شماره اعشاری [001,366]." + +#. module: base +#: field:ir.values,meta_unpickle:0 +msgid "Metadata" +msgstr "فراداده" + +#. module: base +#: field:ir.ui.view,arch:0 +#: field:ir.ui.view.custom,arch:0 +msgid "View Architecture" +msgstr "ساختمان نما" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not create this kind of document! (%s)" +msgstr "شما نمی‌توانید این نوع از سند را پدید آورید! (%s)" + +#. module: base +#: wizard_field:module.lang.import,init,code:0 +msgid "Code (eg:en__US)" +msgstr "کد (مثلا:en__US)" + +#. module: base +#: view:workflow:0 +#: field:workflow.activity,wkf_id:0 +#: field:workflow.instance,wkf_id:0 +msgid "Workflow" +msgstr "کارگردش" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "To browse official translations, you can visit this link: " +msgstr "" +"برای گشتن در فهرست برگردان‌های رسمی می‌توانید از این لینک دیدن کنید: " + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Hungarian / Magyar" +msgstr "مجاری / Magyar" + +#. module: base +#: field:ir.actions.server,wkf_model_id:0 +msgid "Workflow On" +msgstr "کارگردش روی" + +#. module: base +#: view:ir.module.module:0 +msgid "Created Views" +msgstr "نماهای پدیدآمده" + +#. module: base +#: view:workflow.activity:0 +msgid "Outgoing transitions" +msgstr "گذار صادره" + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Yearly" +msgstr "سالیانه" + +#. module: base +#: field:ir.actions.act_window,target:0 +msgid "Target Window" +msgstr "پنجره هدف" + +#. module: base +#: model:ir.actions.todo,note:base.config_wizard_simple_view +msgid "" +"Choose between the \"Simplified Interface\" or the extended one.\n" +"If you are testing or using OpenERP for the first time, we suggest you to " +"use\n" +"the simplified interface, which has less options and fields but is easier " +"to\n" +"understand. You will be able to switch to the extended view later.\n" +" " +msgstr "" +"از بین \"رابط ساده‌سازی شده\" یا نمونه گسترده آن گزینش کنید.\n" +"اگر برای نخستین بار است که اپن ای‌آر‌پی را بکار می‌برید، پیشنهاد می‌کنیم تا\n" +"رابط ساده‌سازی شده را بکار گیرید که دارای گزینه‌ها و فیلدهای کمتری است\n" +"اما برای کار و فهم ساده‌تر است. شما می‌توانید به نمای گسترده پسا\n" +"می‌توانید جابجایی داشته باشید.\n" +" " + +#. module: base +#: field:ir.rule,operand:0 +msgid "Operand" +msgstr "عملوند" + +#. module: base +#: model:res.country,name:base.kr +msgid "South Korea" +msgstr "کره جنوبی" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "گذارها" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view_custom +msgid "ir.ui.view.custom" +msgstr "ir.ui.view.custom" + +#. module: base +#: model:res.country,name:base.sz +msgid "Swaziland" +msgstr "سوازیلند" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_report_custom +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.report.custom" +msgstr "ir.actions.report.custom" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CANCEL" +msgstr "STOCK_CANCEL" + +#. module: base +#: field:ir.report.custom,sortby:0 +msgid "Sorted By" +msgstr "ترتیب بر حسب" + +#. module: base +#: field:ir.sequence,number_increment:0 +msgid "Increment Number" +msgstr "افزایش شماره" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_company_tree +#: model:ir.ui.menu,name:base.menu_action_res_company_tree +msgid "Company's Structure" +msgstr "ساختار شرکت" + +#. module: base +#: model:ir.model,name:base.model_ir_report_custom_fields +msgid "ir.report.custom.fields" +msgstr "ir.report.custom.fields" + +#. module: base +#: view:res.partner:0 +msgid "Search Partner" +msgstr "جستجوی همکار" + +#. module: base +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#, python-format +msgid "new" +msgstr "تازه" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_TOP" +msgstr "STOCK_GOTO_TOP" + +#. module: base +#: field:ir.actions.report.custom,multi:0 +#: field:ir.actions.report.xml,multi:0 +msgid "On multiple doc." +msgstr "روی چندین سند." + +#. module: base +#: field:ir.module.category,module_nr:0 +msgid "Number of Modules" +msgstr "تعداد پیمانه‌ها" + +#. module: base +#: field:res.partner.bank.type.field,size:0 +msgid "Max. Size" +msgstr "اندازه بیشینه" + +#. module: base +#: field:res.partner.address,name:0 +msgid "Contact Name" +msgstr "نام تماس" + +#. module: base +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#, python-format +msgid "" +"Save this document to a %s file and edit it with a specific software or a " +"text editor. The file encoding is UTF-8." +msgstr "" +"این سند را در یک پرونده %s ذخیره و با نرم افزار مخصوص یا ویرایش‌گر متنی آن " +"را ویرایش کنید. کدگذاری پرونده UTF-8 است." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "STOCK_DELETE" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "Password mismatch !" +msgstr "گذرواژه جور نیست!" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "This url '%s' must provide an html file with links to zip modules" +msgstr "" +"این URL '%s' یک پرونده html است که دارای پیوندهایی به پیمانه‌های zip است." + +#. module: base +#: selection:res.request,state:0 +msgid "active" +msgstr "فعال" + +#. module: base +#: field:ir.actions.wizard,wiz_name:0 +msgid "Wizard Name" +msgstr "نام تردست" + +#. module: base +#: view:res.lang:0 +msgid "%y - Year without century as a decimal number [00,99]." +msgstr "%y - سال بدون دو شماره نخست به شکل یک شماره بین [۰۰ تا ۹۹]." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_FIRST" +msgstr "STOCK_GOTO_FIRST" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Get Max" +msgstr "بیشینه دریافت" + +#. module: base +#: help:ir.actions.act_window,limit:0 +msgid "Default limit for the list view" +msgstr "محدودیت پیش‌فرض برای نمای فهرستی" + +#. module: base +#: field:ir.model.data,date_update:0 +msgid "Update Date" +msgstr "تاریخ بروزرسانی" + +#. module: base +#: field:ir.actions.act_window,src_model:0 +msgid "Source Object" +msgstr "شی مبدا" + +#. module: base +#: model:ir.actions.act_window,name:base.act_ir_actions_todo_form +#: view:ir.actions.todo:0 +#: model:ir.ui.menu,name:base.menu_ir_actions_todo_form +msgid "Config Wizard Steps" +msgstr "پیکربندی گام‌های تردست" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view_sc +msgid "ir.ui.view_sc" +msgstr "ir.ui.view_sc" + +#. module: base +#: field:ir.model.access,group_id:0 +#: field:ir.rule,rule_group:0 +msgid "Group" +msgstr "گروه" + +#. module: base +#: field:ir.exports.line,name:0 +#: field:ir.translation,name:0 +#: field:res.partner.bank.type.field,name:0 +msgid "Field Name" +msgstr "نام فیلد" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_uninstall +#: model:ir.ui.menu,name:base.menu_module_tree_uninstall +msgid "Uninstalled modules" +msgstr "پیمانه‌های برکنار شده" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "txt" +msgstr "txt" + +#. module: base +#: wizard_view:server.action.create,init:0 +#: wizard_field:server.action.create,init,type:0 +msgid "Select Action Type" +msgstr "نوع کنش را برگزینید" + +#. module: base +#: selection:ir.actions.todo,type:0 +msgid "Configure" +msgstr "پیکربندی" + +#. module: base +#: model:res.country,name:base.tv +msgid "Tuvalu" +msgstr "تووالو" + +#. module: base +#: selection:ir.model,state:0 +#: selection:ir.model.grid,state:0 +msgid "Custom Object" +msgstr "شی دلخواه" + +#. module: base +#: field:res.lang,date_format:0 +msgid "Date Format" +msgstr "قالب تاریخ" + +#. module: base +#: field:res.bank,email:0 +#: field:res.partner.address,email:0 +msgid "E-Mail" +msgstr "ایمیل" + +#. module: base +#: model:res.country,name:base.an +msgid "Netherlands Antilles" +msgstr "آنتیل هلند" + +#. module: base +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "" +"You can not remove the admin user as it is used internally for resources " +"created by OpenERP (updates, module installation, ...)" +msgstr "" +"شما نمی‌توانید کاربر راهبر (admin) را بردارید زیرا این کاربر توسط اپن " +"ای‌آر‌پی برای ساخت منابع (بروزرسانی‌ها، برپایی پیمانه و از این دست) بکاررفته " +"است" + +#. module: base +#: model:res.country,name:base.gf +msgid "French Guyana" +msgstr "امریکا/گویانا" + +#. module: base +#: field:ir.ui.view.custom,ref_id:0 +msgid "Original View" +msgstr "نمای بُنیانی" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Bosnian / bosanski jezik" +msgstr "بوسنیایی / bosanski jezik" + +#. module: base +#: help:ir.actions.report.xml,attachment_use:0 +msgid "" +"If you check this, then the second time the user prints with same attachment " +"name, it returns the previous report." +msgstr "" +"اگر شما این را تیک بزنید، دومین باری که کاربر پیوستی با همان نام را چاپ " +"می‌کند، گزارش پیشین بازگردانده می‌شود." + +#. module: base +#: help:res.lang,iso_code:0 +msgid "This ISO code is the name of po files to use for translations" +msgstr "این کد iso نام پرونده‌های po بکارگرفته برای برگردان‌هاست" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_REWIND" +msgstr "STOCK_MEDIA_REWIND" + +#. module: base +#: field:ir.actions.todo,note:0 +msgid "Text" +msgstr "متن" + +#. module: base +#: field:res.country,name:0 +msgid "Country Name" +msgstr "نام کشور" + +#. module: base +#: model:res.country,name:base.coreturn +msgid "Colombia" +msgstr "کلمبیا" + +#. module: base +#: view:ir.module.module:0 +msgid "Schedule Upgrade" +msgstr "ارتقا زمان‌بندی شده" + +#. module: base +#: field:ir.actions.report.custom,report_id:0 +msgid "Report Ref." +msgstr "مرجع گزارش" + +#. module: base +#: help:res.country,code:0 +msgid "" +"The ISO country code in two chars.\n" +"You can use this field for quick search." +msgstr "" +"کد دو نویسه‌ای ایزوی کشور.\n" +"شما می‌توانید این فیلد را برای جستجوی سریع بکار گیرید." + +#. module: base +#: selection:workflow.activity,join_mode:0 +#: selection:workflow.activity,split_mode:0 +msgid "Xor" +msgstr "Xor" + +#. module: base +#: view:res.partner:0 +msgid "Sales & Purchases" +msgstr "فروش‌ها و خریدها" + +#. module: base +#: view:ir.actions.wizard:0 +#: field:wizard.ir.model.menu.create.line,wizard_id:0 +msgid "Wizard" +msgstr "تَردست" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CUT" +msgstr "STOCK_CUT" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_wizard +#: view:ir.actions.wizard:0 +#: model:ir.ui.menu,name:base.menu_ir_action_wizard +msgid "Wizards" +msgstr "تَردست‌ها" + +#. module: base +#: selection:res.config.view,view:0 +msgid "Extended Interface" +msgstr "واسط گسترده" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "Custom fields must have a name that starts with 'x_' !" +msgstr "نام فیلدهای دلخواه باید با 'x_' آغاز شوند!" + +#. module: base +#: help:ir.actions.server,action_id:0 +msgid "Select the Action Window, Report, Wizard to be executed." +msgstr "پنچره کُنش، گزارش، تَردست را برای اجرا برگزینید." + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export done" +msgstr "برونش انجام شد" + +#. module: base +#: view:ir.model:0 +msgid "Model Description" +msgstr "شرح مدل" + +#. module: base +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "عبارت رهاساز" + +#. module: base +#: model:res.country,name:base.jo +msgid "Jordan" +msgstr "اردن" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not remove the model '%s' !" +msgstr "شما نمی‌توانید مدل '%s' را بردارید!" + +#. module: base +#: model:res.country,name:base.er +msgid "Eritrea" +msgstr "اریتره" + +#. module: base +#: view:res.config.view:0 +msgid "Configure simple view" +msgstr "نمای ساده پیکربندی" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Bulgarian / български" +msgstr "بلغاری / български" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_actions +msgid "ir.actions.actions" +msgstr "ir.actions.actions" + +#. module: base +#: model:ir.actions.act_window,name:base.action_report_custom +#: view:ir.report.custom:0 +msgid "Custom Report" +msgstr "گزارش دلخواه" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Bar Chart" +msgstr "نمودار میله‌ای" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_ERROR" +msgstr "STOCK_DIALOG_ERROR" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_INDEX" +msgstr "STOCK_INDEX" + +#. module: base +#: model:res.country,name:base.rs +msgid "Serbia" +msgstr "صربستان" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard View" +msgstr "نمای تردست" + +#. module: base +#: model:res.country,name:base.kh +msgid "Cambodia, Kingdom of" +msgstr "کامبوج، پادشاهی" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_form +#: view:ir.sequence:0 +#: model:ir.ui.menu,name:base.menu_ir_sequence_form +#: model:ir.ui.menu,name:base.next_id_5 +msgid "Sequences" +msgstr "دنباله‌ها" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_QUESTION" +msgstr "STOCK_DIALOG_QUESTION" + +#. module: base +#: model:res.country,name:base.pg +msgid "Papua New Guinea" +msgstr "پاپوا گینه‌ی نو" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_4 +msgid "Basic Partner" +msgstr "همکار آغازی" + +#. module: base +#: rml:ir.module.reference:0 +msgid "," +msgstr "،" + +#. module: base +#: view:res.partner:0 +msgid "My Partners" +msgstr "همکاران من" + +#. module: base +#: model:res.country,name:base.es +msgid "Spain" +msgstr "اسپانیا" + +#. module: base +#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 +msgid "You may have to reinstall some language pack." +msgstr "ممکن است برخی بسته‌های زبان را دوباره برپاسازی کنید." + +#. module: base +#: field:res.partner.address,mobile:0 +msgid "Mobile" +msgstr "همراه" + +#. module: base +#: model:res.country,name:base.om +msgid "Oman" +msgstr "عمان" + +#. module: base +#: model:ir.actions.act_window,name:base.action_payterm_form +#: model:ir.model,name:base.model_res_payterm +msgid "Payment term" +msgstr "دوره پرداخت" + +#. module: base +#: model:res.country,name:base.nu +msgid "Niue" +msgstr "نیوئه" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Work Days" +msgstr "روزهای کاری" + +#. module: base +#: help:ir.values,action_id:0 +msgid "This field is not used, it only helps you to select the right action." +msgstr "" +"این فیلد بکار گرفته نمی‌شود، بلکه تنها برای کمک به شما در گزینش کُنش درست " +"است." + +#. module: base +#: model:ir.actions.act_window,name:base.act_menu_create +#: view:wizard.ir.model.menu.create:0 +msgid "Create Menu" +msgstr "پدیدن منو" + +#. module: base +#: model:res.country,name:base.in +msgid "India" +msgstr "هند" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract_module +msgid "maintenance contract modules" +msgstr "ماژول‌های قرارداد نگهداری" + +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "client_action_multi, client_action_relate" + +#. module: base +#: model:res.country,name:base.ad +msgid "Andorra, Principality of" +msgstr "آندورا" + +#. module: base +#: field:ir.module.category,child_ids:0 +#: field:res.partner.category,child_ids:0 +msgid "Child Categories" +msgstr "دسته‌بندی‌های فرزند" + +#. module: base +#: selection:wizard.module.lang.export,format:0 +msgid "TGZ Archive" +msgstr "بایگانی TGZ" + +#. module: base +#: field:res.partner.som,factor:0 +msgid "Factor" +msgstr "مضرب" + +#. module: base +#: view:res.lang:0 +msgid "%B - Full month name." +msgstr "%B - نام کامل ماه." + +#. module: base +#: field:ir.actions.report.xml,report_type:0 +#: field:ir.actions.todo,type:0 +#: field:ir.server.object.lines,type:0 +#: field:ir.translation,type:0 +#: field:ir.values,key:0 +#: view:res.partner:0 +msgid "Type" +msgstr "نوع" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FILE" +msgstr "STOCK_FILE" + +#. module: base +#: model:res.country,name:base.gu +msgid "Guam (USA)" +msgstr "گوام (آمریکا)" + +#. module: base +#: model:ir.model,name:base.model_ir_model_grid +msgid "Objects Security Grid" +msgstr "توری امنیت اشیا" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_DOWN" +msgstr "STOCK_GO_DOWN" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_OK" +msgstr "STOCK_OK" + +#. module: base +#: selection:ir.actions.server,state:0 +#: selection:workflow.activity,kind:0 +msgid "Dummy" +msgstr "ساختگی" + +#. module: base +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "XML برای ساختمان نما معتبر نیست!" + +#. module: base +#: model:res.country,name:base.ky +msgid "Cayman Islands" +msgstr "جزایر کِیمَن" + +#. module: base +#: model:res.country,name:base.ir +msgid "Iran" +msgstr "ایران" + +#. module: base +#: model:ir.actions.act_window,name:base.res_request-act +#: model:ir.ui.menu,name:base.menu_res_request_act +msgid "My Requests" +msgstr "_خواندن درخواست‌های من" + +#. module: base +#: field:ir.sequence,name:0 +#: field:ir.sequence.type,name:0 +msgid "Sequence Name" +msgstr "نام دنباله" + +#. module: base +#: model:res.country,name:base.td +msgid "Chad" +msgstr "چاد" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Spanish (AR) / Español (AR)" +msgstr "اسپانیایی (آرژانتین) / Español (AR)" + +#. module: base +#: model:res.country,name:base.ug +msgid "Uganda" +msgstr "اوگاندا" + +#. module: base +#: model:res.country,name:base.ne +msgid "Niger" +msgstr "نیجر" + +#. module: base +#: model:res.country,name:base.ba +msgid "Bosnia-Herzegovina" +msgstr "بوسنی و هرزگوین" + +#. module: base +#: field:ir.report.custom.fields,alignment:0 +msgid "Alignment" +msgstr "ردیف‌بندی" + +#. module: base +#: selection:ir.rule,operator:0 +msgid ">=" +msgstr "STOCK_OK" + +#. module: base +#: view:res.lang:0 +msgid "" +"%W - Week number of the year (Monday as the first day of the week) as a " +"decimal number [00,53]. All days in a new year preceding the first Monday " +"are considered to be in week 0." +msgstr "" +"%W - شماره هفته سال (دوشنبه به مانند روز آغاز هفته) با یک شماره بین [۰۰ تا " +"۵۳] . تمامی روزهایی که جلوتر از نخستین دوشنبه سال باشند به در هفته صفر در " +"نظر گرفته می‌شوند." + +#. module: base +#: field:res.partner.event,planned_cost:0 +msgid "Planned Cost" +msgstr "هزینه برنامه‌ریزی‌شده" + +#. module: base +#: model:ir.model,name:base.model_ir_model_config +msgid "ir.model.config" +msgstr "ir.model.config" + +#. module: base +#: field:ir.module.module,website:0 +#: field:res.partner,website:0 +msgid "Website" +msgstr "تارنما" + +#. module: base +#: view:ir.module.repository:0 +msgid "Repository" +msgstr "مخزن" + +#. module: base +#: model:res.country,name:base.gs +msgid "S. Georgia & S. Sandwich Isls." +msgstr "جورجیای جنوبی و جزایر ساندویچ جنوبی" + +#. module: base +#: field:ir.actions.url,url:0 +msgid "Action URL" +msgstr "URL کنش" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_FILL" +msgstr "STOCK_JUSTIFY_FILL" + +#. module: base +#: model:res.country,name:base.mh +msgid "Marshall Islands" +msgstr "جزایر مارشال" + +#. module: base +#: model:res.country,name:base.ht +msgid "Haiti" +msgstr "هاییتی" + +#. module: base +#: selection:ir.translation,type:0 +msgid "RML" +msgstr "RML" + +#. module: base +#: selection:ir.ui.view,type:0 +msgid "Search" +msgstr "جستجو" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Pie charts need exactly two fields" +msgstr "نمودار کلوچه‌ای دقیقا دو فیلد لازم دارد" + +#. module: base +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." +msgstr "برای برونش زبانی نو، چیزی را برنگزینید." + +#. module: base +#: model:res.country,name:base.md +msgid "Moldavia" +msgstr "مولداوی" + +#. module: base +#: view:ir.module.module:0 +msgid "Features" +msgstr "امکانات" + +#. module: base +#: field:ir.report.custom,frequency:0 +msgid "Frequency" +msgstr "بسامد" + +#. module: base +#: field:ir.report.custom.fields,fc0_op:0 +#: field:ir.report.custom.fields,fc1_op:0 +#: field:ir.report.custom.fields,fc2_op:0 +#: field:ir.report.custom.fields,fc3_op:0 +msgid "Relation" +msgstr "رابطه" + +#. module: base +#: field:ir.model.access,perm_read:0 +msgid "Read Access" +msgstr "دسترسی خواندن" + +#. module: base +#: model:ir.model,name:base.model_ir_exports +msgid "ir.exports" +msgstr "ir.exports" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MISSING_IMAGE" +msgstr "STOCK_MISSING_IMAGE" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" +msgstr "تعریف کاربران نو" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REMOVE" +msgstr "STOCK_REMOVE" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "raw" +msgstr "خام" + +#. module: base +#: help:ir.actions.server,email:0 +msgid "" +"Provides the fields that will be used to fetch the email address, e.g. when " +"you select the invoice, then `object.invoice_address_id.email` is the field " +"which gives the correct address" +msgstr "" +"شامل فیلدهایی می‌شود که برای نمونه در راستای واکشی نشانی ایمیل‌ها بکارگرفته " +"خواهند شد. هنگامی که شما سیاهه را برمی‌گزینید، " +"`object.invoice_address_id.email` فیلدی است که نشانی درست را باز می‌گرداند." + +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "نام نقش" + +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "فروشنده اختصاصی" + +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "-" + +#. module: base +#: field:res.payterm,name:0 +msgid "Payment Term (short name)" +msgstr "دوره پرداخت (نام کوتاه)" + +#. module: base +#: model:ir.model,name:base.model_res_bank +#: view:res.bank:0 +#: field:res.partner.bank,bank:0 +msgid "Bank" +msgstr "بانک" + +#. module: base +#: view:res.lang:0 +msgid "Examples" +msgstr "نمونه‌ها" + +#. module: base +#: field:ir.module.module,reports_by_module:0 +msgid "Reports" +msgstr "گزارش‌ها" + +#. module: base +#: field:workflow,on_create:0 +msgid "On Create" +msgstr "در هنگام پدیدن" + +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "لطفا پرونده ZIP پیمانه خود را برای درونش بدهید." + +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "مقدار پیش‌فرض" + +#. module: base +#: wizard_field:res.partner.sms_send,init,user:0 +#: field:res.users,login:0 +msgid "Login" +msgstr "ورود" + +#. module: base +#: view:maintenance.contract:0 +#: field:maintenance.contract,module_ids:0 +msgid "Covered Modules" +msgstr "پیمانه‌های پوشش داده شده" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_COPY" +msgstr "STOCK_COPY" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "Model %s Does not Exist !" +msgstr "مدل %s پیدا نشد!" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "" +"You try to install the module '%s' that depends on the module:'%s'.\n" +"But this module is not available in your system." +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_request_link +msgid "res.request.link" +msgstr "res.request.link" + +#. module: base +#: wizard_button:module.module.update,init,update:0 +msgid "Check new modules" +msgstr "بررسی پیمانه‌های نو" + +#. module: base +#: model:res.country,name:base.km +msgid "Comoros" +msgstr "کومورو" + +#. module: base +#: model:ir.actions.act_window,name:base.action_server_action +#: view:ir.actions.server:0 +#: model:ir.ui.menu,name:base.menu_server_action +msgid "Server Actions" +msgstr "کُنش‌های کارپذیر" + +#. module: base +#: model:res.country,name:base.tp +msgid "East Timor" +msgstr "تیمور شرقی" + +#. module: base +#: view:ir.rule:0 +msgid "Simple domain setup" +msgstr "سوارسازی دامنه ساده" + +#. module: base +#: field:res.currency,accuracy:0 +msgid "Computational Accuracy" +msgstr "دقت پردازشی" + +#. module: base +#: model:res.country,name:base.kg +msgid "Kyrgyz Republic (Kyrgyzstan)" +msgstr "قرقیزستان (جمهوری)" + +#. module: base +#: model:ir.model,name:base.model_wizard_ir_model_menu_create_line +msgid "wizard.ir.model.menu.create.line" +msgstr "wizard.ir.model.menu.create.line" + +#. module: base +#: view:ir.sequence:0 +msgid "Day: %(day)s" +msgstr "روز: %(day)s" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not read this document! (%s)" +msgstr "شما نمی‌توانید این سند را بخوانید! (%s)" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FIND_AND_REPLACE" +msgstr "STOCK_FIND_AND_REPLACE" + +#. module: base +#: model:res.country,name:base.mv +msgid "Maldives" +msgstr "مالدیو" + +#. module: base +#: help:ir.values,res_id:0 +msgid "Keep 0 if the action must appear on all resources." +msgstr "اگر کُنش باید روی همه منابع نشان داده شود با صفر را ادامه دهید." + +#. module: base +#: model:ir.model,name:base.model_ir_rule +msgid "ir.rule" +msgstr "ir.rule" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Days" +msgstr "روزها" + +#. module: base +#: field:ir.report.custom.fields,width:0 +msgid "Fixed Width" +msgstr "عرض ثابت" + +#. module: base +#: model:res.company,overdue_msg:base.main_company +msgid "" +"Would your payment have been carried out after this mail was sent, please " +"consider the present one as void. Do not hesitate to contact our accounting " +"department at (+32).81.81.37.00." +msgstr "" +"آیا پرداخت شما پس از فرستادن این نامه انجام شده است؟ لطفا پرداخت کنونی را " +"انجام نگرفته به حساب آورید. می‌توانید با بخش حسابداری ما با شماره تلفن " +"(+32).81.81.37.00 تماس بگیرید." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-calendar" +msgstr "terp-calendar" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_YES" +msgstr "STOCK_YES" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_report_custom +#: model:ir.ui.menu,name:base.menu_ir_action_report_custom +msgid "Report Custom" +msgstr "گزارش دلخواه" + +#. module: base +#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid " (copy)" +msgstr " STOCK_COPY" + +#. module: base +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "سال بدون صده: %(y)s" + +#. module: base +#: view:res.lang:0 +msgid "7. %H:%M:%S ==> 18:25:20" +msgstr "7. %H:%M:%S ==> 18:25:20" + +#. module: base +#: help:res.users,company_id:0 +msgid "The company this user is currently working on." +msgstr "شرکتی که این کاربر برای آن کار می‌کند." + +#. module: base +#: help:ir.actions.server,message:0 +msgid "" +"Specify the message. You can use the fields from the object. e.g. `Dear [[ " +"object.partner_id.name ]]`" +msgstr "" +"پیغام را تعیین کنید. می‌توانید از فیلدهای شی بکار گیرید. برای نمونه '[[ " +"object.partner_id.name ]] گرامی'" + +#. module: base +#: field:ir.actions.server,trigger_name:0 +msgid "Trigger Name" +msgstr "نام رهاساز" + +#. module: base +#: model:ir.model,name:base.model_ir_model_access +msgid "ir.model.access" +msgstr "ir.model.access" + +#. module: base +#: field:ir.cron,priority:0 +#: field:ir.ui.view,priority:0 +#: field:res.request,priority:0 +#: field:res.request.link,priority:0 +msgid "Priority" +msgstr "اولویت" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "فعالیت مبدا" + +#. module: base +#: view:ir.sequence:0 +msgid "Legend (for prefix, suffix)" +msgstr "فهرست اختصارات (برای پسوند و پیشوند)" + +#. module: base +#: selection:ir.server.object.lines,type:0 +msgid "Formula" +msgstr "فرمول" + +#. module: base +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "Can not remove root user!" +msgstr "نمی‌توانید کاربر ریشه را بردارید!" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_LEFT" +msgstr "STOCK_JUSTIFY_LEFT" + +#. module: base +#: model:res.country,name:base.mw +msgid "Malawi" +msgstr "مالاوی" + +#. module: base +#: field:res.partner.address,type:0 +msgid "Address Type" +msgstr "نوع نشانی" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +msgstr "خودکار" + +#. module: base +#: view:res.request:0 +msgid "End of Request" +msgstr "پایان درخواست" + +#. module: base +#: view:res.request:0 +msgid "References" +msgstr "مرجع‌ها" + +#. module: base +#: view:res.lang:0 +msgid "" +"%U - Week number of the year (Sunday as the first day of the week) as a " +"decimal number [00,53]. All days in a new year preceding the first Sunday " +"are considered to be in week 0." +msgstr "" +"%U - شمار هفته‌های سال (یکشنبه مانند نخستین روز هفته) یک شماره بین [۰۰ تا " +"۵۳]. تمامی روزهایی که جلوتر از نخستین یکشنبه سال نو باشند در هفته صِفر در " +"نظر گرفته می‌شوند." + +#. module: base +#: wizard_view:module.lang.install,init:0 +msgid "Note that this operation may take a few minutes." +msgstr "توجه داشته باشید که این گردانش ممکن است چند دقیقه درازا بکشد." + +#. module: base +#: help:ir.sequence,condition:0 +msgid "" +"If set, sequence will only be used in case this python expression matches, " +"and will precede other sequences." +msgstr "" +"اگر تنظیم شود، دنباله تنها در هنگامی که این گذاره پایتون جور در آید و جلوتر " +"از باقی دنباله‌ها باشد، بکارگرفته می‌شود." + +#. module: base +#: selection:ir.actions.act_window,view_type:0 +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Tree" +msgstr "درخت" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "Could you check your contract information ?" +msgstr "آیا آگهگان قرارداد خود را بررسی کرده‌اید؟" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLEAR" +msgstr "STOCK_CLEAR" + +#. module: base +#: help:res.users,password:0 +msgid "" +"Keep empty if you don't want the user to be able to connect on the system." +msgstr "" +"مقدار خالی را در صورتی که مایل هستید کاربر به برقراری اتصال در سامانه " +"نباشد، وارد نمایید." + +#. module: base +#: field:ir.actions.act_window,view_mode:0 +#: field:res.config.view,view:0 +msgid "View Mode" +msgstr "حالت نمایش" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Spanish / Español" +msgstr "اسپانیایی / Español" + +#. module: base +#: field:res.company,logo:0 +msgid "Logo" +msgstr "نشان" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PROPERTIES" +msgstr "STOCK_PROPERTIES" + +#. module: base +#: view:res.partner.address:0 +msgid "Search Contact" +msgstr "جستجوی تماس" + +#. module: base +#: view:ir.module.module:0 +msgid "Uninstall (beta)" +msgstr "برکناری (بِتا)" + +#. module: base +#: selection:ir.actions.act_window,target:0 +#: selection:ir.actions.url,target:0 +msgid "New Window" +msgstr "پنجره‌ نو" + +#. module: base +#: model:res.country,name:base.bs +msgid "Bahamas" +msgstr "باهاماس" + +#. module: base +#: selection:res.partner.event,partner_type:0 +msgid "Commercial Prospect" +msgstr "دورنمای تجاری" + +#. module: base +#: code:addons/base/res/partner/partner.py:0 +#, python-format +msgid "" +"Couldn't generate the next id because some partners have an alphabetic id !" +msgstr "" +"امکان ساخت شناسه پسین نیست، زیرا برخی از همکاران تجاری شناسه‌ای حروفی دارند!" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "پیوست" + +#. module: base +#: model:res.country,name:base.ie +msgid "Ireland" +msgstr "ایرلند" + +#. module: base +#: wizard_field:module.module.update,update,update:0 +msgid "Number of modules updated" +msgstr "تعداد پیمانه‌های بروزرسانده" + +#. module: base +#: field:ir.actions.act_window,groups_id:0 +#: model:ir.actions.act_window,name:base.action_res_groups +#: field:ir.actions.report.xml,groups_id:0 +#: field:ir.actions.todo,groups_id:0 +#: field:ir.actions.wizard,groups_id:0 +#: field:ir.model.fields,groups:0 +#: field:ir.ui.menu,groups_id:0 +#: model:ir.ui.menu,name:base.menu_action_res_groups +#: view:res.groups:0 +#: view:res.users:0 +#: field:res.users,groups_id:0 +msgid "Groups" +msgstr "گروه‌ها" + +#. module: base +#: constraint:res.users:0 +msgid "This user can not connect using this company !" +msgstr "این کاربر نمی‌تواند به این شرکت وصل شود!" + +#. module: base +#: model:res.country,name:base.bz +msgid "Belize" +msgstr "بلیز" + +#. module: base +#: model:res.country,name:base.ge +msgid "Georgia" +msgstr "گرجستان" + +#. module: base +#: model:res.country,name:base.pl +msgid "Poland" +msgstr "لهستان" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "To be removed" +msgstr "برای برداشته‌شدن" + +#. module: base +#: field:ir.values,meta:0 +msgid "Meta Datas" +msgstr "فراداده‌ها" + +#. module: base +#: view:wizard.module.update_translations:0 +msgid "" +"This wizard will detect new terms in the application so that you can update " +"them manually." +msgstr "" +"این تَردست واژگان تازه را در برنامه خواهد یافت بنابراین شما می‌توانید آنها " +"را دستی بروزرسانی کنید." + +#. module: base +#: help:ir.actions.server,expression:0 +msgid "" +"Enter the field/expression that will return the list. E.g. select the sale " +"order in Object, and you can have loop on the sales order line. Expression = " +"`object.order_line`." +msgstr "" +"فیلد/عبارتی که فهرست را باز خواهد گرداند وارد کنید. برای نمونه برگزیدن سفارش " +"فروش در شی، بنابراین شما می‌توانید در ردیف‌های سفارشات فروش حلقه داشته " +"باشید. عبارت = 'object.order_line'." + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard Field" +msgstr "فیلد تردست" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SELECT_COLOR" +msgstr "STOCK_SELECT_COLOR" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NO" +msgstr "STOCK_NO" + +#. module: base +#: model:res.country,name:base.st +msgid "Saint Tome (Sao Tome) and Principe" +msgstr "سنت تومه (سائو تومه) و پرینسایپ" + +#. module: base +#: selection:res.partner.address,type:0 +msgid "Invoice" +msgstr "سیاهه" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REDO" +msgstr "STOCK_REDO" + +#. module: base +#: model:res.country,name:base.bb +msgid "Barbados" +msgstr "بارابادوس" + +#. module: base +#: model:res.country,name:base.mg +msgid "Madagascar" +msgstr "ماداگاسکار" + +#. module: base +#: constraint:ir.model:0 +msgid "" +"The Object name must start with x_ and not contain any special character !" +msgstr "نام شی باید با 'x_' آغاز شود و دارای هیچ نویسه ویژه‌ای نباشد!" + +#. module: base +#: model:ir.actions.act_window,name:base.action_menu_admin +#: field:ir.report.custom,menu_id:0 +#: view:ir.ui.menu:0 +#: field:ir.ui.menu,name:0 +msgid "Menu" +msgstr "منو" + +#. module: base +#: field:res.currency,rate:0 +msgid "Current Rate" +msgstr "نرخ کنونی" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Greek / Ελληνικά" +msgstr "یونانی / Ελληνικά" + +#. module: base +#: view:ir.values:0 +msgid "Action To Launch" +msgstr "کنش برای اجرا" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +#: selection:ir.rule,operator:0 +msgid "in" +msgstr "در" + +#. module: base +#: field:ir.actions.url,target:0 +msgid "Action Target" +msgstr "هدف کنش" + +#. module: base +#: model:res.country,name:base.ai +msgid "Anguilla" +msgstr "آنگیل" + +#. module: base +#: field:ir.model.config,password_check:0 +msgid "Confirmation" +msgstr "تایید" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Enter at least one field !" +msgstr "دست‌کم یک فیلد را وارد کنید!" + +#. module: base +#: field:ir.ui.view_sc,name:0 +msgid "Shortcut Name" +msgstr "نام میان‌بر" + +#. module: base +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" +msgstr "حد اعتبار" + +#. module: base +#: help:ir.actions.server,write_id:0 +msgid "" +"Provide the field name that the record id refers to for the write operation. " +"If it is empty it will refer to the active id of the object." +msgstr "" +"شامل نام فیلدی که شناسه رکورد آن به گردانش نوشتن اشاره دارد. اگر خالی باشد " +"به شناسه فعال شی اشاره دارد." + +#. module: base +#: model:res.country,name:base.zw +msgid "Zimbabwe" +msgstr "زیمبابوه" + +#. module: base +#: model:ir.ui.menu,name:base.menu_translation_export +msgid "Import / Export" +msgstr "درونش / برونش" + +#. module: base +#: model:ir.actions.act_window,name:base.action_config_user_form +#: view:res.users:0 +msgid "Configure User" +msgstr "پیکربندی کاربر" + +#. module: base +#: field:ir.actions.server,email:0 +msgid "Email Address" +msgstr "نشانی ایمیل" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "French (BE) / Français (BE)" +msgstr "فرانسوی (بلژیک) / Français (BE)" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not write in this document! (%s)" +msgstr "شما نمی‌توانید در این سند بنویسید! (%s)" + +#. module: base +#: view:ir.actions.server:0 +#: field:workflow.activity,action_id:0 +msgid "Server Action" +msgstr "کنش کارپذیر" + +#. module: base +#: model:res.country,name:base.tt +msgid "Trinidad and Tobago" +msgstr "ترینیداد و توباگو" + +#. module: base +#: model:res.country,name:base.lv +msgid "Latvia" +msgstr "لاتویا" + +#. module: base +#: view:ir.values:0 +msgid "Values" +msgstr "مقادیر" + +#. module: base +#: view:ir.actions.server:0 +msgid "Field Mappings" +msgstr "نگاشت‌های فیلد" + +#. module: base +#: model:ir.actions.act_window,name:base.res_request-closed +#: model:ir.ui.menu,name:base.next_id_12_close +msgid "My Closed Requests" +msgstr "درخواست‌های بسته من" + +#. module: base +#: model:ir.ui.menu,name:base.menu_custom +msgid "Customization" +msgstr "دلخواه‌سازی" + +#. module: base +#: model:res.country,name:base.py +msgid "Paraguay" +msgstr "پاراگوئه" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "left" +msgstr "چپ" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window_close +msgid "ir.actions.act_window_close" +msgstr "ir.actions.act_window_close" + +#. module: base +#: field:ir.server.object.lines,col1:0 +msgid "Destination" +msgstr "مقصد" + +#. module: base +#: model:res.country,name:base.lt +msgid "Lithuania" +msgstr "لیتوانی" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PRINT_PREVIEW" +msgstr "STOCK_PRINT_PREVIEW" + +#. module: base +#: model:res.country,name:base.si +msgid "Slovenia" +msgstr "اسلوونی" + +#. module: base +#: view:res.partner.canal:0 +#: field:res.partner.event,canal_id:0 +msgid "Channel" +msgstr "کانال" + +#. module: base +#: view:res.lang:0 +msgid "%p - Equivalent of either AM or PM." +msgstr "%p - معادل هرکدارم از مقادیر AM یا PM" + +#. module: base +#: view:ir.actions.server:0 +msgid "Iteration Actions" +msgstr "کنش‌های تکرار" + +#. module: base +#: field:maintenance.contract,date_stop:0 +msgid "Ending Date" +msgstr "تاریخ پایان" + +#. module: base +#: model:res.country,name:base.nz +msgid "New Zealand" +msgstr "زلاند نو" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_7 +msgid "Openstuff.net" +msgstr "Openstuff.net" + +#. module: base +#: model:res.country,name:base.nf +msgid "Norfolk Island" +msgstr "جزیره‌ی نورفولک" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PLAY" +msgstr "STOCK_MEDIA_PLAY" + +#. module: base +#: field:ir.rule,operator:0 +msgid "Operator" +msgstr "گرداننده" + +#. module: base +#: wizard_view:module.lang.install,start:0 +msgid "Installation Done" +msgstr "برپایی انجام شد" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_OPEN" +msgstr "STOCK_OPEN" + +#. module: base +#: field:ir.actions.server,action_id:0 +#: selection:ir.actions.server,state:0 +msgid "Client Action" +msgstr "کنش کارخواه" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "right" +msgstr "راست" + +#. module: base +#: model:res.country,name:base.bd +msgid "Bangladesh" +msgstr "بنگلادش" + +#. module: base +#: constraint:res.company:0 +msgid "Error! You can not create recursive companies." +msgstr "خطا! نمی‌توانید شرکت‌های تودرتو بسازید." + +#. module: base +#: selection:maintenance.contract,state:0 +msgid "Valid" +msgstr "معتبر" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not delete this document! (%s)" +msgstr "نمی‌توانید این سند را بردارید! (%s)" + +#. module: base +#: selection:ir.translation,type:0 +msgid "XSL" +msgstr "XSL" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "Can not upgrade module '%s'. It is not installed." +msgstr "نمی‌توانید پیمانه '%s' را ارتقا دهید زیرا برپاسازی نشده است." + +#. module: base +#: model:res.country,name:base.cu +msgid "Cuba" +msgstr "کوبا" + +#. module: base +#: view:res.lang:0 +msgid "%S - Second as a decimal number [00,61]." +msgstr "%S - ثانیه یک شماره بین [۰۰ تا ۶۱]." + +#. module: base +#: model:res.country,name:base.am +msgid "Armenia" +msgstr "ارمنستان" + +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "سال با صده: %(year)s" + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Daily" +msgstr "روزانه" + +#. module: base +#: model:res.country,name:base.se +msgid "Sweden" +msgstr "سوئد" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Gantt" +msgstr "گانت" + +#. module: base +#: view:ir.property:0 +msgid "Property" +msgstr "ویژگی" + +#. module: base +#: model:ir.model,name:base.model_res_partner_bank_type +#: view:res.partner.bank.type:0 +msgid "Bank Account Type" +msgstr "نوع حساب بانکی" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-project" +msgstr "terp-project" + +#. module: base +#: view:ir.actions.server:0 +msgid "Iteration Action Configuration" +msgstr "پیکربندی کنش تکرار" + +#. module: base +#: model:res.country,name:base.at +msgid "Austria" +msgstr "اتریش" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Calendar" +msgstr "گاهشمار" + +#. module: base +#: field:workflow.activity,signal_send:0 +msgid "Signal (subflow.*)" +msgstr "سیگنال (subflow.*)" + +#. module: base +#: model:ir.model,name:base.model_ir_module_module_dependency +msgid "Module dependency" +msgstr "وابستگی پیمانه" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Draft" +msgstr "پیش‌نویس" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_CENTER" +msgstr "STOCK_JUSTIFY_CENTER" + +#. module: base +#: view:res.config.view:0 +msgid "Choose Your Mode" +msgstr "حالت خود را برگزینید" + +#. module: base +#: field:res.company,rml_footer1:0 +msgid "Report Footer 1" +msgstr "پانویس گزارش ۱" + +#. module: base +#: field:res.company,rml_footer2:0 +msgid "Report Footer 2" +msgstr "پانویس گزارش ۲" + +#. module: base +#: view:ir.model.access:0 +#: model:ir.ui.menu,name:base.menu_security_access +#: view:res.groups:0 +#: field:res.groups,model_access:0 +msgid "Access Controls" +msgstr "کنترل‌های دسترسی" + +#. module: base +#: view:ir.module.module:0 +#: field:ir.module.module,dependencies_id:0 +msgid "Dependencies" +msgstr "وابستگی‌ها" + +#. module: base +#: field:ir.report.custom.fields,bgcolor:0 +msgid "Background Color" +msgstr "رنگ پس‌زمینه" + +#. module: base +#: view:ir.actions.server:0 +msgid "" +"If you use a formula type, use a python expression using the variable " +"'object'." +msgstr "" +"اگر از یک نوعِ فرمولی بکار می‌برید، از یک عبارتِ پایتونی جهت مقدار دهی به شی " +"سود برید." + +#. module: base +#: field:res.partner.address,birthdate:0 +msgid "Birthdate" +msgstr "تاریخ تولد" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title_contact +#: model:ir.ui.menu,name:base.menu_partner_title_contact +msgid "Contact Titles" +msgstr "عناوین تماس" + +#. module: base +#: model:ir.model,name:base.model_res_partner_som +msgid "res.partner.som" +msgstr "res.partner.som" + +#. module: base +#: model:ir.model,name:base.model_workflow_activity +msgid "workflow.activity" +msgstr "workflow.activity" + +#. module: base +#: field:ir.model.fields,select_level:0 +msgid "Searchable" +msgstr "قابل جستجو" + +#. module: base +#: model:res.country,name:base.uy +msgid "Uruguay" +msgstr "اروگوئه" + +#. module: base +#: view:res.partner.event:0 +msgid "Document Link" +msgstr "پیوندِ سند" + +#. module: base +#: model:ir.model,name:base.model_res_partner_title +msgid "res.partner.title" +msgstr "res.partner.title" + +#. module: base +#: field:ir.sequence,prefix:0 +msgid "Prefix" +msgstr "پیشوند" + +#. module: base +#: field:ir.actions.server,loop_action:0 +msgid "Loop Action" +msgstr "کنش حلقه" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "German / Deutsch" +msgstr "آلمانی / Deutsch" + +#. module: base +#: help:ir.actions.server,trigger_name:0 +msgid "Select the Signal name that is to be used as the trigger." +msgstr "نام سیگنالی که مانند رهاساز بکارگرفته می‌شود را برگزینید." + +#. module: base +#: view:ir.actions.server:0 +msgid "Fields Mapping" +msgstr "نگاشت فیلدها" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +msgstr "آقا" + +#. module: base +#: wizard_button:module.upgrade,next,start:0 +msgid "Start Upgrade" +msgstr "آغاز ارتقا" + +#. module: base +#: field:ir.default,ref_id:0 +msgid "ID Ref." +msgstr "مرجع شناسه" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "French / Français" +msgstr "فرانسوی / Français" + +#. module: base +#: model:res.country,name:base.mt +msgid "Malta" +msgstr "مالت" + +#. module: base +#: field:ir.actions.server,fields_lines:0 +msgid "Field Mappings." +msgstr "نگاشت‌های فیلد" + +#. module: base +#: model:ir.model,name:base.model_ir_module_module +#: field:ir.model.data,module:0 +#: view:ir.module.module:0 +#: field:ir.module.module.dependency,module_id:0 +#: rml:ir.module.reference:0 +msgid "Module" +msgstr "پیمانه" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_bank_form +#: model:ir.ui.menu,name:base.menu_action_res_bank_form +msgid "Bank List" +msgstr "فهرست بانک" + +#. module: base +#: field:ir.attachment,description:0 +#: field:ir.module.module,description:0 +#: view:res.partner:0 +#: field:res.partner.bank,name:0 +#: view:res.partner.event:0 +#: field:res.partner.event,description:0 +#: view:res.request:0 +msgid "Description" +msgstr "توصیف" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_instance_form +#: model:ir.ui.menu,name:base.menu_workflow_instance +msgid "Instances" +msgstr "وهله‌ها" + +#. module: base +#: model:ir.model,name:base.model_ir_attachment +msgid "ir.attachment" +msgstr "ir.attachment" + +#. module: base +#: field:res.users,action_id:0 +msgid "Home Action" +msgstr "کنش خانه" + +#. module: base +#: field:res.lang,grouping:0 +msgid "Separator Format" +msgstr "قالب جداساز" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export language" +msgstr "برونش زبان" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Unvalidated" +msgstr "تایید نشده" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_9 +msgid "Database Structure" +msgstr "ساختار دادگان" + +#. module: base +#: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard +#: wizard_view:res.partner.spam_send,init:0 +msgid "Mass Mailing" +msgstr "نامه‌نگاری فله‌ای" + +#. module: base +#: model:res.country,name:base.yt +msgid "Mayotte" +msgstr "مایوت" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." +msgstr "شما همچنین می‌توانید پرونده‌های po. درونش کنید." + +#. module: base +#: code:addons/base/maintenance/maintenance.py:0 +#, python-format +msgid "Unable to find a valid contract" +msgstr "قرارداد معتبری پیدا نشد" + +#. module: base +#: code:addons/base/ir/ir_actions.py:0 +#, python-format +msgid "Please specify an action to launch !" +msgstr "لطفا کُنشی را برای اجرا مشخص کنید!" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_RIGHT" +msgstr "STOCK_JUSTIFY_RIGHT" + +#. module: base +#: model:ir.model,name:base.model_res_partner_function +msgid "Function of the contact" +msgstr "کارکرد تماس" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_upgrade +#: model:ir.ui.menu,name:base.menu_module_tree_upgrade +msgid "Modules to be installed, upgraded or removed" +msgstr "پیمانه‌هایی که برای برپاسازی، ارتقا و یا برکناری هستند." + +#. module: base +#: view:res.payterm:0 +msgid "Payment Term" +msgstr "دوره پرداخت" + +#. module: base +#: field:ir.report.custom,footer:0 +msgid "Report Footer" +msgstr "پانویس گزارش" + +#. module: base +#: selection:res.lang,direction:0 +msgid "Right-to-Left" +msgstr "راست به چپ" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "Import language" +msgstr "درونش زبان" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_cron_act +#: view:ir.cron:0 +#: model:ir.ui.menu,name:base.menu_ir_cron_act +msgid "Scheduled Actions" +msgstr "کنش‌های زمان‌بندی‌شده" + +#. module: base +#: field:res.partner,title:0 +#: field:res.partner.address,title:0 +#: field:res.partner.title,name:0 +msgid "Title" +msgstr "عنوان" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SAVE" +msgstr "STOCK_SAVE" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-account" +msgstr "terp-account" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "Recursion error in modules dependencies !" +msgstr "خطای تودرتویی در وابستگی‌های پیمانه‌ها!" + +#. module: base +#: view:ir.model:0 +msgid "Create a Menu" +msgstr "ساخت منو" + +#. module: base +#: help:res.partner,vat:0 +msgid "" +"Value Added Tax number. Check the box if the partner is subjected to the " +"VAT. Used by the VAT legal statement." +msgstr "" +"شماره‌ی مالیات بر ارزش افزوده. جای خالی را در صورتی که همکار تجاری موضوعِ " +"مالیات بر ارزش افزوده است،تیک بزنید. این شماره در احکام قانونی مالیات بر " +"ارزش افزوده بکارگرفته می‌شود." + +#. module: base +#: model: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 +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "اوکراینی / украї́нська мо́ва" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Not Started" +msgstr "آغاز نشده" + +#. module: base +#: model:res.country,name:base.ru +msgid "Russian Federation" +msgstr "فدراسیون روسیه" + +#. module: base +#: field:res.company,name:0 +msgid "Company Name" +msgstr "نام شرکت" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_roles_form +#: model:ir.ui.menu,name:base.menu_action_res_roles_form +#: view:res.roles:0 +#: view:res.users:0 +#: field:res.users,roles_id:0 +msgid "Roles" +msgstr "نقش‌ها" + +#. module: base +#: model:ir.actions.act_window,name:base.action_country +#: model:ir.ui.menu,name:base.menu_country_partner +msgid "Countries" +msgstr "کشورها" + +#. module: base +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "مالیات بر ارزش افزوده" + +#. module: base +#: view:res.lang:0 +msgid "12. %w ==> 5 ( Friday is the 6th day)" +msgstr "12. %w ==> ۵ (جمعه ششمین روز است)" + +#. module: base +#: constraint:res.partner.category:0 +msgid "Error ! You can not create recursive categories." +msgstr "خطا! شما نمی‌توانید دسته‌بندی‌های تودرتو پدیدآورید." + +#. module: base +#: view:res.lang:0 +msgid "%x - Appropriate date representation." +msgstr "%x - چگونگی نمایش تاریخ" + +#. module: base +#: help:ir.module.repository,filter:0 +msgid "" +"Regexp to search module on the repository webpage:\n" +"- The first parenthesis must match the name of the module.\n" +"- The second parenthesis must match the whole version number.\n" +"- The last parenthesis must match the extension of the module." +msgstr "" +"Regexp برای جستجو پیمانه روی صفحه مخزن در اینترنت:\n" +"- نخستین پرانتز باید با نام پیمانه جور باشد.\n" +"- دومین پرانتز باید با کل شماره نگارش جور باشد.\n" +"- واپسین پرانتز باید با پسوند پیمانه جور باشد." + +#. module: base +#: view:res.lang:0 +msgid "%M - Minute as a decimal number [00,59]." +msgstr "%M - دقیقه با یک شماره بین [۰۰ تا ۵۹]" + +#. module: base +#: model:res.country,name:base.tj +msgid "Tajikistan" +msgstr "تاجیکستان" + +#. module: base +#: model:ir.actions.act_window,name:base.act_values_form_action +#: model:ir.ui.menu,name:base.menu_values_form_action +msgid "Connect Actions To Client Events" +msgstr "اتصال کُنش‌ها به رویدادهای کارخواه" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-2 or later version" +msgstr "مجوز GPL-2 یا نگارش بالاتر" + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" +msgstr "دورنمای تماس" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_wizard +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.wizard" +msgstr "ir.actions.wizard" + +#. module: base +#: model:res.country,name:base.nr +msgid "Nauru" +msgstr "نائورو" + +#. module: base +#: model:ir.model,name:base.model_ir_property +msgid "ir.property" +msgstr "ir.property" + +#. module: base +#: selection:ir.actions.act_window,view_type:0 +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Form" +msgstr "فرم" + +#. module: base +#: model:res.country,name:base.me +msgid "Montenegro" +msgstr "مونته‌نگرو" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_QUIT" +msgstr "STOCK_QUIT" + +#. module: base +#: view:ir.cron:0 +msgid "Technical Data" +msgstr "داده‌ فنی" + +#. module: base +#: view:res.partner:0 +#: field:res.partner,category_id:0 +msgid "Categories" +msgstr "دسته‌بندی‌ها" + +#. module: base +#: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard +#: wizard_button:res.partner.sms_send,init,send:0 +msgid "Send SMS" +msgstr "ارسال پیامک" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "To be upgraded" +msgstr "برای ارتقا" + +#. module: base +#: model:res.country,name:base.ly +msgid "Libya" +msgstr "لیبی" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-purchase" +msgstr "terp-purchase" + +#. module: base +#: wizard_field:module.module.update,init,repositories:0 +msgid "Repositories" +msgstr "مخازن" + +#. module: base +#: model:res.country,name:base.cf +msgid "Central African Republic" +msgstr "جمهوری افریقای مرکزی" + +#. module: base +#: model:res.country,name:base.li +msgid "Liechtenstein" +msgstr "لیختن‌اشتاین" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_ltd +msgid "Ltd" +msgstr "محدود" + +#. module: base +#: field:res.partner,ean13:0 +msgid "EAN13" +msgstr "بارکد" + +#. module: base +#: model:res.country,name:base.pt +msgid "Portugal" +msgstr "پرتغال" + +#. module: base +#: selection:maintenance.contract,state:0 +msgid "Unvalid" +msgstr "نامعتبر" + +#. module: base +#: field:ir.module.module,certificate:0 +msgid "Quality Certificate" +msgstr "گواهینامه کیفیت" + +#. module: base +#: view:res.lang:0 +msgid "6. %d, %m ==> 05, 12" +msgstr "6. %d, %m ==> 05, 12" + +#. module: base +#: help:res.partner,customer:0 +msgid "Check this box if the partner is a customer." +msgstr "اگر همکار یک مشتری است این جا را تیک بزنید." + +#. module: base +#: model:ir.actions.act_window,name:base.res_lang_act_window +#: model:ir.model,name:base.model_res_lang +#: model:ir.ui.menu,name:base.menu_res_lang_act_window +#: view:res.lang:0 +msgid "Languages" +msgstr "زبان‌ها" + +#. module: base +#: model:res.country,name:base.pw +msgid "Palau" +msgstr "پالائو" + +#. module: base +#: model:res.country,name:base.ec +msgid "Ecuador" +msgstr "اکوادور" + +#. module: base +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#, python-format +msgid "" +"Save this document to a .CSV file and open it with your favourite " +"spreadsheet software. The file encoding is UTF-8. You have to translate the " +"latest column before reimporting it." +msgstr "" +"این سند را در یک پرونده CSV. ذخیره و با برنامه صفحه گسترده خود آن را باز " +"کنید. کدگذاری پرونده UTF-8 است. شما باید واپسین ستون را پیش از بازدرونش آن " +"برگردانی نمایید." + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_customer_form +#: view:res.partner:0 +msgid "Customers" +msgstr "همکارانِ مشتریان" + +#. module: base +#: model:res.country,name:base.au +msgid "Australia" +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 +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "منو:" + +#. module: base +#: selection:ir.model.fields,state:0 +msgid "Base Field" +msgstr "فیلد پایه" + +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "پیمانه‌های نو" + +#. module: base +#: field:ir.actions.report.xml,report_sxw_content:0 +#: field:ir.actions.report.xml,report_sxw_content_data:0 +msgid "SXW content" +msgstr "محتوای SXW" + +#. module: base +#: view:ir.cron:0 +msgid "Action to Trigger" +msgstr "کنش برای رهاساز" + +#. module: base +#: field:ir.report.custom.fields,fc0_operande:0 +#: field:ir.report.custom.fields,fc1_operande:0 +#: field:ir.report.custom.fields,fc2_operande:0 +#: field:ir.report.custom.fields,fc3_operande:0 +#: selection:ir.translation,type:0 +msgid "Constraint" +msgstr "قید" + +#. module: base +#: selection:ir.values,key:0 +#: selection:res.partner.address,type:0 +msgid "Default" +msgstr "پیش‌فرض" + +#. module: base +#: field:ir.model.fields,required:0 +#: field:res.partner.bank.type.field,required:0 +msgid "Required" +msgstr "لازم" + +#. module: base +#: field:ir.model.fields,domain:0 +#: field:ir.rule,domain:0 +#: field:res.partner.title,domain:0 +msgid "Domain" +msgstr "دامنه" + +#. module: base +#: field:res.request.history,name:0 +msgid "Summary" +msgstr "چکیده" + +#. module: base +#: help:ir.actions.server,subject:0 +msgid "" +"Specify the subject. You can use fields from the object, e.g. `Hello [[ " +"object.partner_id.name ]]`" +msgstr "" +"موضوع را تعیین کنید. شما می‌توانید از فیلدهای شی سود برید. برای نمونه 'سلام " +"[[ object.partner_id.name ]]`" + +#. module: base +#: view:res.company:0 +msgid "Header/Footer" +msgstr "سرنویس/پانویس" + +#. module: base +#: model:res.country,name:base.lb +msgid "Lebanon" +msgstr "لبنان" + +#. module: base +#: wizard_field:module.lang.import,init,name:0 +msgid "Language name" +msgstr "نام زبان" + +#. module: base +#: model:res.country,name:base.va +msgid "Holy See (Vatican City State)" +msgstr "هالی سی (استان واتیکان)" + +#. module: base +#: help:ir.actions.server,condition:0 +msgid "" +"Condition that is to be tested before action is executed, e.g. " +"object.list_price > object.cost_price" +msgstr "" +"شرطی که باید پیش از اجرای کُنش آزمایش شود. برای نمونه object.list_price > " +"object.cost_price" + +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "پرونده ZIP. پیمانه" + +#. module: base +#: field:res.roles,child_id:0 +msgid "Children" +msgstr "فرزندها" + +#. module: base +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" +msgstr "شی رهاساز" + +#. module: base +#: selection:ir.report.custom,state:0 +msgid "Subscribed" +msgstr "مشترک شد" + +#. module: base +#: wizard_view:module.lang.install,init:0 +#: wizard_view:module.upgrade,next:0 +msgid "System Upgrade" +msgstr "ارتقا سامانه" + +#. module: base +#: field:workflow.activity,in_transitions:0 +msgid "Incoming Transitions" +msgstr "گذارهای وارده" + +#. module: base +#: model:res.country,name:base.sr +msgid "Suriname" +msgstr "سورینام" + +#. module: base +#: field:ir.values,key2:0 +#: view:res.partner.event.type:0 +#: field:res.partner.event.type,name:0 +msgid "Event Type" +msgstr "نوع رویداد" + +#. module: base +#: view:res.partner.bank:0 +#: model:res.partner.bank.type,name:base.bank_normal +msgid "Bank account" +msgstr "حساب بانکی" + +#. module: base +#: view:ir.sequence.type:0 +msgid "Sequence Type" +msgstr "نوع دنباله" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "" +"You try to upgrade a module that depends on the module: %s.\n" +"But this module is not available in your system." +msgstr "" +"شما در تلاش برای ارتقای پیمانه‌ای هستید که وابستگی به پیمانه‌ای دیگر دارد: " +"%s.\n" +"اما این پیمانه بروی سامانه شما وجود ندارد." + +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "نشانی همکار" + +#. module: base +#: field:ir.module.module,license:0 +msgid "License" +msgstr "مجوز" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Invalid operation" +msgstr "گردانش نامعتبر" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SAVE_AS" +msgstr "STOCK_SAVE_AS" + +#. module: base +#: selection:ir.translation,type:0 +msgid "SQL Constraint" +msgstr "قید SQL ای" + +#. module: base +#: field:ir.actions.server,srcmodel_id:0 +msgid "Model" +msgstr "مدل" + +#. module: base +#: field:ir.actions.act_window.view,view_id:0 +#: field:ir.default,page:0 +#: selection:ir.translation,type:0 +#: field:wizard.ir.model.menu.create.line,view_id:0 +msgid "View" +msgstr "نما" + +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open a Window" +msgstr "بازکردن یک پنجره" + +#. module: base +#: model:res.country,name:base.gq +msgid "Equatorial Guinea" +msgstr "گینه‌ی استوایی" + +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Module Import" +msgstr "درونش پیمانه" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not remove the field '%s' !" +msgstr "شما نمی‌توانید فیلد '%s' را بردارید!" + +#. module: base +#: field:res.bank,zip:0 +#: field:res.partner.address,zip:0 +#: field:res.partner.bank,zip:0 +msgid "Zip" +msgstr "کدپستی" + +#. module: base +#: field:ir.module.module,author:0 +msgid "Author" +msgstr "مولف" + +#. module: base +#: model:res.country,name:base.mk +msgid "FYROM" +msgstr "FYROM" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDELETE" +msgstr "STOCK_UNDELETE" + +#. module: base +#: view:res.lang:0 +msgid "%c - Appropriate date and time representation." +msgstr "%c - چگونگی نمایش مناسب تاریخ و ساعت" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Finland / Suomi" +msgstr "فنلاند / Suomi" + +#. module: base +#: model:res.country,name:base.bo +msgid "Bolivia" +msgstr "بولیوی" + +#. module: base +#: model:res.country,name:base.gh +msgid "Ghana" +msgstr "غنا" + +#. module: base +#: field:res.lang,direction:0 +msgid "Direction" +msgstr "جهت" + +#. module: base +#: model:ir.model,name:base.model_wizard_module_update_translations +msgid "wizard.module.update_translations" +msgstr "wizard.module.update_translations" + +#. module: base +#: view:ir.actions.act_window:0 +#: model:ir.actions.act_window,name:base.action_ui_view +#: field:ir.actions.act_window,view_ids:0 +#: field:ir.actions.act_window,views:0 +#: field:ir.module.module,views_by_module:0 +#: model:ir.ui.menu,name:base.menu_action_ui_view +#: view:ir.ui.view:0 +#: view:wizard.ir.model.menu.create:0 +#: field:wizard.ir.model.menu.create,view_ids:0 +msgid "Views" +msgstr "نماها" + +#. module: base +#: view:res.groups:0 +#: field:res.groups,rule_groups:0 +#: field:res.users,rules_id:0 +msgid "Rules" +msgstr "قواعد" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "You try to remove a module that is installed or will be installed" +msgstr "" +"شما تلاش می‌کنید تا پیمانه‌ای را که برپاسازی شده یا خواهد شد، را بردارید" + +#. module: base +#: help:ir.values,key2:0 +msgid "" +"The kind of action or button in the client side that will trigger the action." +msgstr "نوع کُنش یا دکمه‌ای که در سمت کارخواهم رهاساز کُنش را رها خواهد کرد." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PASTE" +msgstr "STOCK_PASTE" + +#. module: base +#: model:res.country,name:base.gt +msgid "Guatemala" +msgstr "گواتمالا" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_form +#: model:ir.ui.menu,name:base.menu_workflow +msgid "Workflows" +msgstr "کارگردش‌ها" + +#. module: base +#: model:ir.actions.act_window,name:base.action_config_wizard_form +#: model:ir.ui.menu,name:base.menu_config_module +msgid "Configuration Wizard" +msgstr "تردست پیکربندی" + +#. module: base +#: model:ir.model,name:base.model_res_roles +msgid "res.roles" +msgstr "res.roles" + +#. module: base +#: help:ir.cron,priority:0 +msgid "" +"0=Very Urgent\n" +"10=Not urgent" +msgstr "" +"۱۰ = غیر فوری\n" +"۰ = بسیار فوری" + +#. module: base +#: view:res.users:0 +msgid "Skip" +msgstr "پرش" + +#. module: base +#: model:ir.actions.act_window,name:base.res_request_link-act +#: model:ir.ui.menu,name:base.menu_res_request_link_act +msgid "Accepted Links in Requests" +msgstr "پیوندهای پذیرفته در درخواست‌ها" + +#. module: base +#: model:res.country,name:base.ls +msgid "Lesotho" +msgstr "لسوتو" + +#. module: base +#: model:res.country,name:base.ke +msgid "Kenya" +msgstr "کنیا" + +#. module: base +#: view:res.config.view:0 +msgid "" +"Choose the simplified interface if you are testing OpenERP for the first " +"time. Less used options or fields are automatically hidden. You will be able " +"to change this, later, through the Administration menu." +msgstr "" +"در صورتی که برای نخستین بار از اپن ای‌آر‌پی بکارگیری می‌کنید، رابط کاربری " +"ساده‌سازی شده را برگزینید. گزینه‌ها یا فیلدهایی که کمتر بکاربرده شده‌اند به " +"صورت خودکار مخفی می‌شوند. شما پسا می‌توانید از طریق منوی راهبری آن را تغییر " +"دهید." + +#. module: base +#: model:res.country,name:base.sm +msgid "San Marino" +msgstr "سان مارینو" + +#. module: base +#: model:res.country,name:base.bm +msgid "Bermuda" +msgstr "برمودا" + +#. module: base +#: model:res.country,name:base.pe +msgid "Peru" +msgstr "پرو" + +#. module: base +#: selection:ir.model.fields,on_delete:0 +msgid "Set NULL" +msgstr "تنظیم به NULL" + +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "وضعیت فکری" + +#. module: base +#: model:res.country,name:base.bj +msgid "Benin" +msgstr "بنین" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CONNECT" +msgstr "STOCK_CONNECT" + +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Not Searchable" +msgstr "غیرقابل جستجو" + +#. module: base +#: field:res.partner.event.type,key:0 +msgid "Key" +msgstr "کلید" + +#. module: base +#: field:ir.cron,nextcall:0 +msgid "Next Call Date" +msgstr "تاریخ تماس پسین" + +#. module: base +#: field:res.company,rml_header:0 +msgid "RML Header" +msgstr "آغازه RML" + +#. module: base +#: wizard_field:res.partner.sms_send,init,app_id:0 +msgid "API ID" +msgstr "شناسه API" + +#. module: base +#: model:res.country,name:base.mu +msgid "Mauritius" +msgstr "موریتیوس" + +#. module: base +#: wizard_view:module.module.update,init:0 +msgid "Scan for new modules" +msgstr "پویش برای پیمانه‌های نو" + +#. module: base +#: view:ir.actions.act_window:0 +#: model:ir.ui.menu,name:base.menu_security +msgid "Security" +msgstr "امنیت" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Using a relation field which uses an unknown object" +msgstr "بکاربری یک فیلد رابطه که شیی ناشناخته را بکارگرفته" + +#. module: base +#: model:res.country,name:base.za +msgid "South Africa" +msgstr "افریقای جنوبی" + +#. module: base +#: model:ir.model,name:base.model_wizard_module_lang_export +msgid "wizard.module.lang.export" +msgstr "wizard.module.lang.export" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "Installed" +msgstr "برپاسازی شد" + +#. module: base +#: model:res.country,name:base.sn +msgid "Senegal" +msgstr "سنگال" + +#. module: base +#: model:res.country,name:base.hu +msgid "Hungary" +msgstr "مجارستان" + +#. module: base +#: model:ir.model,name:base.model_res_groups +msgid "res.groups" +msgstr "res.groups" + +#. module: base +#: model:res.country,name:base.br +msgid "Brazil" +msgstr "برزیل" + +#. module: base +#: field:ir.sequence,number_next:0 +msgid "Next Number" +msgstr "شماره پسین" + +#. module: base +#: view:res.currency:0 +#: field:res.currency,rate_ids:0 +msgid "Rates" +msgstr "نرخ‌ها" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Albanian / Shqipëri" +msgstr "آلبانیایی / Shqipëri" + +#. module: base +#: model:res.country,name:base.sy +msgid "Syria" +msgstr "سوریه" + +#. module: base +#: view:res.lang:0 +msgid "======================================================" +msgstr "======================================================" + +#. module: base +#: field:ir.report.custom.fields,field_child2:0 +msgid "Field child2" +msgstr "فیلد فرزند ۲" + +#. module: base +#: field:ir.report.custom.fields,field_child3:0 +msgid "Field child3" +msgstr "فیلد فرزند ۳" + +#. module: base +#: field:ir.report.custom.fields,field_child0:0 +msgid "Field child0" +msgstr "فیلد فرزند ۰" + +#. module: base +#: field:ir.report.custom.fields,field_child1:0 +msgid "Field child1" +msgstr "فیلد فرزند ۱" + +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Field Selection" +msgstr "گزینش فیلد" + +#. module: base +#: selection:res.request,state:0 +msgid "draft" +msgstr "پیش‌نویس" + +#. module: base +#: field:res.currency,date:0 +#: field:res.currency.rate,name:0 +#: field:res.partner,date:0 +#: field:res.partner.event,date:0 +#: field:res.request,date_sent:0 +msgid "Date" +msgstr "تاریخ" + +#. module: base +#: field:ir.actions.report.xml,report_sxw:0 +msgid "SXW path" +msgstr "مسیر SXW" + +#. module: base +#: view:ir.attachment:0 +#: field:ir.attachment,datas:0 +msgid "Data" +msgstr "داده" + +#. module: base +#: view:res.users:0 +msgid "Groups are used to defined access rights on each screen and menu." +msgstr "" +"گروه‌ها برای حق دسترسی‌های تعریف شده روی هر منو و صفحه بکار برده می‌شوند." + +#. module: base +#: field:ir.ui.menu,parent_id:0 +#: field:wizard.ir.model.menu.create,menu_id:0 +msgid "Parent Menu" +msgstr "منوی مادر" + +#. module: base +#: help:ir.actions.act_window.view,multi:0 +#: help:ir.actions.report.custom,multi:0 +#: help:ir.actions.report.xml,multi:0 +msgid "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"اگر مقدار به درست تنظیم شود، کُنش در سمت راست نوار ابزار یک نمای فرم نشان " +"داده نخواهد شد." + +#. module: base +#: model:ir.ui.menu,name:base.menu_custom_multicompany +msgid "Multi company" +msgstr "چند شرکتی" + +#. module: base +#: view:ir.attachment:0 +msgid "Attached To" +msgstr "پیوست به" + +#. module: base +#: field:res.lang,decimal_point:0 +msgid "Decimal Separator" +msgstr "جداساز شمارگانی" + +#. module: base +#: view:res.partner:0 +#: view:res.request:0 +#: field:res.request,history:0 +msgid "History" +msgstr "تاریخچه" + +#. module: base +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "پدیدار" + +#. module: base +#: model:res.country,name:base.mx +msgid "Mexico" +msgstr "مکزیک" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Swedish / svenska" +msgstr "سوئدی / svenska" + +#. module: base +#: field:res.company,child_ids:0 +msgid "Child Companies" +msgstr "شرکت‌های فرزند" + +#. module: base +#: model:ir.model,name:base.model_res_users +msgid "res.users" +msgstr "res.users" + +#. module: base +#: model:res.country,name:base.ni +msgid "Nicaragua" +msgstr "نیکاراگوئه" + +#. module: base +#: view:res.partner.event:0 +msgid "General Description" +msgstr "شرح کلی" + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Sale Opportunity" +msgstr "بخت فروش" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "Maintenance contract added !" +msgstr "قرارداد نگهداری اضافه شد!" + +#. module: base +#: field:ir.rule,field_id:0 +#: selection:ir.translation,type:0 +#: field:multi_company.default,field_id:0 +msgid "Field" +msgstr "فیلد" + +#. module: base +#: model:res.country,name:base.ve +msgid "Venezuela" +msgstr "ونزوئلا" + +#. module: base +#: view:res.lang:0 +msgid "9. %j ==> 340" +msgstr "9. %j ==> ۳۴۰" + +#. module: base +#: model:res.country,name:base.zm +msgid "Zambia" +msgstr "زامبیا" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_report_xml +#: model:ir.ui.menu,name:base.menu_ir_action_report_xml +msgid "Report Xml" +msgstr "گزارش XML" + +#. module: base +#: help:res.partner,user_id:0 +msgid "" +"The internal user that is in charge of communicating with this partner if " +"any." +msgstr "در صورت وجود، کاربر درونی که مسؤل ارتباط با این همکار تجاری است." + +#. module: base +#: field:res.partner,parent_id:0 +msgid "Parent Partner" +msgstr "همکار مادر" + +#. module: base +#: view:ir.module.module:0 +msgid "Cancel Upgrade" +msgstr "لغو ارتقا" + +#. module: base +#: model:res.country,name:base.ci +msgid "Ivory Coast (Cote D'Ivoire)" +msgstr "ساحل عاج (Cote D'Ivoire)" + +#. module: base +#: model:res.country,name:base.kz +msgid "Kazakhstan" +msgstr "قزاقستان" + +#. module: base +#: field:ir.actions.report.xml,name:0 +#: field:ir.actions.todo,name:0 +#: field:ir.cron,name:0 +#: field:ir.model.access,name:0 +#: field:ir.model.fields,name:0 +#: field:ir.module.category,name:0 +#: field:ir.module.module,name:0 +#: field:ir.module.module.dependency,name:0 +#: rml:ir.module.reference:0 +#: field:ir.module.repository,name:0 +#: field:ir.property,name:0 +#: field:ir.report.custom.fields,name:0 +#: field:ir.values,name:0 +#: field:maintenance.contract.module,name:0 +#: field:res.bank,name:0 +#: field:res.config.view,name:0 +#: field:res.lang,name:0 +#: field:res.partner,name:0 +#: field:res.partner.bank.type,name:0 +#: field:res.request.link,name:0 +#: field:res.users,name:0 +#: field:workflow,name:0 +#: field:workflow.activity,name:0 +msgid "Name" +msgstr "نام" + +#. module: base +#: model:res.country,name:base.ms +msgid "Montserrat" +msgstr "مونت‌سرات" + +#. module: base +#: model:ir.ui.menu,name:base.menu_translation_app +msgid "Application Terms" +msgstr "واژگان برنامه" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Average" +msgstr "محاسبه میانگین" + +#. module: base +#: field:ir.module.module,demo:0 +msgid "Demo data" +msgstr "داده‌های نمایشی" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "English (UK)" +msgstr "انگلیسی (انگلستان)" + +#. module: base +#: model:res.country,name:base.aq +msgid "Antarctica" +msgstr "جنوبگان" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_3 +msgid "Starter Partner" +msgstr "همکار تجاری آغازگر" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window_view +msgid "ir.actions.act_window.view" +msgstr "ir.actions.act_window.view" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Web" +msgstr "وب" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "English (CA)" +msgstr "انگلیسی (کانادا)" + +#. module: base +#: field:res.partner.event,planned_revenue:0 +msgid "Planned Revenue" +msgstr "درآمد برنامه‌ریزی‌شده" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "" +"You have to import a .CSV file wich is encoded in UTF-8. Please check that " +"the first line of your file is one of the following:" +msgstr "" +"شما باید یک پرونده CSV. که با کدگذاری UTF-8 باشد را درونش کنید. لطفا بررسی " +"کنید تا نخستین خط پرونده شما یکی از نمونه‌های زیر باشد:" + +#. module: base +#: model:res.country,name:base.et +msgid "Ethiopia" +msgstr "اتیوپی" + +#. module: base +#: view:res.lang:0 +msgid "%H - Hour (24-hour clock) as a decimal number [00,23]." +msgstr "%H - ساعت (۲۴ ساعته) یک شماره بین [۰۰ تا ۲۳]." + +#. module: base +#: view:res.roles:0 +msgid "Role" +msgstr "نقش" + +#. module: base +#: help:res.country.state,code:0 +msgid "The state code in three chars.\n" +msgstr "کد استان در ۳ نویسه‌ای.\n" + +#. module: base +#: model:res.country,name:base.sj +msgid "Svalbard and Jan Mayen Islands" +msgstr "جزایر اسوالبار و یان ماین" + +#. module: base +#: view:ir.rule:0 +msgid "Test" +msgstr "آزمایش" + +#. module: base +#: field:ir.report.custom.fields,groupby:0 +msgid "Group By" +msgstr "گروه‌بندی برمبنای" + +#. module: base +#: 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 آمده، هستند." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_WARNING" +msgstr "STOCK_DIALOG_WARNING" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_IN" +msgstr "STOCK_ZOOM_IN" + +#. module: base +#: selection:res.request,state:0 +msgid "closed" +msgstr "بسته" + +#. module: base +#: selection:wizard.module.lang.export,state:0 +msgid "get" +msgstr "دریافت" + +#. module: base +#: help:ir.model.fields,on_delete:0 +msgid "On delete property for many2one fields" +msgstr "ویژگی هنگام ستردن برای فیلدهای many2one" + +#. module: base +#: field:ir.actions.server,write_id:0 +msgid "Write Id" +msgstr "شناسه نوشتن" + +#. module: base +#: field:ir.actions.act_window,domain:0 +msgid "Domain Value" +msgstr "مقدار دامنه" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ITALIC" +msgstr "STOCK_ITALIC" + +#. module: base +#: view:ir.actions.server:0 +msgid "SMS Configuration" +msgstr "پیکربندی پیامک" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_access_act +#: model:ir.ui.menu,name:base.menu_ir_access_act +msgid "Access Controls List" +msgstr "فهرست کنترل‌های دسترسی" + +#. module: base +#: model:res.country,name:base.um +msgid "USA Minor Outlying Islands" +msgstr "جزایر کوچک دورافتاده‌ی ایالات متحده" + +#. module: base +#: field:res.partner.bank,state:0 +#: field:res.partner.bank.type.field,bank_type_id:0 +msgid "Bank Type" +msgstr "نوع بانک" + +#. module: base +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "The name of the group can not start with \"-\"" +msgstr "نام گروه نمی‌تواند با \"-\" آغاز شود" + +#. module: base +#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 +msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." +msgstr "پیشنهاد می‌شود تا زبانه منو بازخوانی شود (Ctrl+t Ctrl+r)." + +#. module: base +#: view:ir.ui.view_sc:0 +#: field:res.partner.title,shortcut:0 +msgid "Shortcut" +msgstr "میان‌بر" + +#. module: base +#: field:ir.model.data,date_init:0 +msgid "Init Date" +msgstr "تاریخ آغازی" + +#. module: base +#: field:workflow.activity,flow_start:0 +msgid "Flow Start" +msgstr "آغاز گردش" + +#. module: base +#: view:ir.model:0 +#: view:ir.model.fields:0 +msgid "Security on Groups" +msgstr "امنیت در گروه‌ها" + +#. module: base +#: view:res.partner.bank:0 +msgid "Bank Account Owner" +msgstr "دارنده حساب بانکی" + +#. module: base +#: model:ir.actions.act_window,name:base.act_values_form +#: model:ir.ui.menu,name:base.menu_values_form +msgid "Client Actions Connections" +msgstr "اتصال‌های کنش‌های کارخواه" + +#. module: base +#: field:ir.ui.view_sc,resource:0 +msgid "Resource Name" +msgstr "نام منبع" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Hours" +msgstr "ساعت‌ها" + +#. module: base +#: model:res.country,name:base.gp +msgid "Guadeloupe (French)" +msgstr "گویان فرانسه" + +#. module: base +#: field:ir.report.custom.fields,cumulate:0 +msgid "Accumulate" +msgstr "انباشته" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Tree can only be used in tabular reports" +msgstr "درخت تنها می‌تواند در گزارش‌های جدولی بکارگرفته شود" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Directory" +msgstr "شاخه" + +#. module: base +#: field:wizard.ir.model.menu.create,name:0 +msgid "Menu Name" +msgstr "نام منو" + +#. module: base +#: field:ir.report.custom,title:0 +msgid "Report Title" +msgstr "عنوان گزارش" + +#. module: base +#: field:ir.report.custom.fields,fontcolor:0 +msgid "Font color" +msgstr "رنگ قلم" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SORT_DESCENDING" +msgstr "STOCK_SORT_DESCENDING" + +#. module: base +#: model:res.country,name:base.my +msgid "Malaysia" +msgstr "مالزی" + +#. module: base +#: model:ir.model,name:base.model_res_request_history +msgid "res.request.history" +msgstr "res.request.history" + +#. module: base +#: view:ir.actions.server:0 +msgid "Client Action Configuration" +msgstr "پیکربندی کنش کارخواه" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_address_form +#: model:ir.model,name:base.model_res_partner_address +#: model:ir.ui.menu,name:base.menu_partner_address_form +#: view:res.partner.address:0 +msgid "Partner Addresses" +msgstr "نشانی‌های همکار" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Indonesian / Bahasa Indonesia" +msgstr "اندونزیایی / Bahasa Indonesia" + +#. module: base +#: model:res.country,name:base.cv +msgid "Cape Verde" +msgstr "کیپ ورد" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "" +"Some installed modules depend on the module you plan to Uninstall :\n" +" %s" +msgstr "" +"شماری از پیمانه‌ها به پیمانه‌ای که برکنار می‌کنید، وابستگی دارند: \n" +" %s" + +#. module: base +#: model:ir.actions.act_window,name:base.act_res_partner_event +#: field:res.partner,events:0 +#: field:res.partner.event,name:0 +msgid "Events" +msgstr "رویدادها" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_roles +#: model:ir.ui.menu,name:base.menu_action_res_roles +msgid "Roles Structure" +msgstr "ساختار نقش‌ها" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.url" +msgstr "ir.actions.url" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_STOP" +msgstr "STOCK_MEDIA_STOP" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DND_MULTIPLE" +msgstr "STOCK_DND_MULTIPLE" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_addess_tree +#: view:res.partner:0 +msgid "Partner Contacts" +msgstr "تماس‌های همکار" + +#. module: base +#: wizard_field:module.module.update,update,add:0 +msgid "Number of modules added" +msgstr "تعداد پیمانه‌های افزوده" + +#. module: base +#: field:workflow.transition,role_id:0 +msgid "Role Required" +msgstr "نقش لازم‌است" + +#. module: base +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "منوهای پدیدآمده" + +#. module: base +#: field:workflow.triggers,workitem_id:0 +msgid "Workitem" +msgstr "آیتم کاری" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_AUTHENTICATION" +msgstr "STOCK_DIALOG_AUTHENTICATION" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_OUT" +msgstr "STOCK_ZOOM_OUT" + +#. module: base +#: field:ir.actions.act_window.view,act_window_id:0 +#: view:ir.actions.actions:0 +#: field:ir.actions.todo,action_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +msgid "Action" +msgstr "عمل" + +#. module: base +#: view:ir.actions.server:0 +msgid "Email Configuration" +msgstr "پیکربندی ایمیل" + +#. module: base +#: model:ir.model,name:base.model_ir_cron +msgid "ir.cron" +msgstr "ir.cron" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-mrp" +msgstr "terp-mrp" + +#. module: base +#: field:ir.actions.server,trigger_obj_id:0 +msgid "Trigger On" +msgstr "رهاساز در" + +#. module: base +#: model:res.country,name:base.fj +msgid "Fiji" +msgstr "فیجی" + +#. module: base +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "اندازه" + +#. module: base +#: model:res.country,name:base.sd +msgid "Sudan" +msgstr "سودان" + +#. module: base +#: view:res.lang:0 +msgid "%m - Month as a decimal number [01,12]." +msgstr "%m - ماه بصورت شماره بین [۰۱ تا ۱۲]." + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export Data" +msgstr "برونش داده‌ها" + +#. module: base +#: model:res.country,name:base.fm +msgid "Micronesia" +msgstr "میکرونزی" + +#. module: base +#: view:res.request.history:0 +msgid "Request History" +msgstr "تاریخچه درخواست" + +#. module: base +#: field:ir.actions.act_window,menus:0 +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" +msgstr "منوها" + +#. module: base +#: model:res.country,name:base.il +msgid "Israel" +msgstr "اسرائیل" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_server_action_create +msgid "Create Action" +msgstr "ساخت کنش" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "HTML from HTML" +msgstr "Html از html" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "html" +msgstr "html" + +#. module: base +#: field:res.lang,time_format:0 +msgid "Time Format" +msgstr "قالب ساعت" + +#. module: base +#: wizard_view:module.upgrade,next:0 +msgid "Your system will be upgraded." +msgstr "سامانه شما ارتقا خواهد یافت" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "گزارش‌های تعریف‌شده" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-tools" +msgstr "terp-tools" + +#. module: base +#: view:ir.actions.report.xml:0 +msgid "Report xml" +msgstr "گزارش xml" + +#. module: base +#: model:ir.actions.act_window,name:base.action_module_open_categ +#: model:ir.actions.act_window,name:base.open_module_tree +#: view:ir.module.module:0 +#: model:ir.ui.menu,name:base.menu_module_tree +#: field:wizard.module.lang.export,modules:0 +msgid "Modules" +msgstr "پیمانه‌ها" + +#. module: base +#: selection:workflow.activity,kind:0 +#: field:workflow.activity,subflow_id:0 +#: field:workflow.workitem,subflow_id:0 +msgid "Subflow" +msgstr "زیرگردش" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDO" +msgstr "STOCK_UNDO" + +#. module: base +#: field:workflow.transition,signal:0 +msgid "Signal (button Name)" +msgstr "سیگنال (نام دکمه)" + +#. module: base +#: view:res.bank:0 +#: field:res.partner,bank_ids:0 +msgid "Banks" +msgstr "بانک‌ها" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-sale" +msgstr "terp-sale" + +#. module: base +#: view:res.lang:0 +msgid "%d - Day of the month as a decimal number [01,31]." +msgstr "%d - روز از ماه با یک شماره بین [۰۱ تا ۳۱]." + +#. module: base +#: view:res.lang:0 +msgid "%I - Hour (12-hour clock) as a decimal number [01,12]." +msgstr "%I - ساعت (12 ساعته) یک شماره بین [۰۱ تا ۱۲]." + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Romanian / limba română" +msgstr "رومانیایی / limba română" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ADD" +msgstr "STOCK_ADD" + +#. module: base +#: field:ir.cron,doall:0 +msgid "Repeat Missed" +msgstr "تکرار بی‌پاسخ" + +#. module: base +#: help:ir.actions.server,state:0 +msgid "Type of the Action that is to be executed" +msgstr "نوع کُنشی که باید اجرا شود" + +#. module: base +#: field:ir.server.object.lines,server_id:0 +msgid "Object Mapping" +msgstr "نگاشت شی" + +#. module: base +#: help:res.currency,rate:0 +#: help:res.currency.rate,rate:0 +msgid "The rate of the currency to the currency of rate 1" +msgstr "The rate of the currency to the currency of rate 1" + +#. module: base +#: model:res.country,name:base.uk +msgid "United Kingdom" +msgstr "انگلستان" + +#. module: base +#: view:ir.actions.server:0 +msgid "Create / Write" +msgstr "پدیدن / نوشتن" + +#. module: base +#: help:res.partner.category,active:0 +msgid "The active field allows you to hide the category without removing it." +msgstr "فیلد فعال می‌گذارد تا شما دسته‌بندی را بدون برداشتن آن پنهان نمایید." + +#. module: base +#: rml:ir.module.reference:0 +msgid "Object:" +msgstr "شی:" + +#. module: base +#: model:res.country,name:base.bw +msgid "Botswana" +msgstr "بوتسوانا" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title_partner +#: model:ir.ui.menu,name:base.menu_partner_title_partner +#: view:res.partner.title:0 +msgid "Partner Titles" +msgstr "عناوین همکار" + +#. module: base +#: selection:ir.actions.todo,type:0 +msgid "Service" +msgstr "خدمت" + +#. module: base +#: help:ir.actions.act_window,auto_refresh:0 +msgid "Add an auto-refresh on the view" +msgstr "افزودن یک نوسازی خودکار روی نما" + +#. module: base +#: wizard_view:module.upgrade,next:0 +#: wizard_field:module.upgrade,next,module_download:0 +msgid "Modules to download" +msgstr "پیمانه‌ها برای داونلود" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_workitem_form +#: model:ir.ui.menu,name:base.menu_workflow_workitem +msgid "Workitems" +msgstr "آیتم‌های کاری" + +#. module: base +#: field:wizard.module.lang.export,advice:0 +msgid "Advice" +msgstr "اندرز" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Lithuanian / Lietuvių kalba" +msgstr "لیتوانیایی / Lietuvių kalba" + +#. module: base +#: help:ir.actions.server,record_id:0 +msgid "" +"Provide the field name where the record id is stored after the create " +"operations. If it is empty, you can not track the new record." +msgstr "" +"شامل نام فیلدی که شناسه رکورد آن پس از گردانش پدیدآوری ذخیره شده است. اگر " +"خالی باشد، شما نمی‌توانید رکورد نو را ردگیری نمایید." + +#. module: base +#: field:ir.ui.view,inherit_id:0 +msgid "Inherited View" +msgstr "نمای موروثی" + +#. module: base +#: model:ir.model,name:base.model_ir_translation +msgid "ir.translation" +msgstr "ir.translation" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_install +#: model:ir.ui.menu,name:base.menu_module_tree_install +msgid "Installed modules" +msgstr "پیمانه‌های برپاسازی‌شده" + +#. module: base +#: model:res.country,name:base.lc +msgid "Saint Lucia" +msgstr "سنت لوشا" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +#: view:maintenance.contract:0 +msgid "Maintenance Contract" +msgstr "قرارداد نگهداری" + +#. module: base +#: help:ir.actions.server,trigger_obj_id:0 +msgid "Select the object from the model on which the workflow will executed." +msgstr "شی را از روی مدلی که کارگردش اجرا خواهد شد برگزینید." + +#. module: base +#: field:ir.model,state:0 +#: field:ir.model.fields,state:0 +#: field:ir.model.grid,state:0 +msgid "Manually Created" +msgstr "دستی پدیدآمده" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Count" +msgstr "محاسبه تعداد" + +#. module: base +#: field:ir.model.access,perm_create:0 +msgid "Create Access" +msgstr "پدیدن دسترسی" + +#. module: base +#: field:res.partner.address,state_id:0 +msgid "Fed. State" +msgstr "ایالت فدرال" + +#. module: base +#: model:res.country,name:base.io +msgid "British Indian Ocean Territory" +msgstr "مستعمره‌های انگلستان در اقیانوس هند" + +#. module: base +#: view:ir.actions.server:0 +msgid "Field Mapping" +msgstr "نگاشت فیلد" + +#. module: base +#: field:maintenance.contract,date_start:0 +msgid "Starting Date" +msgstr "تاریخ آغاز" + +#. module: base +#: view:ir.model:0 +#: field:ir.model.fields,ttype:0 +msgid "Field Type" +msgstr "نوع فیلد" + +#. module: base +#: field:res.country.state,code:0 +msgid "State Code" +msgstr "کد استان" + +#. module: base +#: field:ir.model.fields,on_delete:0 +msgid "On delete" +msgstr "هنگام ستردن" + +#. module: base +#: selection:res.lang,direction:0 +msgid "Left-to-Right" +msgstr "چپ به راست" + +#. module: base +#: field:res.lang,translatable:0 +msgid "Translatable" +msgstr "برگردان پذیر" + +#. module: base +#: model:res.country,name:base.vn +msgid "Vietnam" +msgstr "ویتنام" + +#. module: base +#: field:res.users,signature:0 +msgid "Signature" +msgstr "امضا" + +#. module: base +#: field:res.partner.category,complete_name:0 +msgid "Full Name" +msgstr "نام کامل" + +#. module: base +#: model:res.country,name:base.mz +msgid "Mozambique" +msgstr "موزامبیک" + +#. module: base +#: model:ir.actions.act_window,name:base.grant_menu_access +#: model:ir.ui.menu,name:base.menu_grant_menu_access +msgid "Manage Menus" +msgstr "مدیریت منوها" + +#. module: base +#: field:ir.actions.server,message:0 +#: wizard_field:res.partner.spam_send,init,text:0 +msgid "Message" +msgstr "پیغام" + +#. module: base +#: field:ir.actions.act_window.view,multi:0 +msgid "On Multiple Doc." +msgstr "روی چند سند" + +#. module: base +#: model:ir.ui.menu,name:base.menu_base_config_contact +#: field:res.partner,address:0 +#: view:res.partner.address:0 +msgid "Contacts" +msgstr "تماس‌ها" + +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "جزایر فارو" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_upgrade +#: model:ir.ui.menu,name:base.menu_wizard_upgrade +msgid "Apply Scheduled Upgrades" +msgstr "بکاربندی ارتقای زمان‌بندی‌شده" + +#. module: base +#: model:ir.ui.menu,name:base.maintenance +msgid "Maintenance" +msgstr "نگهداری" + +#. module: base +#: model:res.country,name:base.mp +msgid "Northern Mariana Islands" +msgstr "جزایر ماریانای شمالی" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "module,type,name,res_id,src,value" + +#. module: base +#: model:ir.ui.menu,name:base.menu_management +msgid "Modules Management" +msgstr "مدیریت پیمانه‌ها" + +#. module: base +#: rml:ir.module.reference:0 +#: field:maintenance.contract.module,version:0 +msgid "Version" +msgstr "نگارش" + +#. module: base +#: model:ir.model,name:base.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "wizard.ir.model.menu.create" + +#. module: base +#: view:workflow.transition:0 +msgid "Transition" +msgstr "گذار" + +#. module: base +#: field:ir.actions.todo,active:0 +#: field:ir.cron,active:0 +#: field:ir.module.repository,active:0 +#: field:ir.sequence,active:0 +#: field:res.bank,active:0 +#: field:res.currency,active:0 +#: field:res.lang,active:0 +#: field:res.partner,active:0 +#: field:res.partner.address,active:0 +#: field:res.partner.canal,active:0 +#: field:res.partner.category,active:0 +#: field:res.partner.event.type,active:0 +#: field:res.request,active:0 +#: field:res.users,active:0 +msgid "Active" +msgstr "فعال" + +#. module: base +#: model:res.country,name:base.na +msgid "Namibia" +msgstr "نامیبیا" + +#. module: base +#: model:res.country,name:base.mn +msgid "Mongolia" +msgstr "مغولستان" + +#. module: base +#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/maintenance/maintenance.py:0 +#: code:addons/base/module/module.py:0 +#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "Error" +msgstr "خطا" + +#. module: base +#: view:res.partner.som:0 +msgid "Partner State of Mind" +msgstr "وضعیت فکری همکار" + +#. module: base +#: selection:ir.ui.view,type:0 +msgid "mdx" +msgstr "mdx" + +#. module: base +#: model:res.country,name:base.bi +msgid "Burundi" +msgstr "بوروندی" + +#. module: base +#: wizard_button:base.module.import,import,open_window:0 +#: wizard_button:module.upgrade,end,end:0 +#: wizard_button:module.upgrade,start,end:0 +#: wizard_button:server.action.create,init,end:0 +#: wizard_button:server.action.create,step_1,end:0 +#: view:wizard.module.lang.export:0 +msgid "Close" +msgstr "بستن" + +#. module: base +#: model:res.country,name:base.bt +msgid "Bhutan" +msgstr "بوتان" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_11 +msgid "Textile Suppliers" +msgstr "تامین‌کنندگان منسوجات" + +#. module: base +#: selection:ir.actions.url,target:0 +msgid "This Window" +msgstr "این پنجره" + +#. module: base +#: field:wizard.module.lang.export,format:0 +msgid "File Format" +msgstr "قالب پرونده" + +#. module: base +#: field:res.lang,iso_code:0 +msgid "ISO code" +msgstr "کد ISO" + +#. module: base +#: model:ir.model,name:base.model_res_config_view +msgid "res.config.view" +msgstr "res.config.view" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_INDENT" +msgstr "STOCK_INDENT" + +#. module: base +#: view:workflow.workitem:0 +msgid "Workflow Workitems" +msgstr "آیتم‌های کاری کارگردش" + +#. module: base +#: model:res.country,name:base.vc +msgid "Saint Vincent & Grenadines" +msgstr "امریکا/سنت وینسنت" + +#. module: base +#: field:ir.model.config,password:0 +#: field:maintenance.contract,password:0 +#: field:maintenance.contract.wizard,password:0 +#: wizard_field:res.partner.sms_send,init,password:0 +#: field:res.users,password:0 +msgid "Password" +msgstr "گذرواژه" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_fields +#: view:ir.model:0 +#: field:ir.model,field_id:0 +#: model:ir.model,name:base.model_ir_model_fields +#: view:ir.model.fields:0 +#: field:ir.model.grid,field_id:0 +#: field:ir.property,fields_id:0 +#: field:ir.report.custom,fields_child0:0 +#: model:ir.ui.menu,name:base.ir_model_model_fields +msgid "Fields" +msgstr "فیلدها" + +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +msgstr "پیمانه‌ با موفقیت درونش شد!" + +#. module: base +#: field:res.company,rml_header2:0 +msgid "RML Internal Header" +msgstr "سرنویس داخلی RML" + +#. module: base +#: selection:ir.report.custom,print_format:0 +msgid "a4" +msgstr "a4" + +#. module: base +#: field:ir.actions.act_window,search_view_id:0 +msgid "Search View Ref." +msgstr "مرجع نمای جستجو" + +#. module: base +#: model:res.partner.bank.type.field,name:base.bank_normal_field +msgid "acc_number" +msgstr "acc_number" + +#. module: base +#: model:res.country,name:base.mm +msgid "Myanmar" +msgstr "میانمار" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Chinese (CN) / 简体中文" +msgstr "چینی / 简体中文" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_NEXT" +msgstr "STOCK_MEDIA_NEXT" + +#. module: base +#: field:res.bank,street:0 +#: field:res.partner.address,street:0 +#: field:res.partner.bank,street:0 +msgid "Street" +msgstr "خیابان" + +#. module: base +#: model:res.country,name:base.yu +msgid "Yugoslavia" +msgstr "یوگسلاوی" + +#. module: base +#: wizard_view:module.upgrade,next:0 +msgid "Note that this operation my take a few minutes." +msgstr "توجه داشته باشید که این گردانش ممکن است مدتی به درازا بکشد." + +#. module: base +#: field:ir.model.data,name:0 +msgid "XML Identifier" +msgstr "شناسه XML" + +#. module: base +#: model:res.country,name:base.ca +msgid "Canada" +msgstr "کانادا" + +#. module: base +#: field:ir.actions.report.xml,report_name:0 +msgid "Internal Name" +msgstr "نام داخلی" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +msgid "Unknown" +msgstr "ناشناخته" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_users_my +msgid "Change My Preferences" +msgstr "تغییر ترجیحات من" + +#. module: base +#: constraint:ir.actions.act_window:0 +msgid "Invalid model name in the action definition." +msgstr "نام مدل در تعریف کنش نامعتبر است." + +#. module: base +#: wizard_field:res.partner.sms_send,init,text:0 +msgid "SMS Message" +msgstr "پیغام پیامک" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_EDIT" +msgstr "STOCK_EDIT" + +#. module: base +#: model:res.country,name:base.cm +msgid "Cameroon" +msgstr "کامرون" + +#. module: base +#: model:res.country,name:base.bf +msgid "Burkina Faso" +msgstr "بورکینافاسو" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_FORWARD" +msgstr "STOCK_MEDIA_FORWARD" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Skipped" +msgstr "پرش داده شده" + +#. module: base +#: selection:ir.model.fields,state:0 +msgid "Custom Field" +msgstr "فیلد دلخواه" + +#. module: base +#: model:res.country,name:base.cc +msgid "Cocos (Keeling) Islands" +msgstr "جزایر کوکوس" + +#. module: base +#: field:workflow.instance,uid:0 +msgid "User ID" +msgstr "شناسه کاربر" + +#. module: base +#: view:ir.actions.server:0 +msgid "" +"Access all the fields related to the current object using expression in " +"double brackets, i.e.[[ object.partner_id.name ]]" +msgstr "" +"دسترسی به تمامی فیلدهایی که با شی کنونی از طریق عبارات بین دو براکت، مرتبط " +"هستند. برای نمونه [[ object.partner_id.name ]]" + +#. module: base +#: view:res.lang:0 +msgid "11. %U or %W ==> 48 (49th week)" +msgstr "11. %U or %W ==> ۴۸ (چهل و نهمین هفته)" + +#. module: base +#: model:ir.model,name:base.model_res_partner_bank_type_field +msgid "Bank type fields" +msgstr "فیلدهای نوع بانک" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "type,name,res_id,src,value" +msgstr "type,name,res_id,src,value" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Dutch / Nederlands" +msgstr "هلندی / Nederlands" + +#. module: base +#: wizard_view:server.action.create,step_1:0 +#: wizard_field:server.action.create,step_1,report:0 +msgid "Select Report" +msgstr "گزارش را برگزینید" + +#. module: base +#: field:ir.report.custom.fields,fc1_condition:0 +#: field:ir.report.custom.fields,fc2_condition:0 +#: field:ir.report.custom.fields,fc3_condition:0 +msgid "condition" +msgstr "شرط" + +#. module: base +#: rml:ir.module.reference:0 +msgid "1cm 28cm 20cm 28cm" +msgstr "1cm 28cm 20cm 28cm" + +#. module: base +#: field:ir.sequence,suffix:0 +msgid "Suffix" +msgstr "پسوند" + +#. module: base +#: model:res.country,name:base.mo +msgid "Macau" +msgstr "آسیا/ماکائو" + +#. module: base +#: model:ir.actions.report.xml,name:base.res_partner_address_report +msgid "Labels" +msgstr "برچسب‌ها" + +#. module: base +#: wizard_field:res.partner.spam_send,init,from:0 +msgid "Sender's email" +msgstr "ایمیل فرستنده" + +#. module: base +#: field:ir.default,field_name:0 +msgid "Object Field" +msgstr "فیلد شی" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "French (CH) / Français (CH)" +msgstr "فرانسوی (سوییس) / Français (CH)" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NEW" +msgstr "STOCK_NEW" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "None" +msgstr "هیچ‌یک" + +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "فیلدهای گزارش" + +#. module: base +#: view:res.partner:0 +msgid "General" +msgstr "عمومی" + +#. module: base +#: field:workflow.transition,act_to:0 +msgid "Destination Activity" +msgstr "فعالیت مقصد" + +#. module: base +#: view:ir.values:0 +msgid "Connect Events to Actions" +msgstr "اتصال رویدادها به کنش‌ها" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SORT_ASCENDING" +msgstr "STOCK_SORT_ASCENDING" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" +msgstr "STOCK_ABOUT" + +#. module: base +#: field:ir.module.category,parent_id:0 +#: field:res.partner.category,parent_id:0 +msgid "Parent Category" +msgstr "دسته‌بندی مادر" + +#. module: base +#: model:res.country,name:base.fi +msgid "Finland" +msgstr "فنلاند" + +#. module: base +#: selection:res.partner.address,type:0 +#: selection:res.partner.title,domain:0 +msgid "Contact" +msgstr "تماس" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "ir.ui.menu" + +#. module: base +#: view:ir.module.module:0 +msgid "Cancel Uninstall" +msgstr "لغو برکناری" + +#. module: base +#: view:res.bank:0 +#: view:res.partner:0 +#: view:res.partner.address:0 +msgid "Communication" +msgstr "رسانگرش" + +#. module: base +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" +msgstr "ir.server.object.lines" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "Module %s: Invalid Quality Certificate" +msgstr "پیمانه %s: گواهینامه کیفیت نامعتبر" + +#. module: base +#: model:res.country,name:base.kw +msgid "Kuwait" +msgstr "کویت" + +#. module: base +#: field:workflow.workitem,inst_id:0 +msgid "Instance" +msgstr "وهله" + +#. module: base +#: help:ir.actions.report.xml,attachment:0 +msgid "" +"This is the filename of the attachment used to store the printing result. " +"Keep empty to not save the printed reports. You can use a python expression " +"with the object and time variables." +msgstr "" +"نام پرونده‌ پیوستی است که برآمدِ چاپی را در خود نگه می‌دارد. برای نگه نداشتن " +"گزارش‌های چاپ شده اینجا را خالی بگذارید. شما می‌توانید یک عبارت پایتونی " +"همراه با متغیرهای ساعت و شی را بکارگیرید." + +#. module: base +#: model:res.country,name:base.ng +msgid "Nigeria" +msgstr "نیجریه" + +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "res.partner.event" + +#. module: base +#: field:res.company,user_ids:0 +msgid "Accepted Users" +msgstr "کاربران پذیرفته" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDERLINE" +msgstr "STOCK_UNDERLINE" + +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "مقادیر برای نوع رویداد" + +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Always Searchable" +msgstr "همیشه قابل جستجو" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" +msgstr "STOCK_CLOSE" + +#. module: base +#: model:res.country,name:base.hk +msgid "Hong Kong" +msgstr "هنگ‌کنگ" + +#. module: base +#: help:ir.actions.server,name:0 +msgid "Easy to Refer action by name e.g. One Sales Order -> Many Invoices" +msgstr "" +"کُنش آسان برای ارجاع توسط نام، برای نمونه یک سفارش فروش -> چندین سیاهه" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_10 +msgid "Scheduler" +msgstr "زمان‌بند" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_BOLD" +msgstr "STOCK_BOLD" + +#. module: base +#: model:res.country,name:base.ph +msgid "Philippines" +msgstr "فیلیپین" + +#. module: base +#: model:res.country,name:base.ma +msgid "Morocco" +msgstr "مراکش" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-graph" +msgstr "terp-graph" + +#. module: base +#: view:res.lang:0 +msgid "2. %a ,%A ==> Fri, Friday" +msgstr "2. %a ,%A ==> Fri, Friday" + +#. module: base +#: wizard_view:module.lang.install,start:0 +msgid "" +"The selected language has been successfully installed. You must change the " +"preferences of the user and open a new menu to view changes." +msgstr "" +"زبان گزینش شده با موفقیت برپاسازی گردید. شما باید ترجیحات کاربری را تغییر " +"دهید و یک منوی نو برای دیدن تغییرات باز کنید." + +#. module: base +#: model:ir.model,name:base.model_ir_sequence +msgid "ir.sequence" +msgstr "ir.sequence" + +#. module: base +#: model:ir.model,name:base.model_res_partner_event_type +#: model:ir.ui.menu,name:base.next_id_14 +#: view:res.partner.event:0 +msgid "Partner Events" +msgstr "رویدادهای همکار" + +#. module: base +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "workflow.transition" + +#. module: base +#: view:res.lang:0 +msgid "%a - Abbreviated weekday name." +msgstr "%a - نام روزهای اختصاری هفته." + +#. module: base +#: rml:ir.module.reference:0 +msgid "Introspection report on objects" +msgstr "گزارش درون‌نگری روی اشیا" + +#. module: base +#: model:res.country,name:base.pf +msgid "Polynesia (French)" +msgstr "پلی‌نزی فرانسه" + +#. module: base +#: model:res.country,name:base.dm +msgid "Dominica" +msgstr "دومینیکا" + +#. module: base +#: model:ir.model,name:base.model_res_currency_rate +msgid "Currency Rate" +msgstr "نرخ ارز" + +#. module: base +#: model:res.country,name:base.np +msgid "Nepal" +msgstr "نپال" + +#. module: base +#: field:res.partner.event,event_ical_id:0 +msgid "iCal id" +msgstr "شناسه iCal" + +#. module: base +#: wizard_view:res.partner.sms_send,init:0 +msgid "Bulk SMS send" +msgstr "ارسال فله‌ای پیامک" + +#. module: base +#: view:res.lang:0 +msgid "%Y - Year with century as a decimal number." +msgstr "%Y - سال با ۴ شماره" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Pie Chart" +msgstr "نمودار کلوچه‌ای" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" +msgstr "ثانبه: %(sec)s" + +#. module: base +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.partner,ref:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +msgid "Code" +msgstr "کد" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "" +"Can not create the module file:\n" +" %s" +msgstr "" +"نمی‌توان پرونده پیمانه را پدیدآورد:\n" +"%s" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_update +#: model:ir.ui.menu,name:base.menu_module_update +msgid "Update Modules List" +msgstr "بروزرسانی فهرست پیمانه‌ها" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Continue" +msgstr "ادامه" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Thai / ภาษาไทย" +msgstr "تایلندی / ภาษาไทย" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_property_form +#: model:ir.ui.menu,name:base.menu_ir_property_form +msgid "Default Properties" +msgstr "ویژگی‌های پیش‌فرض" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Slovenian / slovenščina" +msgstr "اسلوونیایی / slovenščina" + +#. module: base +#: field:ir.actions.report.xml,attachment_use:0 +msgid "Reload from Attachment" +msgstr "بازخوانی از پیوست" + +#. module: base +#: model:res.country,name:base.bv +msgid "Bouvet Island" +msgstr "جزیره‌ی بووت" + +#. module: base +#: field:ir.report.custom,print_orientation:0 +msgid "Print orientation" +msgstr "جهت چاپ" + +#. module: base +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export a Translation File" +msgstr "برونش یک پرونده برگردانی" + +#. module: base +#: field:ir.attachment,name:0 +msgid "Attachment Name" +msgstr "نام پیوست" + +#. module: base +#: wizard_field:module.lang.import,init,data:0 +#: field:wizard.module.lang.export,data:0 +msgid "File" +msgstr "پرونده" + +#. module: base +#: view:res.users:0 +msgid "Add User" +msgstr "افزودن کاربر" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" +msgstr "ir.actions.configuration.wizard" + +#. module: base +#: view:res.lang:0 +msgid "%b - Abbreviated month name." +msgstr "%b - نام اختصاری ماه" + +#. module: base +#: field:res.partner,supplier:0 +#: model:res.partner.category,name:base.res_partner_category_8 +msgid "Supplier" +msgstr "تامین‌کننده" + +#. module: base +#: view:ir.actions.server:0 +#: selection:ir.actions.server,state:0 +msgid "Multi Actions" +msgstr "چندین کنش" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Close" +msgstr "_بستن" + +#. module: base +#: selection:maintenance.contract,kind:0 +msgid "Full" +msgstr "کامل" + +#. module: base +#: model:res.country,name:base.as +msgid "American Samoa" +msgstr "سومای امریکا" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_model +#: model:ir.model,name:base.model_ir_model +#: model:ir.ui.menu,name:base.ir_model_model_menu +msgid "Objects" +msgstr "اشیا" + +#. module: base +#: field:ir.model.fields,selectable:0 +msgid "Selectable" +msgstr "گزینش پذیر" + +#. module: base +#: view:res.request.link:0 +msgid "Request Link" +msgstr "پیوند درخواست" + +#. module: base +#: field:ir.module.module,url:0 +#: field:ir.module.repository,url:0 +msgid "URL" +msgstr "URL" + +#. module: base +#: help:res.country,name:0 +msgid "The full name of the country." +msgstr "نام کامل کشور." + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Iteration" +msgstr "تکرار" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" +msgstr "terp-stock" + +#. module: base +#: model:res.country,name:base.ae +msgid "United Arab Emirates" +msgstr "امارات متحده عربی" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_RECORD" +msgstr "STOCK_MEDIA_RECORD" + +#. module: base +#: model:res.country,name:base.re +msgid "Reunion (French)" +msgstr "گویان فرانسه" + +#. module: base +#: model:res.country,name:base.cz +msgid "Czech Republic" +msgstr "جمهوری چک" + +#. module: base +#: model:res.country,name:base.sb +msgid "Solomon Islands" +msgstr "جزایر سلیمان" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "AccessError" +msgstr "خطای دسترسی" + +#. module: base +#: view:res.lang:0 +msgid "8. %I:%M:%S %p ==> 06:25:20 PM" +msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" + +#. module: base +#: view:ir.translation:0 +#: model:ir.ui.menu,name:base.menu_translation +msgid "Translations" +msgstr "برگردان‌ها" + +#. module: base +#: field:ir.sequence,padding:0 +msgid "Number padding" +msgstr "پیمایش شمارگانی" + +#. module: base +#: model:res.country,name:base.ua +msgid "Ukraine" +msgstr "اوکراین" + +#. module: base +#: model:res.country,name:base.to +msgid "Tonga" +msgstr "تونگا" + +#. module: base +#: model:ir.model,name:base.model_ir_module_category +#: view:ir.module.category:0 +msgid "Module Category" +msgstr "دسته‌بندی پیمانه" + +#. module: base +#: model:res.country,name:base.us +msgid "United States" +msgstr "ایالات متحده" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Reference Guide" +msgstr "راهنمای مرجع" + +#. module: base +#: model:res.country,name:base.ml +msgid "Mali" +msgstr "مالی" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNINDENT" +msgstr "STOCK_UNINDENT" + +#. module: base +#: field:ir.cron,interval_number:0 +msgid "Interval Number" +msgstr "شماره بازه" + +#. module: base +#: selection:maintenance.contract,kind:0 +msgid "Partial" +msgstr "جزئی" + +#. module: base +#: model:res.country,name:base.tk +msgid "Tokelau" +msgstr "توکلائو" + +#. module: base +#: field:ir.actions.report.xml,report_xsl:0 +msgid "XSL path" +msgstr "مسیر XSL" + +#. module: base +#: model:res.country,name:base.bn +msgid "Brunei Darussalam" +msgstr "برونئی دارالسلام" + +#. module: base +#: field:ir.actions.act_window,view_type:0 +#: field:ir.actions.act_window.view,view_mode:0 +#: field:ir.ui.view,type:0 +#: field:wizard.ir.model.menu.create.line,view_type:0 +msgid "View Type" +msgstr "نوع نما" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_2 +msgid "User Interface" +msgstr "واسط کاربر" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_INFO" +msgstr "STOCK_DIALOG_INFO" + +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "تاریخ پدیدن" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" +msgstr "ir.actions.todo" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Get file" +msgstr "گرفتن پرونده" + +#. module: base +#: wizard_view:module.module.update,init:0 +msgid "" +"This function will check for new modules in the 'addons' path and on module " +"repositories:" +msgstr "" +"این تابع بررسی خواهد کرد تا پیمانه‌های نو در مسیر 'addons' و مخازن پیمانه " +"وجود داشته باشد:" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_BACK" +msgstr "STOCK_GO_BACK" + +#. module: base +#: view:ir.actions.act_window:0 +msgid "General Settings" +msgstr "تنظیمات عمومی" + +#. module: base +#: model:ir.ui.menu,name:base.custom_shortcuts +msgid "Custom Shortcuts" +msgstr "میان‌برهای دلخواه" + +#. module: base +#: model:res.country,name:base.dz +msgid "Algeria" +msgstr "الجزایر" + +#. module: base +#: model:res.country,name:base.be +msgid "Belgium" +msgstr "بلژیک" + +#. module: base +#: field:ir.translation,lang:0 +#: wizard_field:module.lang.install,init,lang:0 +#: field:res.partner,lang:0 +#: field:res.users,context_lang:0 +#: field:wizard.module.lang.export,lang:0 +#: field:wizard.module.update_translations,lang:0 +msgid "Language" +msgstr "زبان" + +#. module: base +#: model:res.country,name:base.gm +msgid "Gambia" +msgstr "گامبیا" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_company_form +#: model:ir.ui.menu,name:base.menu_action_res_company_form +#: model:ir.ui.menu,name:base.menu_res_company_global +#: view:res.company:0 +msgid "Companies" +msgstr "شرکت‌ها" + +#. module: base +#: view:ir.actions.server:0 +#: field:ir.actions.server,code:0 +#: selection:ir.actions.server,state:0 +msgid "Python Code" +msgstr "کد پایتون" + +#. module: base +#: code:addons/base/module/wizard/wizard_module_import.py:0 +#, python-format +msgid "Can not create the module file: %s !" +msgstr "ناتوانی در پدیدن پرونده پیمانه: %s!" + +#. module: base +#: model:ir.module.module,description:base.module_meta_information +msgid "The kernel of OpenERP, needed for all installation." +msgstr "هسته اپن ای‌آر‌پی برای تمامی برپاسازی‌ها لازم است." + +#. module: base +#: wizard_button:base.module.import,init,end:0 +#: selection:ir.actions.todo,state:0 +#: wizard_button:module.lang.import,init,end:0 +#: wizard_button:module.lang.install,init,end:0 +#: wizard_button:module.module.update,init,end:0 +#: wizard_button:module.upgrade,next,end:0 +#: wizard_button:res.partner.sms_send,init,end:0 +#: wizard_button:res.partner.spam_send,init,end:0 +#: view:wizard.ir.model.menu.create:0 +#: view:wizard.module.lang.export:0 +#: view:wizard.module.update_translations:0 +msgid "Cancel" +msgstr "لغو" + +#. module: base +#: code:addons/base/ir/ir_actions.py:0 +#, python-format +msgid "Please specify server option --smtp-from !" +msgstr "لطفا گزینه کارپذیر smpt-from-- را تعیین کنید!" + +#. module: base +#: selection:wizard.module.lang.export,format:0 +msgid "PO File" +msgstr "پرونده PO" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" +msgstr "STOCK_SPELL_CHECK" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_category +#: model:ir.ui.menu,name:base.menu_partner_category_main +msgid "Partners by Categories" +msgstr "همکاران برمبنای دسته‌بندی‌ها" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_9 +msgid "Components Supplier" +msgstr "تامین‌کننده اجزا" + +#. module: base +#: field:ir.actions.act_window,default_user_ids:0 +#: model:ir.actions.act_window,name:base.action_res_users +#: field:ir.actions.todo,users_id:0 +#: field:ir.default,uid:0 +#: model:ir.ui.menu,name:base.menu_action_res_users +#: model:ir.ui.menu,name:base.menu_users +#: view:res.groups:0 +#: field:res.groups,users:0 +#: field:res.roles,users:0 +#: view:res.users:0 +msgid "Users" +msgstr "کاربران" + +#. module: base +#: field:ir.module.module,published_version:0 +msgid "Published Version" +msgstr "نگارش منتشر شده" + +#. module: base +#: model:res.country,name:base.is +msgid "Iceland" +msgstr "ایسلند" + +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" +"نقش‌ها برای کنش‌های تعریف‌شده موجود که در کارگردش‌ها فراهم می‌شوند، بکار " +"بسته می‌شوند." + +#. module: base +#: model:res.country,name:base.de +msgid "Germany" +msgstr "آلمان" + +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "هفته سال: %(woy)s" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_14 +msgid "Bad customers" +msgstr "مشتریان نادرست" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HARDDISK" +msgstr "STOCK_HARDDISK" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "گزارش‌ها:" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_APPLY" +msgstr "STOCK_APPLY" + +#. module: base +#: model:ir.actions.act_window,name:base.action_maintenance_contract_form +#: model:ir.ui.menu,name:base.menu_maintenance_contract +msgid "Your Maintenance Contracts" +msgstr "قراردادهای نگهداری شما" + +#. module: base +#: view:res.users:0 +msgid "" +"Please note that you will have to logout and relog if you change your " +"password." +msgstr "" +"لطفا توجه داشته باشید اگر گذرواژه خود را تغییر دهید باید خارج و مجددا وارد " +"شوید." + +#. module: base +#: model:res.country,name:base.gy +msgid "Guyana" +msgstr "گویان" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3" +msgstr "GPL-3" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-2" +msgstr "GPL-2" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Portugese (BR) / português (BR)" +msgstr "پرتغالی (برزیل) / português (BR)" + +#. module: base +#: field:ir.actions.server,record_id:0 +msgid "Create Id" +msgstr "شناسه پدیدن" + +#. module: base +#: model:res.country,name:base.hn +msgid "Honduras" +msgstr "هندوراس" + +#. module: base +#: model:res.country,name:base.eg +msgid "Egypt" +msgstr "مصر" + +#. module: base +#: help:ir.actions.server,model_id:0 +msgid "" +"Select the object on which the action will work (read, write, create)." +msgstr "شیی را که کُنش روی آن کار خواهد کرد برگزینید (خواندن،‌نوشتن، پدیدن)." + +#. module: base +#: view:ir.model:0 +msgid "Fields Description" +msgstr "شرح فیلدها" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CDROM" +msgstr "STOCK_CDROM" + +#. module: base +#: field:ir.model.fields,readonly:0 +#: field:res.partner.bank.type.field,readonly:0 +msgid "Readonly" +msgstr "تنها خواندنی" + +#. module: base +#: field:res.partner.event,type:0 +msgid "Type of Event" +msgstr "نوع رویداد" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_type +#: model:ir.ui.menu,name:base.menu_ir_sequence_type +msgid "Sequence Types" +msgstr "انواع دنباله" + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "To be installed" +msgstr "برای برپاسازی" + +#. module: base +#: model:ir.module.module,shortdesc:base.module_meta_information +#: field:res.currency,base:0 +msgid "Base" +msgstr "پایه" + +#. module: base +#: model:res.country,name:base.lr +msgid "Liberia" +msgstr "لیبریا" + +#. module: base +#: view:ir.attachment:0 +#: view:ir.model:0 +#: view:res.groups:0 +#: view:res.partner:0 +#: field:res.partner,comment:0 +#: field:res.partner.function,ref:0 +msgid "Notes" +msgstr "یادداشت‌ها" + +#. module: base +#: field:ir.property,value:0 +#: selection:ir.server.object.lines,type:0 +#: field:ir.server.object.lines,value:0 +#: field:ir.values,value:0 +#: field:ir.values,value_unpickle:0 +msgid "Value" +msgstr "مقدار" + +#. module: base +#: view:wizard.module.update_translations:0 +msgid "Update Translations" +msgstr "بروزرسانی برگردان‌ها" + +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "تنظیم" + +#. module: base +#: model:res.country,name:base.mc +msgid "Monaco" +msgstr "موناکو" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Minutes" +msgstr "دقیقه‌ها" + +#. module: base +#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 +msgid "The modules have been upgraded / installed !" +msgstr "پیمانه برپاسازی شد / ارتقا یافت!" + +#. module: base +#: selection:ir.translation,type:0 +#: view:wizard.module.lang.export:0 +msgid "Help" +msgstr "راهنما" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.view" + +#. module: base +#: wizard_button:server.action.create,step_1,create:0 +msgid "Create" +msgstr "پدیدن" + +#. module: base +#: field:ir.exports,export_fields:0 +msgid "Export ID" +msgstr "شناسه برونش" + +#. module: base +#: model:res.country,name:base.fr +msgid "France" +msgstr "فرانسه" + +#. module: base +#: field:workflow.activity,flow_stop:0 +msgid "Flow Stop" +msgstr "توقف گردش" + +#. module: base +#: model:res.country,name:base.ar +msgid "Argentina" +msgstr "آرژانتین" + +#. module: base +#: model:res.country,name:base.af +msgid "Afghanistan, Islamic State of" +msgstr "افغانستان (ولایت اسلامی)" + +#. module: base +#: code:addons/base/module/wizard/wizard_module_import.py:0 +#, python-format +msgid "Error !" +msgstr "خطا!" + +#. module: base +#: model:res.partner.bank.type.field,name:base.bank_normal_field_contry +msgid "country_id" +msgstr "country_id" + +#. module: base +#: field:ir.cron,interval_type:0 +msgid "Interval Unit" +msgstr "یکای بازه" + +#. module: base +#: field:maintenance.contract,kind:0 +#: field:workflow.activity,kind:0 +msgid "Kind" +msgstr "گونه" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" +msgstr "کتابچه راهنما" + +#. module: base +#: field:res.bank,fax:0 +#: field:res.partner.address,fax:0 +msgid "Fax" +msgstr "فکس" + +#. module: base +#: field:res.lang,thousands_sep:0 +msgid "Thousands Separator" +msgstr "جداساز هزارگانی" + +#. module: base +#: field:res.request,create_date:0 +msgid "Created Date" +msgstr "تاریخ پدیدن" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Line Plot" +msgstr "ترسیم ردیف" + +#. module: base +#: help:ir.actions.server,loop_action:0 +msgid "" +"Select the action that will be executed. Loop action will not be avaliable " +"inside loop." +msgstr "" +"کُنشی را که اجرا خواهد شد برگزینید. کُنش‌های حلقه‌ای در درون یک حلقه موجود " +"نخواهند بود." + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Chinese (TW) / 正體字" +msgstr "چینی (تایوان) / 正體字" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_UP" +msgstr "STOCK_GO_UP" + +#. module: base +#: model:ir.model,name:base.model_res_request +msgid "res.request" +msgstr "res.request" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "pdf" +msgstr "pdf" + +#. module: base +#: field:ir.default,company_id:0 +#: field:ir.property,company_id:0 +#: field:ir.sequence,company_id:0 +#: field:ir.values,company_id:0 +#: view:res.company:0 +#: field:res.currency,company_id:0 +#: field:res.partner,company_id:0 +#: field:res.partner.address,company_id:0 +#: view:res.users:0 +#: field:res.users,company:0 +#: field:res.users,company_id:0 +msgid "Company" +msgstr "شرکت" + +#. module: base +#: model:res.country,name:base.pa +msgid "Panama" +msgstr "پاناما" + +#. module: base +#: selection:ir.report.custom,state:0 +msgid "Unsubscribed" +msgstr "قطع اشتراک شده" + +#. module: base +#: view:ir.attachment:0 +msgid "Preview" +msgstr "پیش‌نمایش" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Skip Step" +msgstr "پرش از مرحله" + +#. module: base +#: model:res.country,name:base.pn +msgid "Pitcairn Island" +msgstr "جزیره پیت کایرن" + +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_event_type-act +#: model:ir.ui.menu,name:base.menu_res_partner_event_type-act +msgid "Active Partner Events" +msgstr "رویدادهای فعال همکار" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_function_form +#: model:ir.ui.menu,name:base.menu_partner_function_form +#: view:res.partner.function:0 +msgid "Contact Functions" +msgstr "کارکردهای تماس" + +#. module: base +#: view:multi_company.default:0 +msgid "Multi Company" +msgstr "چند شرکتی" + +#. module: base +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" +msgstr "روز از سال: %(doy)s" + +#. module: base +#: model:res.country,name:base.nt +msgid "Neutral Zone" +msgstr "منطقه بی‌طرف" + +#. module: base +#: view:ir.model:0 +#: view:ir.model.fields:0 +#: view:ir.property:0 +#: model:ir.ui.menu,name:base.next_id_15 +msgid "Properties" +msgstr "ویژگی‌ها" + +#. module: base +#: view:res.lang:0 +msgid "%A - Full weekday name." +msgstr "%A - نام کامل روزهای هفته." + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" +msgstr "ماه‌ها" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Selection" +msgstr "گزینش" + +#. module: base +#: field:ir.actions.act_window,search_view:0 +msgid "Search View" +msgstr "نمای جستجو" + +#. module: base +#: field:ir.rule,domain_force:0 +msgid "Force Domain" +msgstr "دامنه اجباری" + +#. module: base +#: help:ir.sequence,weight:0 +msgid "If two sequences match, the highest weight will be used." +msgstr "اگر دو دنباله جور باشند، بالاترین وزن بکارگرفته خواهد شد." + +#. module: base +#: model:ir.actions.act_window,name:base.action_attachment +#: view:ir.attachment:0 +#: model:ir.ui.menu,name:base.menu_action_attachment +msgid "Attachments" +msgstr "پیوست‌ها" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Validate" +msgstr "_تایید" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract_wizard +msgid "maintenance.contract.wizard" +msgstr "maintenance.contract.wizard" + +#. module: base +#: field:ir.actions.server,child_ids:0 +msgid "Other Actions" +msgstr "سایر کنش‌ها" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Done" +msgstr "انجام شد" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Validated" +msgstr "تایید شده" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_miss +msgid "Miss" +msgstr "دوشیزه" + +#. module: base +#: field:ir.model.access,perm_write:0 +msgid "Write Access" +msgstr "دستی نوشتن" + +#. module: base +#: field:res.bank,city:0 +#: field:res.partner,city:0 +#: field:res.partner.address,city:0 +#: field:res.partner.bank,city:0 +msgid "City" +msgstr "شهر" + +#. module: base +#: model:res.country,name:base.qa +msgid "Qatar" +msgstr "قطر" + +#. module: base +#: model:res.country,name:base.it +msgid "Italy" +msgstr "ایتالیا" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "<>" +msgstr "<>" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "<=" +msgstr "<=" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Estonian / Eesti keel" +msgstr "استونیایی / Eesti keel" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Portugese / português" +msgstr "پرتغالی / português" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "GPL-3 یا نگارش پس" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "HTML from HTML(Mako)" +msgstr "HTML از HTML(Mako)" + +#. module: base +#: field:workflow.activity,action:0 +msgid "Python Action" +msgstr "کنش پایتونی" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "English (US)" +msgstr "انگلیسی (آمریکا)" + +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "احتمال (۰/۵۰)" + +#. module: base +#: field:ir.report.custom,repeat_header:0 +msgid "Repeat Header" +msgstr "تکرار سرنویس" + +#. module: base +#: view:res.bank:0 +#: field:res.users,address_id:0 +msgid "Address" +msgstr "نشانی" + +#. module: base +#: field:ir.module.module,latest_version:0 +msgid "Installed version" +msgstr "نگارش برپاسازی‌شده" + +#. module: base +#: model:ir.ui.menu,name:base.menu_workflow_root +msgid "Workflow Definitions" +msgstr "تعاریف کارگردش" + +#. module: base +#: model:res.country,name:base.mr +msgid "Mauritania" +msgstr "موریتانی" + +#. module: base +#: view:workflow.activity:0 +#: field:workflow.workitem,act_id:0 +msgid "Activity" +msgstr "فعالیت" + +#. module: base +#: view:res.partner:0 +#: view:res.partner.address:0 +msgid "Postal Address" +msgstr "نشانی پستی" + +#. module: base +#: field:res.company,parent_id:0 +msgid "Parent Company" +msgstr "شرکت مادر" + +#. module: base +#: field:res.currency.rate,rate:0 +msgid "Rate" +msgstr "نرخ" + +#. module: base +#: model:res.country,name:base.cg +msgid "Congo" +msgstr "کونگو" + +#. module: base +#: model:ir.model,name:base.model_ir_exports_line +msgid "ir.exports.line" +msgstr "ir.exports.line" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PAUSE" +msgstr "STOCK_MEDIA_PAUSE" + +#. module: base +#: model:ir.model,name:base.model_res_country_state +msgid "Country state" +msgstr "استان کشور" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_property_form_all +#: model:ir.ui.menu,name:base.menu_ir_property_form_all +msgid "All Properties" +msgstr "تمامی ویژگی‌ها" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_window +#: model:ir.ui.menu,name:base.menu_ir_action_window +msgid "Window Actions" +msgstr "کنش‌های پنجره" + +#. module: base +#: model:res.country,name:base.kn +msgid "Saint Kitts & Nevis Anguilla" +msgstr "سنت کیتس و نویس انگیلا" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HOME" +msgstr "STOCK_HOME" + +#. module: base +#: field:ir.model,name:0 +#: field:ir.model.fields,model:0 +#: field:ir.model.grid,name:0 +#: field:ir.values,model:0 +msgid "Object Name" +msgstr "نام شی" + +#. module: base +#: help:ir.actions.server,srcmodel_id:0 +msgid "" +"Object in which you want to create / write the object. If it is empty then " +"refer to the Object field." +msgstr "" +"شی که درون آن می‌خواهید شی را بنوسید/پدیدآورید. اگر خالی باشد آن‌گاه به فیلد " +"شی ارجاع می‌شود." + +#. module: base +#: selection:ir.module.module,state:0 +#: selection:ir.module.module.dependency,state:0 +msgid "Not Installed" +msgstr "برپاسازی نشده" + +#. module: base +#: field:workflow.activity,out_transitions:0 +msgid "Outgoing Transitions" +msgstr "گذارهای صادره" + +#. module: base +#: field:ir.ui.menu,icon:0 +msgid "Icon" +msgstr "شمایل" + +#. module: base +#: wizard_button:module.lang.import,init,finish:0 +#: wizard_button:module.lang.install,start,end:0 +#: wizard_button:module.module.update,update,open_window:0 +msgid "Ok" +msgstr "باشد" + +#. module: base +#: model:res.country,name:base.mq +msgid "Martinique (French)" +msgstr "مارتینیک (فرانسوی)" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_12 +#: view:res.request:0 +msgid "Requests" +msgstr "درخواست‌ها" + +#. module: base +#: model:res.country,name:base.ye +msgid "Yemen" +msgstr "یمن" + +#. module: base +#: selection:workflow.activity,split_mode:0 +msgid "Or" +msgstr "یا" + +#. module: base +#: model:res.country,name:base.pk +msgid "Pakistan" +msgstr "پاکستان" + +#. module: base +#: model:res.country,name:base.al +msgid "Albania" +msgstr "آلبانی" + +#. module: base +#: model:res.country,name:base.ws +msgid "Samoa" +msgstr "ساموا" + +#. module: base +#: field:ir.ui.menu,child_id:0 +msgid "Child IDs" +msgstr "شناسه‌های فرزند" + +#. module: base +#: code:addons/base/ir/ir_actions.py:0 +#, python-format +msgid "Problem in configuration `Record Id` in Server Action!" +msgstr "ایراد در پیکربندی 'شناسه رکورد' در کُنش سمت کارپذیر!" + +#. module: base +#: code:addons/base/maintenance/maintenance.py:0 +#, python-format +msgid "This error occurs on database %s" +msgstr "این خطا در دادگان %s رخ داده است" + +#. module: base +#: wizard_button:base.module.import,init,import:0 +#: model:ir.actions.wizard,name:base.wizard_base_module_import +#: model:ir.ui.menu,name:base.menu_wizard_module_import +msgid "Import module" +msgstr "درونش پیمانه" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DISCONNECT" +msgstr "STOCK_DISCONNECT" + +#. module: base +#: model:res.country,name:base.la +msgid "Laos" +msgstr "لائوس" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Email" +msgstr "ایمیل" + +#. module: base +#: model:ir.actions.act_window,name:base.action_wizard_update_translations +#: model:ir.ui.menu,name:base.menu_wizard_update_translations +msgid "Resynchronise Terms" +msgstr "بازهمسان‌سازی واژگان" + +#. module: base +#: model:res.country,name:base.tg +msgid "Togo" +msgstr "توگو" + +#. module: base +#: selection:workflow.activity,kind:0 +msgid "Stop All" +msgstr "توقف همه" + +#. module: base +#: view:res.lang:0 +msgid "3. %x ,%X ==> 12/05/08, 18:25:20" +msgstr "3. %x ,%X ==> 12/05/08, 18:25:20" + +#. module: base +#: selection:ir.model.fields,on_delete:0 +msgid "Cascade" +msgstr "چینش" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Field %d should be a figure" +msgstr "فیلد %d باید شمارگانی باشد" + +#. module: base +#: model:ir.actions.act_window,name:base.action_inventory_form +#: model:ir.ui.menu,name:base.menu_action_inventory_form +msgid "Default Company per Object" +msgstr "شرکت پیش‌فرض برای هر شی" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" +msgstr "گام پیکربندی پسین" + +#. module: base +#: field:res.groups,comment:0 +msgid "Comment" +msgstr "توضیح" + +#. module: base +#: model:res.country,name:base.ro +msgid "Romania" +msgstr "رومانی" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PREFERENCES" +msgstr "STOCK_PREFERENCES" + +#. module: base +#: field:res.country.state,name:0 +msgid "State Name" +msgstr "نام استان" + +#. module: base +#: field:workflow.activity,join_mode:0 +msgid "Join Mode" +msgstr "حالت پیوستن" + +#. module: base +#: field:res.users,context_tz:0 +msgid "Timezone" +msgstr "منطقه‌ زمانی" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_LAST" +msgstr "STOCK_GOTO_LAST" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_report_xml +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.report.xml" +msgstr "ir.actions.report.xml" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "" +"To improve some terms of the official translations of OpenERP, you should " +"modify the terms directly on the launchpad interface. If you made lots of " +"translations for your own module, you can also publish all your translation " +"at once." +msgstr "" +"برای پیشرفت برخی از واژگان برگردان رسمی اپن ای‌آر‌پی شما باید یک‌راست واژگان " +"را بوسیله رابط launchpad تغییر دهید. اگر شما مقدار زیادی برگردانی برای " +"پیمانه خود انجام داده باشید، می‌توانید تمامی برگردان‌ها را یکباره انتشار " +"دهید." + +#. module: base +#: wizard_button:module.lang.install,init,start:0 +msgid "Start installation" +msgstr "آغاز برپاسازی" + +#. module: base +#: help:res.lang,code:0 +msgid "This field is used to set/get locales for user" +msgstr "این فیلد برای تنظیم/دریافت زبان‌های کاربر بکارگرفته شده" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_2 +msgid "OpenERP Partners" +msgstr "همکاران تجاری اپن ای‌آر‌پی" + +#. module: base +#: model:res.country,name:base.by +msgid "Belarus" +msgstr "روسیه‌ سفید" + +#. module: base +#: field:ir.actions.act_window,name:0 +#: field:ir.actions.act_window_close,name:0 +#: field:ir.actions.actions,name:0 +#: field:ir.actions.server,name:0 +#: field:ir.actions.url,name:0 +msgid "Action Name" +msgstr "نام کنش" + +#. module: base +#: selection:res.request,priority:0 +msgid "Normal" +msgstr "عادی" + +#. module: base +#: field:res.bank,street2:0 +#: field:res.partner.address,street2:0 +msgid "Street2" +msgstr "خیابان۲" + +#. module: base +#: field:ir.cron,user_id:0 +#: field:ir.ui.view.custom,user_id:0 +#: field:ir.values,user_id:0 +#: field:res.partner.event,user_id:0 +#: view:res.users:0 +msgid "User" +msgstr "کاربر" + +#. module: base +#: model:res.country,name:base.pr +msgid "Puerto Rico" +msgstr "پورتو ریکو" + +#. module: base +#: code:addons/base/res/res_currency.py:0 +#, python-format +msgid "" +"No rate found \n" +"' \\n 'for the currency: %s \n" +"' \\n 'at the date: %s" +msgstr "" +"هیچ نرخی پیدا نشد \n" +"' \\n 'برای ارز: %s \n" +"' \\n 'در تاریخ: %s" + +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "باز کردن پنجره‌" + +#. module: base +#: field:ir.actions.act_window,filter:0 +#: field:ir.module.repository,filter:0 +msgid "Filter" +msgstr "پالایه" + +#. module: base +#: model:res.country,name:base.ch +msgid "Switzerland" +msgstr "سوئیس" + +#. module: base +#: model:res.country,name:base.gd +msgid "Grenada" +msgstr "گرانادا" + +#. module: base +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "پیکربندی رهاساز" + +#. module: base +#: selection:server.action.create,init,type:0 +msgid "Open Report" +msgstr "بازکردن گزارش" + +#. module: base +#: field:res.currency,rounding:0 +msgid "Rounding factor" +msgstr "ضریب گردسازی" + +#. module: base +#: model:ir.model,name:base.model_res_company +msgid "res.company" +msgstr "res.company" + +#. module: base +#: wizard_view:module.upgrade,end:0 +#: wizard_view:module.upgrade,start:0 +msgid "System upgrade done" +msgstr "ارتقا سامانه انجام گرفت" + +#. module: base +#: model:res.country,name:base.so +msgid "Somalia" +msgstr "سومالی" + +#. module: base +#: model:ir.actions.act_window,name:base.action_config_simple_view_form +msgid "Configure Simple View" +msgstr "پیکربندی نمای ساده" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_13 +msgid "Important customers" +msgstr "مشتریان مهم" + +#. module: base +#: field:res.request,act_to:0 +#: field:res.request.history,act_to:0 +msgid "To" +msgstr "به" + +#. module: base +#: field:ir.cron,args:0 +msgid "Arguments" +msgstr "نشانوندها" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "sxw" +msgstr "sxw" + +#. module: base +#: field:ir.actions.report.xml,auto:0 +msgid "Automatic XSL:RML" +msgstr "XSL:RML خودکار" + +#. module: base +#: view:ir.rule:0 +msgid "Manual domain setup" +msgstr "سوارسازی دستی دامنه" + +#. module: base +#: field:res.partner,customer:0 +#: model:res.partner.category,name:base.res_partner_category_0 +#: selection:res.partner.event,partner_type:0 +msgid "Customer" +msgstr "مشتری" + +#. module: base +#: field:ir.actions.report.custom,name:0 +#: field:ir.report.custom,name:0 +msgid "Report Name" +msgstr "نام گزارش" + +#. module: base +#: field:ir.module.module,shortdesc:0 +msgid "Short Description" +msgstr "شرح کوتاه" + +#. module: base +#: field:res.partner.event,partner_type:0 +msgid "Partner Relation" +msgstr "رابطه همکار" + +#. module: base +#: field:ir.actions.act_window,context:0 +msgid "Context Value" +msgstr "مقدار زمینه" + +#. module: base +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" +msgstr "ساعت ۰۰->۲۴: %(h24)s" + +#. module: base +#: help:multi_company.default,field_id:0 +msgid "Select field property" +msgstr "ویژگی فیلد را برگزینید" + +#. module: base +#: field:res.request.history,date_sent:0 +msgid "Date sent" +msgstr "تاریخ ارسال" + +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "ماه: %(month)s" + +#. module: base +#: field:ir.actions.act_window.view,sequence:0 +#: field:ir.actions.server,sequence:0 +#: field:ir.actions.todo,sequence:0 +#: field:ir.module.repository,sequence:0 +#: field:ir.report.custom.fields,sequence:0 +#: view:ir.sequence:0 +#: field:ir.ui.menu,sequence:0 +#: field:ir.ui.view_sc,sequence:0 +#: field:res.partner.bank,sequence:0 +#: field:wizard.ir.model.menu.create.line,sequence:0 +msgid "Sequence" +msgstr "دنباله" + +#. module: base +#: model:res.country,name:base.tn +msgid "Tunisia" +msgstr "تونس" + +#. module: base +#: field:ir.actions.wizard,name:0 +msgid "Wizard Info" +msgstr "آگهگان تردست" + +#. module: base +#: help:ir.cron,numbercall:0 +msgid "" +"Number of time the function is called,\n" +"a negative number indicates that the function will always be called" +msgstr "" +"تعداد دفعاتی که تابع فراخوانی شده، \n" +"یک شماره منفی نشانگر این است که تابع همیشه فراخوانی خواهد شد" + +#. module: base +#: view:ir.module.module:0 +msgid "Cancel Install" +msgstr "لغو برپاسازی" + +#. module: base +#: view:res.lang:0 +msgid "Legends for Date and Time Formats" +msgstr "فهرست اختصارات برای قالب تاریخ و ساعت" + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Monthly" +msgstr "ماهیانه" + +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_som-act +#: model:ir.ui.menu,name:base.menu_res_partner_som-act +msgid "States of mind" +msgstr "وضعیت فکری" + +#. module: base +#: model:ir.actions.act_window,name:base.action_country_state +#: model:ir.ui.menu,name:base.menu_country_state_partner +msgid "Fed. States" +msgstr "ایالت‌های فدرال" + +#. module: base +#: view:ir.model:0 +#: view:res.groups:0 +msgid "Access Rules" +msgstr "قواعد دسترسی" + +#. module: base +#: field:ir.default,ref_table:0 +msgid "Table Ref." +msgstr "مرجع جدول" + +#. module: base +#: field:res.roles,parent_id:0 +msgid "Parent" +msgstr "مادر" + +#. module: base +#: view:multi_company.default:0 +msgid "Returning" +msgstr "بازگشتی" + +#. module: base +#: field:ir.actions.act_window,res_model:0 +#: field:ir.actions.report.custom,model:0 +#: field:ir.actions.report.xml,model:0 +#: field:ir.actions.server,model_id:0 +#: field:ir.actions.wizard,model:0 +#: field:ir.cron,model:0 +#: field:ir.default,field_tbl:0 +#: view:ir.model:0 +#: field:ir.model,model:0 +#: field:ir.model.access,model_id:0 +#: field:ir.model.data,model:0 +#: field:ir.model.grid,model:0 +#: field:ir.report.custom,model_id:0 +#: selection:ir.translation,type:0 +#: field:ir.ui.view,model:0 +#: field:ir.values,model_id:0 +#: field:res.request.link,object:0 +#: field:wizard.ir.model.menu.create,model_id:0 +#: field:workflow.triggers,model:0 +msgid "Object" +msgstr "شی" + +#. module: base +#: model:ir.model,name:base.model_ir_default +msgid "ir.default" +msgstr "ir.default" + +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "دقیقه: %(min)s" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_100" +msgstr "STOCK_ZOOM_100" + +#. module: base +#: view:res.lang:0 +msgid "%w - Weekday as a decimal number [0(Sunday),6]." +msgstr "%w - روز هفته با یک شماره بین [۰(یکشنبه)، ۶]." + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export translation file" +msgstr "برونش پرونده برگردان" + +#. module: base +#: field:ir.ui.view_sc,user_id:0 +msgid "User Ref." +msgstr "مرجع کاربر" + +#. module: base +#: model:ir.ui.menu,name:base.menu_base_config +#: model:ir.ui.menu,name:base.menu_config +#: view:res.company:0 +msgid "Configuration" +msgstr "پیکربندی" + +#. module: base +#: field:ir.actions.server,expression:0 +msgid "Loop Expression" +msgstr "عبارت حلقه" + +#. module: base +#: selection:res.partner.event,partner_type:0 +msgid "Retailer" +msgstr "خرده‌فروش" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "جدولی" + +#. module: base +#: field:ir.actions.todo,start_on:0 +msgid "Start On" +msgstr "آغاز از" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_5 +msgid "Gold Partner" +msgstr "همکار طلایی" + +#. module: base +#: model:ir.model,name:base.model_res_partner +#: field:res.company,partner_id:0 +#: field:res.partner.address,partner_id:0 +#: field:res.partner.bank,partner_id:0 +#: field:res.partner.event,partner_id:0 +#: selection:res.partner.title,domain:0 +#: view:res.users:0 +msgid "Partner" +msgstr "همکار" + +#. module: base +#: model:res.country,name:base.tr +msgid "Turkey" +msgstr "ترکیه" + +#. module: base +#: model:res.country,name:base.fk +msgid "Falkland Islands" +msgstr "جزایر فالکلند" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" +msgstr "odt" + +#. module: base +#: field:ir.actions.report.custom,type:0 +#: field:ir.actions.report.xml,type:0 +#: field:ir.report.custom,type:0 +msgid "Report Type" +msgstr "نوع گزارش" + +#. module: base +#: field:ir.actions.todo,state:0 +#: field:ir.module.module,state:0 +#: field:ir.module.module.dependency,state:0 +#: field:ir.report.custom,state:0 +#: field:maintenance.contract,state:0 +#: field:res.bank,state:0 +#: view:res.country.state:0 +#: field:res.partner.bank,state_id:0 +#: field:res.request,state:0 +#: field:workflow.instance,state:0 +#: field:workflow.workitem,state:0 +msgid "State" +msgstr "استان" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "Other proprietary" +msgstr "سایر انحصاری" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-administration" +msgstr "terp-administration" + +#. module: base +#: model:ir.actions.act_window,name:base.action_translation +#: model:ir.ui.menu,name:base.menu_action_translation +msgid "All terms" +msgstr "تمام واژگان" + +#. module: base +#: model:res.country,name:base.no +msgid "Norway" +msgstr "نروژ" + +#. module: base +#: view:res.lang:0 +msgid "4. %b, %B ==> Dec, December" +msgstr "4. %b, %B ==> Dec, December" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_lang_install +#: model:ir.ui.menu,name:base.menu_wizard_lang_install +msgid "Load an Official Translation" +msgstr "بارگذاری یک برگردان رسمی" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_10 +msgid "Open Source Service Company" +msgstr "شرکت خدماتی بازمتن" + +#. module: base +#: selection:res.request,state:0 +msgid "waiting" +msgstr "منتظر" + +#. module: base +#: field:ir.attachment,link:0 +msgid "Link" +msgstr "پیوند" + +#. module: base +#: model:ir.model,name:base.model_workflow_triggers +msgid "workflow.triggers" +msgstr "workflow.triggers" + +#. module: base +#: field:ir.report.custom.fields,report_id:0 +msgid "Report Ref" +msgstr "مرجع گزارش" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-hr" +msgstr "terp-hr" + +#. module: base +#: help:ir.actions.wizard,multi:0 +msgid "" +"If set to true, the wizard will not be displayed on the right toolbar of a " +"form view." +msgstr "" +"اگر مقدار به درست تنظیم شده باشد، تَردست در سمت راست یک نمای فرمی نمایش داده " +"نخواهد شد." + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DND" +msgstr "STOCK_DND" + +#. module: base +#: model:res.country,name:base.hm +msgid "Heard and McDonald Islands" +msgstr "جزایر هرد و مک‌دانلد" + +#. module: base +#: field:ir.actions.act_window,view_id:0 +msgid "View Ref." +msgstr "مرجع نما" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Dutch (Belgium) / Nederlands (Belgïe)" +msgstr "آلمانی (بلژیک) / Nederlands (Belgïe)" + +#. module: base +#: model:ir.actions.act_window,name:base.open_repository_tree +#: view:ir.module.repository:0 +#: model:ir.ui.menu,name:base.menu_module_repository_tree +msgid "Repository list" +msgstr "فهرست مخزن" + +#. module: base +#: field:res.company,rml_header1:0 +msgid "Report Header" +msgstr "سرنویس گزارش" + +#. module: base +#: field:ir.actions.act_window,type:0 +#: field:ir.actions.act_window_close,type:0 +#: field:ir.actions.actions,type:0 +#: field:ir.actions.server,state:0 +#: field:ir.actions.server,type:0 +#: field:ir.actions.url,type:0 +#: field:ir.actions.wizard,type:0 +msgid "Action Type" +msgstr "نوع واکنش" + +#. module: base +#: field:res.partner.bank.type,field_ids:0 +msgid "Type fields" +msgstr "فیلدهای نوع" + +#. module: base +#: field:ir.module.module,category_id:0 +msgid "Category" +msgstr "دسته‌بندی" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FLOPPY" +msgstr "STOCK_FLOPPY" + +#. module: base +#: field:ir.actions.server,sms:0 +#: selection:ir.actions.server,state:0 +msgid "SMS" +msgstr "پیامک" + +#. module: base +#: model:res.country,name:base.cr +msgid "Costa Rica" +msgstr "کاستاریکا" + +#. module: base +#: code:addons/base/maintenance/maintenance.py:0 +#, python-format +msgid "Your can't submit bug reports due to uncovered modules: %s" +msgstr "بنابر پیمانه‌های پوشش داده نشده، نمی‌توانید این باگ را بفرستید: %s" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_other_form +msgid "Other Partners" +msgstr "همکاران دیگر" + +#. module: base +#: view:ir.model:0 +#: view:res.request:0 +msgid "Status" +msgstr "وضعیت" + +#. module: base +#: model:ir.actions.act_window,name:base.action_currency_form +#: model:ir.ui.menu,name:base.menu_action_currency_form +#: view:res.currency:0 +msgid "Currencies" +msgstr "ارزها" + +#. module: base +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" +msgstr "ساعت ۰۰->۱۲: %(h12)s" + +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "تیک فیلد فعال را برای مخفی شده تماس بردارد." + +#. module: base +#: model:res.country,name:base.dk +msgid "Denmark" +msgstr "دانمارک" + +#. module: base +#: field:res.country,code:0 +msgid "Country Code" +msgstr "کد کشور" + +#. module: base +#: model:ir.model,name:base.model_workflow_instance +msgid "workflow.instance" +msgstr "workflow.instance" + +#. module: base +#: view:res.lang:0 +msgid "10. %S ==> 20" +msgstr "10. %S ==> 20" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_madam +msgid "Madam" +msgstr "خانم" + +#. module: base +#: model:res.country,name:base.ee +msgid "Estonia" +msgstr "استونی" + +#. module: base +#: model:res.country,name:base.nl +msgid "Netherlands" +msgstr "هلند" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_4 +msgid "Low Level Objects" +msgstr "اشیای سطح پایین" + +#. module: base +#: model:ir.model,name:base.model_ir_report_custom +msgid "ir.report.custom" +msgstr "ir.report.custom" + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Purchase Offer" +msgstr "پیشنهاد خرید" + +#. module: base +#: model:ir.model,name:base.model_ir_values +msgid "ir.values" +msgstr "ir.values" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_FIT" +msgstr "STOCK_ZOOM_FIT" + +#. module: base +#: model:res.country,name:base.cd +msgid "Congo, The Democratic Republic of the" +msgstr "کنگو، جمهوری دموکراتیک" + +#. module: base +#: view:res.request:0 +#: field:res.request,body:0 +#: field:res.request.history,req_id:0 +msgid "Request" +msgstr "درخواست" + +#. module: base +#: model:res.country,name:base.jp +msgid "Japan" +msgstr "ژاپن" + +#. module: base +#: field:ir.cron,numbercall:0 +msgid "Number of Calls" +msgstr "تعداد تماس‌ها" + +#. module: base +#: wizard_view:module.lang.install,start:0 +msgid "Language file loaded." +msgstr "پرونده زبان بارگزاری شد." + +#. module: base +#: wizard_view:module.upgrade,next:0 +#: wizard_field:module.upgrade,next,module_info:0 +msgid "Modules to update" +msgstr "پیمانه‌ها برای بروزرسانی" + +#. module: base +#: model:ir.actions.act_window,name:base.action2 +msgid "Company Architecture" +msgstr "ساختمان شرکت" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_BOTTOM" +msgstr "STOCK_GOTO_BOTTOM" + +#. module: base +#: help:ir.actions.server,sequence:0 +msgid "" +"Important when you deal with multiple actions, the execution order will be " +"decided based on this, low number is higher priority." +msgstr "" +"مهم برای زمانی که با چندین کُنش سروکار دارید، ترتیب اجرا بر اساس این تصمیم " +"گیری خواهد شد. شماره پایین نشانگر اولویت بالاتر است." + +#. module: base +#: field:ir.actions.report.xml,header:0 +msgid "Add RML header" +msgstr "افزودن سرنویس RML" + +#. module: base +#: model:res.country,name:base.gr +msgid "Greece" +msgstr "یونان" + +#. module: base +#: field:res.request,trigger_date:0 +msgid "Trigger Date" +msgstr "تاریخ رهاساز" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Croatian / hrvatski jezik" +msgstr "کرواسی / hrvatski jezik" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_FORWARD" +msgstr "STOCK_GO_FORWARD" + +#. module: base +#: help:ir.actions.server,code:0 +msgid "Python code to be executed" +msgstr "کد پایتون برای اجرا" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "غیر قابل برپاسازی" + +#. module: base +#: view:res.partner.category:0 +msgid "Partner Category" +msgstr "دسته‌بندی همکار" + +#. module: base +#: view:ir.actions.server:0 +#: selection:ir.actions.server,state:0 +msgid "Trigger" +msgstr "رهاساز" + +#. module: base +#: field:ir.model.fields,translate:0 +msgid "Translate" +msgstr "برگردانی" + +#. module: base +#: view:ir.actions.server:0 +msgid "" +"Access all the fields related to the current object using expression in " +"double brackets, i.e. [[ object.partner_id.name ]]" +msgstr "" +"دسترسی به تمامی فیلدهایی که با شی کنونی از طریق عبارات بین دو براکت، مرتبط " +"هستند. برای نمونه [[ object.partner_id.name ]]" + +#. module: base +#: field:res.request.history,body:0 +msgid "Body" +msgstr "بدنه" + +#. module: base +#: wizard_button:res.partner.spam_send,init,send:0 +msgid "Send Email" +msgstr "ارسال ایمیل" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SELECT_FONT" +msgstr "STOCK_SELECT_FONT" + +#. module: base +#: field:res.users,menu_id:0 +msgid "Menu Action" +msgstr "منوی کنش" + +#. module: base +#: selection:wizard.module.lang.export,state:0 +msgid "choose" +msgstr "گزینش" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Graph" +msgstr "نمودار" + +#. module: base +#: field:res.partner,child_ids:0 +#: field:res.request,ref_partner_id:0 +msgid "Partner Ref." +msgstr "مرجع همکار" + +#. module: base +#: field:ir.report.custom,print_format:0 +msgid "Print format" +msgstr "قالب چاپ" + +#. module: base +#: model:ir.ui.menu,name:base.menu_low_workflow +msgid "Workflow Items" +msgstr "آیتم‌های کارگردش" + +#. module: base +#: field:res.request,ref_doc2:0 +msgid "Document Ref 2" +msgstr "مرجع سند ۲" + +#. module: base +#: field:res.request,ref_doc1:0 +msgid "Document Ref 1" +msgstr "مرجع سند ۱" + +#. module: base +#: model:res.country,name:base.ga +msgid "Gabon" +msgstr "گابون" + +#. module: base +#: model:ir.model,name:base.model_ir_model_data +msgid "ir.model.data" +msgstr "ir.model.data" + +#. module: base +#: view:ir.model:0 +#: view:res.groups:0 +msgid "Access Rights" +msgstr "حقوق دسترسی" + +#. module: base +#: model:res.country,name:base.gl +msgid "Greenland" +msgstr "گروئنلند" + +#. 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 وجود دارد" + +#. module: base +#: field:res.partner.bank,acc_number:0 +msgid "Account Number" +msgstr "شماره حساب" + +#. module: base +#: view:res.lang:0 +msgid "1. %c ==> Fri Dec 5 18:25:20 2008" +msgstr "1. %c ==> Fri Dec 5 18:25:20 2008" + +#. module: base +#: help:ir.ui.menu,groups_id:0 +msgid "" +"If you have groups, the visibility of this menu will be based on these " +"groups. If this field is empty, Open ERP will compute visibility based on " +"the related object's read access." +msgstr "" +"اگر شما گروه‌هایی دارید، نمایش این منو بر اساس این گروه‌ها خواهد بود. اگر " +"این فیلد خالی است، اپن ای‌آر‌پی نمایش را بر اساس دسترسی خواندن اشیای مرتبط " +"محاسبه خواهد کرد." + +#. module: base +#: model:res.country,name:base.nc +msgid "New Caledonia (French)" +msgstr "کالدونیای نو (فرانسه)" + +#. module: base +#: field:res.partner.function,name:0 +msgid "Function Name" +msgstr "نام کارکرد" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Cancel" +msgstr "_لغو" + +#. module: base +#: model:res.country,name:base.cy +msgid "Cyprus" +msgstr "قبرس" + +#. module: base +#: field:ir.actions.server,subject:0 +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:res.request,name:0 +msgid "Subject" +msgstr "موضوع" + +#. module: base +#: field:res.request,act_from:0 +#: field:res.request.history,act_from:0 +msgid "From" +msgstr "از" + +#. module: base +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" +msgstr "پس" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-report" +msgstr "terp-report" + +#. module: base +#: field:ir.actions.report.xml,report_rml_content:0 +#: field:ir.actions.report.xml,report_rml_content_data:0 +msgid "RML content" +msgstr "محتوای RML" + +#. module: base +#: view:workflow.activity:0 +msgid "Incoming transitions" +msgstr "گذارهای وارده" + +#. module: base +#: model:res.country,name:base.cn +msgid "China" +msgstr "چین" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "Password empty !" +msgstr "گذرواژه خالی!" + +#. module: base +#: model:res.country,name:base.eh +msgid "Western Sahara" +msgstr "صحرای غربی" + +#. module: base +#: model:ir.model,name:base.model_workflow +msgid "workflow" +msgstr "کارگردش" + +#. module: base +#: model:res.country,name:base.id +msgid "Indonesia" +msgstr "اندونزی" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" +msgstr "یکباره" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Write Object" +msgstr "نوشتن شی" + +#. module: base +#: model:res.country,name:base.bg +msgid "Bulgaria" +msgstr "بلغارستان" + +#. module: base +#: model:res.country,name:base.ao +msgid "Angola" +msgstr "آنگولا" + +#. module: base +#: model:res.country,name:base.tf +msgid "French Southern Territories" +msgstr "مستعمره‌های جنوبی فرانسه" + +#. module: base +#: view:ir.actions.server:0 +msgid "" +"Only one client action will be execute, last " +"clinent action will be consider in case of multiples clients actions" +msgstr "" +"تنها یک کُنش کارخواه اجرا خواهد شد،واپسین کنش کارخواه در صورتی که چندین کنش " +"کارخواه موجود باشد به حساب خواهد آمد" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HELP" +msgstr "STOCK_HELP" + +#. module: base +#: model:ir.model,name:base.model_res_currency +#: view:res.company:0 +#: field:res.company,currency_id:0 +#: field:res.company,currency_ids:0 +#: view:res.currency:0 +#: field:res.currency,name:0 +#: field:res.currency.rate,currency_id:0 +msgid "Currency" +msgstr "ارز" + +#. module: base +#: field:res.partner.canal,name:0 +msgid "Channel Name" +msgstr "نام کانال" + +#. module: base +#: view:res.lang:0 +msgid "5. %y, %Y ==> 08, 2008" +msgstr "5. %y, %Y ==> 08, 2008" + +#. module: base +#: field:ir.model.fields,model_id:0 +#: field:ir.values,res_id:0 +msgid "Object ID" +msgstr "شناسه شی" + +#. module: base +#: selection:ir.report.custom,print_orientation:0 +msgid "Landscape" +msgstr "منظره‌ای" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_form +#: model:ir.ui.menu,name:base.menu_base_config_partner +#: model:ir.ui.menu,name:base.menu_base_partner +#: model:ir.ui.menu,name:base.menu_partner_form +#: view:res.partner:0 +#: view:res.partner.category:0 +#: field:res.partner.category,partner_ids:0 +msgid "Partners" +msgstr "همکاران" + +#. module: base +#: model:ir.ui.menu,name:base.menu_administration +msgid "Administration" +msgstr "راهبری" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "child_of" + +#. module: base +#: view:res.users:0 +#: field:res.users,company_ids:0 +msgid "Accepted Companies" +msgstr "شرکت‌های پذیرفته" + +#. module: base +#: field:ir.report.custom.fields,operation:0 +#: field:ir.ui.menu,icon_pict:0 +#: field:wizard.module.lang.export,state:0 +msgid "unknown" +msgstr "ناشناخته" + +#. module: base +#: field:ir.ui.view_sc,res_id:0 +msgid "Resource Ref." +msgstr "مرجع منبع" + +#. module: base +#: model:res.country,name:base.ki +msgid "Kiribati" +msgstr "کیریباتی" + +#. module: base +#: model:res.country,name:base.iq +msgid "Iraq" +msgstr "عراق" + +#. module: base +#: view:ir.actions.server:0 +msgid "Action to Launch" +msgstr "کنش برای اجرا" + +#. module: base +#: wizard_view:base.module.import,import:0 +#: wizard_view:base.module.import,init:0 +msgid "Module import" +msgstr "درونش پیمانه" + +#. module: base +#: model:ir.model,name:base.model_ir_sequence_type +msgid "ir.sequence.type" +msgstr "ir.sequence.type" + +#. module: base +#: selection:wizard.module.lang.export,format:0 +msgid "CSV File" +msgstr "پرونده CSV" + +#. module: base +#: selection:ir.model,state:0 +#: selection:ir.model.grid,state:0 +msgid "Base Object" +msgstr "شی پایه" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-crm" +msgstr "terp-crm" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_STRIKETHROUGH" +msgstr "STOCK_STRIKETHROUGH" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +msgid "(year)=" +msgstr "(سال)=" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Dependencies :" +msgstr "وابستگی‌ها:" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-partner" +msgstr "terp-partner" + +#. module: base +#: field:ir.model.fields,field_description:0 +msgid "Field Label" +msgstr "برچسب فیلد" + +#. module: base +#: model:res.country,name:base.dj +msgid "Djibouti" +msgstr "جیبوتی" + +#. module: base +#: field:ir.translation,value:0 +msgid "Translation Value" +msgstr "مقدار برگردان" + +#. module: base +#: model:res.country,name:base.ag +msgid "Antigua and Barbuda" +msgstr "اَنتیگا و باربودا" + +#. module: base +#: field:ir.actions.server,condition:0 +#: field:ir.report.custom.fields,fc0_condition:0 +#: field:ir.sequence,condition:0 +#: view:multi_company.default:0 +#: field:workflow.transition,condition:0 +msgid "Condition" +msgstr "شرط" + +#. module: base +#: model:res.country,name:base.zr +msgid "Zaire" +msgstr "زئیر" + +#. module: base +#: field:ir.attachment,res_id:0 +#: field:ir.model.data,res_id:0 +#: field:ir.translation,res_id:0 +#: field:workflow.instance,res_id:0 +#: field:workflow.triggers,res_id:0 +msgid "Resource ID" +msgstr "شناسه منبع" + +#. module: base +#: view:ir.cron:0 +#: field:ir.model,info:0 +#: field:ir.model.grid,info:0 +#: view:maintenance.contract:0 +msgid "Information" +msgstr "آگهگان" + +#. module: base +#: 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 "" +"تمامی بسته‌های برگردان‌های رسمی اپن ای‌آر‌پی توسط launchpad مدیریت می‌شوند. " +"از این رابط برای همسان‌سازی تمامی همیاری‌های برگردانی،‌ بکارگرفته می‌شوند." + +#. module: base +#: field:ir.actions.report.xml,report_rml:0 +msgid "RML path" +msgstr "مسیر RML" + +#. module: base +#: field:ir.actions.configuration.wizard,item_id:0 +msgid "Next Configuration Wizard" +msgstr "تردست پیکربندی پسین" + +#. module: base +#: selection:ir.actions.todo,type:0 +#: selection:res.partner.address,type:0 +msgid "Other" +msgstr "سایر" + +#. module: base +#: view:res.request:0 +msgid "Reply" +msgstr "پاسخ" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "ترکی / Türkçe" + +#. module: base +#: model:ir.actions.act_window,name:base.action_translation_untrans +#: model:ir.ui.menu,name:base.menu_action_translation_untrans +msgid "Untranslated terms" +msgstr "واژگان برگردانی‌نشده" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "Import New Language" +msgstr "درونش زبان نو" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_activity_form +#: model:ir.ui.menu,name:base.menu_workflow_activity +#: view:workflow:0 +#: field:workflow,activities:0 +msgid "Activities" +msgstr "فعالیت‌ها" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" +msgstr "نوسازی خودکار" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +#: selection:ir.rule,operator:0 +msgid "=" +msgstr "=" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Second field should be figures" +msgstr "فیلد دوم باید نمایش‌دهنده باشد" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_grid_security +#: model:ir.ui.menu,name:base.menu_ir_access_grid +msgid "Access Controls Grid" +msgstr "توری حقوق دسترسی" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_actions +#: model:ir.ui.menu,name:base.menu_custom_action +#: model:ir.ui.menu,name:base.menu_ir_sequence_actions +#: model:ir.ui.menu,name:base.next_id_6 +msgid "Actions" +msgstr "کنش‌ها" + +#. module: base +#: selection:res.request,priority:0 +msgid "High" +msgstr "بالا" + +#. module: base +#: field:ir.exports.line,export_id:0 +msgid "Export" +msgstr "برونش" + +#. module: base +#: help:res.bank,bic:0 +msgid "Bank Identifier Code" +msgstr "کد شناسه بانک" + +#. module: base +#: model:res.country,name:base.tm +msgid "Turkmenistan" +msgstr "ترکمنستان" + +#. module: base +#: model:res.country,name:base.pm +msgid "Saint Pierre and Miquelon" +msgstr "سنت پیر و میکلون" + +#. module: base +#: help:ir.actions.report.xml,header:0 +msgid "Add or not the coporate RML header" +msgstr "Add or not the coporate RML header" + +#. module: base +#: field:res.partner.event,document:0 +msgid "Document" +msgstr "سند" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REFRESH" +msgstr "STOCK_REFRESH" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_STOP" +msgstr "STOCK_STOP" + +#. module: base +#: view:wizard.module.update_translations:0 +msgid "Update" +msgstr "بروزرسانی" + +#. module: base +#: model:ir.actions.report.xml,name:base.ir_module_reference_print +msgid "Technical guide" +msgstr "راهنمای فنی" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CONVERT" +msgstr "STOCK_CONVERT" + +#. module: base +#: model:res.country,name:base.tz +msgid "Tanzania" +msgstr "تانزانیا، جمهوری متحد" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Danish / Dansk" +msgstr "دانمارکی / Dansk" + +#. module: base +#: model:res.country,name:base.cx +msgid "Christmas Island" +msgstr "جزیره‌ی کریسمس" + +#. module: base +#: view:ir.actions.server:0 +msgid "Other Actions Configuration" +msgstr "پیکربندی سایر کنش‌ها" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_EXECUTE" +msgstr "STOCK_EXECUTE" + +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_canal-act +#: model:ir.model,name:base.model_res_partner_canal +#: model:ir.ui.menu,name:base.menu_res_partner_canal-act +msgid "Channels" +msgstr "کانال‌ها" + +#. module: base +#: view:ir.module.module:0 +msgid "Schedule for Installation" +msgstr "زمان‌بندی برای برپاسازی" + +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "جستجوی پیشرفته" + +#. module: base +#: model:ir.model,name:base.model_res_partner_bank +#: view:res.partner.bank:0 +msgid "Bank Accounts" +msgstr "حساب‌های بانکی" + +#. module: base +#: view:res.request:0 +msgid "Send" +msgstr "فرستادن" + +#. module: base +#: field:ir.translation,src:0 +msgid "Source" +msgstr "مبدا" + +#. module: base +#: help:res.partner.address,partner_id:0 +msgid "Keep empty for a private address, not related to partner." +msgstr "" +"برای یک نشانی خصوصی که به همکار ارتباطی ندارد، اینجا را خالی بگذارید." + +#. module: base +#: model:res.country,name:base.vu +msgid "Vanuatu" +msgstr "وانواتو" + +#. module: base +#: view:res.company:0 +msgid "Internal Header/Footer" +msgstr "سرنویس/پانویس داخلی" + +#. module: base +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#, python-format +msgid "" +"Save this document to a .tgz file. This archive containt UTF-8 %s files and " +"may be uploaded to launchpad." +msgstr "" +"ذخیره سند به یک پرونده tgz. این بایگانی دارای %s پرونده‌هایUTF-8 است و ممکن " +"است به launchpad بارگذاری شود." + +#. module: base +#: wizard_button:module.upgrade,end,config:0 +#: wizard_button:module.upgrade,start,config:0 +msgid "Start configuration" +msgstr "آغاز پیکربندی" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Catalan / Català" +msgstr "کاتالان / Català" + +#. module: base +#: model:res.country,name:base.do +msgid "Dominican Republic" +msgstr "جمهوری دومنیکن" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_COLOR_PICKER" +msgstr "STOCK_COLOR_PICKER" + +#. module: base +#: model:res.country,name:base.sa +msgid "Saudi Arabia" +msgstr "عربستان سعودی" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Bar charts need at least two fields" +msgstr "نمودارهای میله‌ای دست‌کم دو فیلد لازم دارند" + +#. module: base +#: help:res.partner,supplier:0 +msgid "" +"Check this box if the partner is a supplier. If it's not checked, purchase " +"people will not see it when encoding a purchase order." +msgstr "" +"این جا را در صورتی که همکار تجاری یک تامین‌کننده است تیک بزنید. اگر تیک زده " +"نشده باشد، اشخاص خرید در صورتی که یک سفارش خرید تنظیم شده باشد آن را نخواهند " +"دید." + +#. module: base +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" +msgstr "فیلد رابطه" + +#. module: base +#: field:workflow.triggers,instance_id:0 +msgid "Destination Instance" +msgstr "وهله مقصد" + +#. module: base +#: field:ir.actions.wizard,multi:0 +msgid "Action on Multiple Doc." +msgstr "کنش در چندین سند" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "https://translations.launchpad.net/openobject" +msgstr "https://translations.launchpad.net/openobject" + +#. module: base +#: field:ir.actions.todo,start_date:0 +msgid "Start Date" +msgstr "تاریخ آغاز" + +#. module: base +#: field:ir.actions.report.xml,report_xml:0 +msgid "XML path" +msgstr "مسیر XML" + +#. module: base +#: model:res.country,name:base.gn +msgid "Guinea" +msgstr "گینه" + +#. module: base +#: model:res.country,name:base.lu +msgid "Luxembourg" +msgstr "لوکزامبورگ" + +#. module: base +#: model:ir.actions.todo,note:base.config_wizard_step_user +msgid "" +"Create your users.\n" +"You will be able to assign groups to users. Groups define the access rights " +"of each users on the different objects of the system.\n" +" " +msgstr "" +"کاربران خود را پدید آورید.\n" +"شما قادر خواهید بود تا گروه‌ها را به کاربران واگذار نمایید. گروه‌ها تعریف " +"کننده حقوق دسترسی هر کاربر به اشیای متفاوتی از سامانه هستند.\n" +" " + +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "پایین" + +#. module: base +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" +msgstr "tree_but_action, client_print_multi" + +#. module: base +#: model:res.country,name:base.sv +msgid "El Salvador" +msgstr "ال‌سالوادور" + +#. module: base +#: field:res.bank,phone:0 +#: field:res.partner.address,phone:0 +msgid "Phone" +msgstr "تلفن" + +#. module: base +#: field:res.groups,menu_access:0 +msgid "Access Menu" +msgstr "منوی دسترسی" + +#. module: base +#: model:res.country,name:base.th +msgid "Thailand" +msgstr "تایلند" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +msgid ">" +msgstr ">" + +#. module: base +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" +msgstr "اجازه ستردن" + +#. module: base +#: model:ir.model,name:base.model_multi_company_default +msgid "multi_company.default" +msgstr "multi_company.default" + +#. module: base +#: selection:workflow.activity,join_mode:0 +#: selection:workflow.activity,split_mode:0 +msgid "And" +msgstr "و" + +#. module: base +#: field:ir.model.fields,relation:0 +msgid "Object Relation" +msgstr "رابطه شی" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PRINT" +msgstr "STOCK_PRINT" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +msgid "<" +msgstr "<" + +#. module: base +#: model:res.country,name:base.uz +msgid "Uzbekistan" +msgstr "ازبکستان" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.act_window" +msgstr "ir.actions.act_window" + +#. module: base +#: model:res.country,name:base.vi +msgid "Virgin Islands (USA)" +msgstr "جزایر ویرجین انگلستان" + +#. module: base +#: model:res.country,name:base.tw +msgid "Taiwan" +msgstr "تایوان" + +#. module: base +#: view:ir.rule:0 +msgid "If you don't force the domain, it will use the simple domain setup" +msgstr "اگر شما دامنه را اجباری نکنید، سوارسازی آسان دامنه بکار خواهد آمد" + +#. module: base +#: field:ir.report.custom,field_parent:0 +#: field:ir.ui.view,field_parent:0 +msgid "Child Field" +msgstr "فیلد فرزند" + +#. module: base +#: field:ir.actions.act_window,usage:0 +#: field:ir.actions.act_window_close,usage:0 +#: field:ir.actions.actions,usage:0 +#: field:ir.actions.report.custom,usage:0 +#: field:ir.actions.report.xml,usage:0 +#: field:ir.actions.server,usage:0 +#: field:ir.actions.wizard,usage:0 +msgid "Action Usage" +msgstr "کاربرد کنش" + +#. module: base +#: model:ir.model,name:base.model_workflow_workitem +msgid "workflow.workitem" +msgstr "workflow.workitem" + +#. module: base +#: selection:ir.module.module,state:0 +msgid "Not Installable" +msgstr "غیرقابل برپاسازی" + +#. module: base +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "نما:" + +#. module: base +#: field:ir.model.fields,view_load:0 +msgid "View Auto-Load" +msgstr "نمایش بارگذاری خودکار" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_supplier_form +#: view:res.partner:0 +msgid "Suppliers" +msgstr "تامین‌کنندگان فرآورده" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUMP_TO" +msgstr "STOCK_JUMP_TO" + +#. module: base +#: field:ir.actions.todo,end_date:0 +msgid "End Date" +msgstr "تاریخ پایان" + +#. module: base +#: field:ir.exports,resource:0 +#: field:ir.property,res_id:0 +msgid "Resource" +msgstr "منبع" + +#. module: base +#: field:maintenance.contract,name:0 +#: field:maintenance.contract.wizard,name:0 +msgid "Contract ID" +msgstr "شناسه قرارداد" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "center" +msgstr "مرکز" + +#. module: base +#: field:maintenance.contract.wizard,state:0 +msgid "States" +msgstr "وضعیت‌ها" + +#. module: base +#: view:multi_company.default:0 +msgid "Matching" +msgstr "جور" + +#. module: base +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" +msgstr "تردست پسین" + +#. module: base +#: field:ir.attachment,datas_fname:0 +#: field:wizard.module.lang.export,name:0 +msgid "Filename" +msgstr "نام پرونده" + +#. module: base +#: field:ir.model,access_ids:0 +#: field:ir.model.grid,access_ids:0 +msgid "Access" +msgstr "دسترسی" + +#. module: base +#: model:res.country,name:base.sk +msgid "Slovak Republic" +msgstr "اسلواکی (جمهوری)" + +#. module: base +#: model:res.country,name:base.aw +msgid "Aruba" +msgstr "آروبا" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Weeks" +msgstr "هفته‌ها" + +#. module: base +#: field:res.groups,name:0 +msgid "Group Name" +msgstr "نام گروه" + +#. module: base +#: model:res.country,name:base.bh +msgid "Bahrain" +msgstr "بحرین" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_12 +msgid "Segmentation" +msgstr "بخش‌بندی" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FIND" +msgstr "STOCK_FIND" + +#. module: base +#: model:ir.actions.act_window,name:base.action_maintenance_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_maintenance_contract_add +#: view:maintenance.contract.wizard:0 +msgid "Add Maintenance Contract" +msgstr "افزودن قرارداد نگهداری" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" +msgstr "ویتنام / Cộng hòa xã hội chủ nghĩa Việt Nam" + +#. module: base +#: field:ir.actions.act_window,limit:0 +#: field:ir.report.custom,limitt:0 +msgid "Limit" +msgstr "محدودیت" + +#. module: base +#: help:ir.actions.server,wkf_model_id:0 +msgid "Workflow to be executed on this model." +msgstr "کارگردشی که روی این مدل اجرا خواهد شد." + +#. module: base +#: model:res.country,name:base.jm +msgid "Jamaica" +msgstr "جامائیکا" + +#. module: base +#: model:res.country,name:base.az +msgid "Azerbaijan" +msgstr "آذربایجان" + +#. module: base +#: code:addons/base/res/partner/partner.py:0 +#, python-format +msgid "Warning" +msgstr "هشدار" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" +msgstr "عربی / الْعَرَبيّة" + +#. module: base +#: model:res.country,name:base.gi +msgid "Gibraltar" +msgstr "گیبرالتار" + +#. module: base +#: model:res.country,name:base.vg +msgid "Virgin Islands (British)" +msgstr "جزایر ویرجین انگلستان" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PREVIOUS" +msgstr "STOCK_MEDIA_PREVIOUS" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Czech / Čeština" +msgstr "چک / Čeština" + +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "جزایر والیس و فوتونا" + +#. module: base +#: model:res.country,name:base.rw +msgid "Rwanda" +msgstr "رواندا" + +#. module: base +#: constraint:res.partner:0 +msgid "The VAT doesn't seem to be correct." +msgstr "مالیات بر ارزش افزوده درست نیست." + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Sum" +msgstr "محاسبه جمع" + +#. module: base +#: view:ir.sequence:0 +msgid "Day of the week (0:Monday): %(weekday)s" +msgstr "روز هفته (۰:دوشنبه): %(weekday)s" + +#. module: base +#: model:res.country,name:base.ck +msgid "Cook Islands" +msgstr "جزایر کوک" + +#. module: base +#: help:ir.actions.server,mobile:0 +msgid "" +"Provides fields that be used to fetch the mobile number, e.g. you select the " +"invoice, then `object.invoice_address_id.mobile` is the field which gives " +"the correct mobile number" +msgstr "" +"شامل فیلدهایی می‌شود که برای واکشی شماره همراه بکار می‌رود. برای نمونه شما " +"سیاههی را برمی‌گزینید پس `object.invoice_address_id.mobile` فیلدی است که " +"شماره درست همراه را خواهد داد" + +#. module: base +#: field:ir.model.data,noupdate:0 +msgid "Non Updatable" +msgstr "بروزآوری نشدنی" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Klingon" +msgstr "Klingon" + +#. module: base +#: model:res.country,name:base.sg +msgid "Singapore" +msgstr "سنگاپور" + +#. module: base +#: selection:ir.actions.act_window,target:0 +msgid "Current Window" +msgstr "پنجره‌ کنونی" + +#. module: base +#: view:ir.values:0 +msgid "Action Source" +msgstr "مبدا کنش" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NETWORK" +msgstr "STOCK_NETWORK" + +#. module: base +#: model:ir.model,name:base.model_res_country +#: field:res.bank,country:0 +#: view:res.country:0 +#: field:res.country.state,country_id:0 +#: field:res.partner,country:0 +#: field:res.partner.address,country_id:0 +#: field:res.partner.bank,country_id:0 +msgid "Country" +msgstr "کشور" + +#. module: base +#: field:ir.model.fields,complete_name:0 +#: field:ir.ui.menu,complete_name:0 +msgid "Complete Name" +msgstr "نام کامل" + +#. module: base +#: view:ir.report.custom:0 +msgid "Subscribe Report" +msgstr "اشتراک گزارش" + +#. module: base +#: field:ir.values,object:0 +msgid "Is Object" +msgstr "شی است" + +#. module: base +#: field:res.partner.category,name:0 +msgid "Category Name" +msgstr "نام دسته‌بندی" + +#. module: base +#: view:ir.actions.act_window:0 +msgid "Select Groups" +msgstr "گروه‌ها را برگزینید" + +#. module: base +#: field:ir.sequence,weight:0 +msgid "Weight" +msgstr "وزن" + +#. module: base +#: view:res.lang:0 +msgid "%X - Appropriate time representation." +msgstr "%X - نمایش مناسب ساعت" + +#. module: base +#: view:res.company:0 +msgid "Your Logo - Use a size of about 450x150 pixels." +msgstr "نشان شما - اندازه تصویری ۱۵۰×۴۵۰ پیکسل را بکار برید." + +#. module: base +#: help:res.lang,grouping:0 +msgid "" +"The Separator Format should be like [,n] where 0 < n :starting from Unit " +"digit.-1 will end the separation. e.g. [3,2,-1] will represent 106500 to be " +"1,06,500;[1,2,-1] will represent it to be 106,50,0;[3] will represent it as " +"106,500. Provided ',' as the thousand separator in each case." +msgstr "" +"The Separator Format should be like [,n] where 0 < n :starting from Unit " +"digit.-1 will end the separation. e.g. [3,2,-1] will represent 106500 to be " +"1,06,500;[1,2,-1] will represent it to be 106,50,0;[3] will represent it as " +"106,500. Provided ',' as the thousand separator in each case." + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_customer_form_new +msgid "New Partner" +msgstr "همکار نو" + +#. module: base +#: selection:ir.report.custom,print_orientation:0 +msgid "Portrait" +msgstr "پیکره‌ای" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard Button" +msgstr "دکمه تردست" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIRECTORY" +msgstr "STOCK_DIRECTORY" + +#. module: base +#: field:ir.module.module,installed_version:0 +msgid "Latest version" +msgstr "تازه‌ترین نگارش" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_server +msgid "ir.actions.server" +msgstr "ir.actions.server" + +#. module: base +#: model:ir.actions.act_window,name:base.action_rule +#: model:ir.ui.menu,name:base.menu_action_rule +msgid "Record Rules" +msgstr "قواعد رکورد" + +#. module: base +#: view:ir.actions.report.custom:0 +msgid "Report custom" +msgstr "گزارش دلخواه" + +#. module: base +#: field:ir.actions.configuration.wizard,progress:0 +msgid "Configuration Progress" +msgstr "پیکربندی در دست پیشرفت" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_11 +msgid "Configuration Wizards" +msgstr "تردست‌های پیکربندی" + +#. module: base +#: field:res.lang,code:0 +msgid "Locale Code" +msgstr "کد کشور" + +#. module: base +#: field:workflow.activity,split_mode:0 +msgid "Split Mode" +msgstr "حالت جداساز" + +#. module: base +#: model:ir.ui.menu,name:base.menu_localisation +msgid "Localisation" +msgstr "بومی‌سازی" + +#. module: base +#: selection:res.config.view,view:0 +msgid "Simplified Interface" +msgstr "واسط ساده شده" + +#. module: base +#: model:res.country,name:base.cl +msgid "Chile" +msgstr "شیلی" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REVERT_TO_SAVED" +msgstr "STOCK_REVERT_TO_SAVED" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_lang_import +#: model:ir.ui.menu,name:base.menu_wizard_lang_import +msgid "Import a Translation File" +msgstr "درونش پرونده برگردان" + +#. module: base +#: help:ir.values,model_id:0 +msgid "This field is not used, it only helps you to select a good model." +msgstr "" +"این فیلد بکارگرفته نمی‌شود و تنها برای این است که شما یک مدل خوب برگزینید." + +#. module: base +#: field:ir.ui.view,name:0 +msgid "View Name" +msgstr "نام نما" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Italian / Italiano" +msgstr "ایتالیایی / Italiano" + +#. module: base +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" +msgstr "ذخیره بصورت پیشوند پیوست" + +#. module: base +#: model:res.country,name:base.hr +msgid "Croatia" +msgstr "کرواسی" + +#. module: base +#: field:ir.actions.server,mobile:0 +msgid "Mobile No" +msgstr "شماره همرا" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_by_category +#: model:ir.actions.act_window,name:base.action_partner_category_form +#: model:ir.model,name:base.model_res_partner_category +#: model:ir.ui.menu,name:base.menu_partner_category_form +#: view:res.partner.category:0 +msgid "Partner Categories" +msgstr "دسته‌بندی‌های همکار" + +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "کد دنباله" + +#. module: base +#: selection:ir.report.custom,print_format:0 +msgid "a5" +msgstr "a5" + +#. module: base +#: model:res.country,name:base.sc +msgid "Seychelles" +msgstr "سیشل" + +#. module: base +#: model:res.country,name:base.sl +msgid "Sierra Leone" +msgstr "سیرالئون" + +#. module: base +#: view:res.company:0 +#: view:res.partner:0 +msgid "General Information" +msgstr "آگهگان عمومی" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-product" +msgstr "terp-product" + +#. module: base +#: model:res.country,name:base.tc +msgid "Turks and Caicos Islands" +msgstr "جزایر ترک و کایکوس" + +#. module: base +#: field:res.partner.bank,owner_name:0 +msgid "Account Owner" +msgstr "دارنده حساب" + +#. module: base +#: field:ir.attachment,res_model:0 +#: field:workflow,osv:0 +#: field:workflow.instance,res_type:0 +msgid "Resource Object" +msgstr "شی منبع" + +#. module: base +#: field:ir.cron,function:0 +#: field:res.partner.address,function:0 +#: selection:workflow.activity,kind:0 +msgid "Function" +msgstr "کارکرد" + +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "تحویل" + +#. module: base +#: field:ir.attachment,preview:0 +msgid "Image Preview" +msgstr "پیش‌نمایش تصویر" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_pvt_ltd +msgid "Corp." +msgstr "شرکت" + +#. module: base +#: model:res.country,name:base.gw +msgid "Guinea Bissau" +msgstr "گینه‌ی بیسائو" + +#. module: base +#: view:workflow.instance:0 +msgid "Workflow Instances" +msgstr "وهله‌های کارگردش" + +#. module: base +#: code:addons/base/res/partner/partner.py:0 +#, python-format +msgid "Partners: " +msgstr "همکاران: " + +#. module: base +#: model:res.country,name:base.kp +msgid "North Korea" +msgstr "کره شمالی" + +#. module: base +#: view:ir.report.custom:0 +msgid "Unsubscribe Report" +msgstr "قطع اشتراک" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Create Object" +msgstr "پدیدن شی" + +#. module: base +#: field:res.bank,bic:0 +msgid "BIC/Swift code" +msgstr "کد شناسه بانک / سویفت" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_1 +msgid "Prospect" +msgstr "دورنما" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" +msgstr "لهستانی / Język polski" + +#. module: base +#: field:ir.exports,name:0 +msgid "Export Name" +msgstr "نام برونش" + +#. module: base +#: help:res.partner.address,type:0 +msgid "" +"Used to select automatically the right address according to the context in " +"sales and purchases documents." +msgstr "برای گزینش خودکار نشانی درست، بسته به زمینه در اسناد خرید و فروش." + +#. module: base +#: wizard_view:module.lang.install,init:0 +msgid "Choose a language to install:" +msgstr "زبانی را برای برپاسازی برگزینید:" + +#. module: base +#: model:res.country,name:base.lk +msgid "Sri Lanka" +msgstr "سری‌لانکا" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Russian / русский язык" +msgstr "روسی / русский язык" + +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "نمی‌توانید دو کاربر با یک لاگین داشته باشید!" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "" +"You cannot delete the language which is Active !\n" +"Please de-activate the language first." +msgstr "" + +#~ msgid "Attached ID" +#~ msgstr "شناسه پیوست" + +#~ msgid "Attached Model" +#~ msgstr "مدل پیوست" + +#~ msgid "Others Partners" +#~ msgstr "همکاران دیگر" + +#~ msgid "HR sector" +#~ msgstr "بخش منابع انسانی" + +#~ msgid "Main Company" +#~ msgstr "شرکت اصلی" + +#, python-format +#~ msgid "Recursivity Detected." +#~ msgstr "تودرتویی پیدا شده" + +#~ msgid "Telecom sector" +#~ msgstr "بخش تله‌کام" + +#~ msgid "Grant Access To Menus" +#~ msgstr "اعطای دسترسی به منوها" + +#~ msgid "Module Repository" +#~ msgstr "مخزن پیمانه" + +#~ msgid "Macedonia" +#~ msgstr "مقدونیه" + +#~ msgid "Addresses" +#~ msgstr "نشانی‌ها" + +#~ msgid "Partner Functions" +#~ msgstr "کارکردهای همکار" + +#~ msgid "sv_SV" +#~ msgstr "sv_SV" + +#~ msgid "Customers Partners" +#~ msgstr "همکارانِ مشتریان" + +#~ msgid "File Content" +#~ msgstr "محتوای پرونده" + +#~ msgid "uk_UK" +#~ msgstr "uk_UK" + +#~ msgid "Error ! You can not create recursive associated members." +#~ msgstr "خطا! نمی‌توانید اعضای پیوسته تودرتو پدید آورید." + +#~ msgid "Html from html" +#~ msgstr "Html از html" + +#~ msgid "Suppliers Partners" +#~ msgstr "همکاران تامین‌کننده" + +#~ msgid "cs_CS" +#~ msgstr "cs_CS" + +#~ msgid "Titles" +#~ msgstr "عناوین" + +#~ msgid "Make the rule global, otherwise it needs to be put on a group or user" +#~ msgstr "" +#~ "قاعده را فراگیر می‌کند، در غیر این صورت لازم است آن را به یک گروه یا کاربر " +#~ "بدهید" + +#~ msgid "IT sector" +#~ msgstr "بخش فن‌آوری اطلاعات" diff --git a/bin/addons/base/i18n/fi.po b/bin/addons/base/i18n/fi.po index aabfe2c1ca5..57db0f4b3dd 100644 --- a/bin/addons/base/i18n/fi.po +++ b/bin/addons/base/i18n/fi.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2010-03-24 05:45+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2010-10-13 07:43+0000\n" +"Last-Translator: Anup (OpenERP) \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: 2010-03-26 04:47+0000\n" +"X-Launchpad-Export-Date: 2010-10-14 04:44+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -257,11 +257,6 @@ msgstr "%y - Vuosiluku ilman vuosisatoja desimaalilukuna [00,99]." msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Sääntö toteutuu jos vähintään yksi testeistä on \"tosi\"" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -815,11 +810,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "Web-sivusto" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Testit" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1356,7 +1346,6 @@ msgstr "Päivitettyjen moduulien määrä" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1413,7 +1402,7 @@ msgid "" msgstr "" "Syötä kenttä tai lauseke joka palauttaa listan. Esim. valitse myyntitilaus " "objektista ja voit luoda silmukan myyntitilauksen rivistä. Lauseke = " -"\"object.order_line\"." +"`object.order_line`." #. module: base #: selection:ir.translation,type:0 @@ -1461,11 +1450,6 @@ msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "Objektin nimen tulee alkaa x_ ja se ei saa sisältää erikoismerkkejä!" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "Tee säännöstä yleinen, muuten se pitää laittaa ryhmään" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2181,11 +2165,6 @@ msgstr "Työtehtävät" msgid "Countries" msgstr "Maat" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Tietuesäännöt" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2819,11 +2798,6 @@ msgstr "Mielentila" msgid "Benin" msgstr "Benin" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "Sääntö täyttyy jos kaikki testit ovat tosia" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3148,7 +3122,6 @@ msgstr "Kazakstan" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3266,10 +3239,10 @@ msgstr "Ryhmittele" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "" -"\"%s\" contains too many dots. XML ids should not contain dots ! These are " +"'%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\" sisältää liikaa pisteitä. XML ids eivät saa sisältää pisteitä ! Näitä " +"'%s' sisältää liikaa pisteitä. XML ids eivät saa sisältää pisteitä ! Näitä " "käytetään viittaamaan toisten moodulien tietoihin kuten module.reference_id " "kerrotaan" @@ -3818,11 +3791,6 @@ msgstr "Peritty näkymä" msgid "ir.translation" msgstr "ir.translation" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4150,12 +4118,6 @@ msgstr "A4" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" -"Monta sääntöä samalle objektille liitetään käyttämällä operaattoria TAI" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4783,11 +4745,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "Réunion (Ranska)" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Yleinen" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -5036,7 +4993,6 @@ msgstr "Komponenttien toimittajat" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6167,7 +6123,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7802,11 +7757,9 @@ msgid "" "106,500. Provided ',' as the thousand separator in each case." msgstr "" "Erottimen formaatin tulisi olla muotoa [,n] jossa n > 0 ja -1 lopettaa " -"erottelun.\r\n" -"Esimerkiksi luku 106500 (tuhaterottimena on käytetty pilkkua):\r\n" -"[3,2,-1] esittää sen muodossa 1,06,500;\r\n" -"[1,2,-1] esittää sen muodossa 106,50,0;\r\n" -"[3] esittää sen muodossa 106,500." +"erottelun. Esimerkiksi luku 106500 (tuhaterottimena on käytetty " +"pilkkua):[3,2,-1] esittää sen muodossa 1,06,500;[1,2,-1] esittää sen " +"muodossa 106,50,0;[3] esittää sen muodossa 106,500." #. module: base #: model:ir.actions.act_window,name:base.action_partner_customer_form_new @@ -7952,12 +7905,6 @@ msgstr "A5" msgid "Seychelles" msgstr "Seychellit" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -8088,6 +8035,135 @@ msgstr "Sri Lanka" msgid "Russian / русский язык" msgstr "Venäjä / русский язык" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "Käyttäjä virhe" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "" +"You cannot delete the language which is Active !\n" +"Please de-activate the language first." +msgstr "" + #~ msgid "Attached Model" #~ msgstr "Liitetty malli" diff --git a/bin/addons/base/i18n/fr.po b/bin/addons/base/i18n/fr.po index 80dbd3c1559..6d90ad75874 100644 --- a/bin/addons/base/i18n/fr.po +++ b/bin/addons/base/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2010-01-21 05:27+0000\n" -"Last-Translator: Fabien (Open ERP) \n" +"PO-Revision-Date: 2010-10-13 07:43+0000\n" +"Last-Translator: Anup (OpenERP) \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: 2010-01-22 04:34+0000\n" +"X-Launchpad-Export-Date: 2010-10-14 04:44+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -34,7 +34,7 @@ msgstr "%j - Jour de l'année comme un nombre décimal [001,366]." #. module: base #: field:ir.values,meta_unpickle:0 msgid "Metadata" -msgstr "Métadonnées" +msgstr "Méta-données" #. module: base #: field:ir.ui.view,arch:0 @@ -58,7 +58,7 @@ msgstr "Code (ex:fr__FR)" #: field:workflow.activity,wkf_id:0 #: field:workflow.instance,wkf_id:0 msgid "Workflow" -msgstr "Processus" +msgstr "Flux métier" #. module: base #: view:wizard.module.lang.export:0 @@ -74,7 +74,7 @@ msgstr "Hongrois / Magyar" #. module: base #: field:ir.actions.server,wkf_model_id:0 msgid "Workflow On" -msgstr "Diagramme de flux actif" +msgstr "Flux métier sur objet" #. module: base #: view:ir.module.module:0 @@ -107,13 +107,11 @@ msgid "" "understand. You will be able to switch to the extended view later.\n" " " msgstr "" -"Choisir entre \"Interface Simplifée\" et \"Interface Étendue\".\n" +"Choisissez entre \"Interface Simplifée\" et \"Interface Étendue\".\n" "Si vous testez ou utilisez OpenERP pour la première fois, nous vous " -"suggerons d'utiliser\n" -"l'interface simplifiée, qui a moins d'option et de champ mais qui sera plus " -"facile a \n" -"comprendre. Vous pourrez basculer ultérieurement dans la vue étendu plus " -"tard.\n" +"suggérons d'utiliser l'interface simplifiée, qui a moins d'options et de " +"champs mais sera plus facile à comprendre. Vous pourrez basculer " +"ultérieurement dans la vue étendue.\n" " " #. module: base @@ -261,11 +259,6 @@ msgstr "%y - Année dans le siècle comme un nombre décimal [00,99]." msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "La règle est satisfaite si au moins un test est Vrai" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -614,7 +607,7 @@ msgstr "Vous devrez réinstaller quelques packs de langue." #. module: base #: field:res.partner.address,mobile:0 msgid "Mobile" -msgstr "Téléphone mobile" +msgstr "Port." #. module: base #: model:res.country,name:base.om @@ -820,11 +813,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "Site Web" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Tests" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1121,6 +1109,9 @@ msgid "" "consider the present one as void. Do not hesitate to contact our accounting " "department at (+32).81.81.37.00." msgstr "" +"Veuillez ne pas prendre en considération ce mail si votre paiement a été " +"effectué après que nous vous l'ayons adressé. N'hésitez pas à contacter " +"notre service comptable au (+ 32).81.81.37.00." #. module: base #: selection:ir.ui.menu,icon:0 @@ -1367,7 +1358,6 @@ msgstr "Nombre de modules mis à jour" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1475,13 +1465,6 @@ msgstr "" "Le nom de l'objet doit commencer par x_ et ne doit pas contenir de " "caractères spéciaux !" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" -"Faire une règle globale, sinon il sera nécessaire de mettre un groupe ou " -"utilisateur" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2198,11 +2181,6 @@ msgstr "Rôles" msgid "Countries" msgstr "Pays" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Enregistrer la règle" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2411,6 +2389,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_customer_form +#: model:ir.ui.menu,name:base.menu_partner_form #: view:res.partner:0 msgid "Customers" msgstr "Clients" @@ -2837,11 +2816,6 @@ msgstr "État d'esprit" msgid "Benin" msgstr "Bénin" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "La règle est satisfaite si tous les tests sont Vrai (ET)" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3166,7 +3140,6 @@ msgstr "Kazakhstan" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3284,7 +3257,7 @@ msgstr "Grouper par" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "" -"\"%s\" contains too many dots. XML ids should not contain dots ! These are " +"'%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\" contient trop de points. Les ids XML ne devraient pas contenir de " @@ -3472,7 +3445,7 @@ msgstr "Configuration de l'action client" #: model:ir.ui.menu,name:base.menu_partner_address_form #: view:res.partner.address:0 msgid "Partner Addresses" -msgstr "Adresses des partenaires" +msgstr "Carnet d'adresses" #. module: base #: selection:module.lang.install,init,lang:0 @@ -3840,11 +3813,6 @@ msgstr "Vue héritée" msgid "ir.translation" msgstr "ir.translation" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4172,11 +4140,6 @@ msgstr "a4" msgid "Search View Ref." msgstr "Vue de recherche" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "Un \"ou\" est fait entre toutes les règles concernant le même objet." - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4805,11 +4768,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "Réunion (Française)" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Global" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -5058,7 +5016,6 @@ msgstr "Fournisseurs de composants" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6191,7 +6148,6 @@ msgstr "Retour" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -6919,10 +6875,6 @@ msgid "Landscape" msgstr "Paysage" #. module: base -#: model:ir.actions.act_window,name:base.action_partner_form -#: model:ir.ui.menu,name:base.menu_base_config_partner -#: model:ir.ui.menu,name:base.menu_base_partner -#: model:ir.ui.menu,name:base.menu_partner_form #: view:res.partner:0 #: view:res.partner.category:0 #: field:res.partner.category,partner_ids:0 @@ -7421,7 +7373,7 @@ msgstr "Salvador" #: field:res.bank,phone:0 #: field:res.partner.address,phone:0 msgid "Phone" -msgstr "Numéro de téléphone" +msgstr "Tél." #. module: base #: field:res.groups,menu_access:0 @@ -7980,12 +7932,6 @@ msgstr "a5" msgid "Seychelles" msgstr "Seychelles" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "VOus ne pouvez pas avoir deux utilsiateurs avec le même login !" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7995,7 +7941,7 @@ msgstr "Sierra Leone" #: view:res.company:0 #: view:res.partner:0 msgid "General Information" -msgstr "Information générale" +msgstr "Informations générales" #. module: base #: selection:ir.ui.menu,icon:0 @@ -8116,6 +8062,148 @@ msgstr "Sri Lanka" msgid "Russian / русский язык" msgstr "Russie / русский язык" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "Vous ne pouvez pas avoir deux utilsiateurs avec le même login !" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "La taille du champ ne doit jamais être inférieure à 1 !" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "Un raccourci pour ce menu existe déjà !" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" +"Vous ne pouvez pas avoir plusieurs enregistrements avec le même identifiant " +"pour le même module !" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "Votre contrat de maintenance est déjà enregistré dans le système !" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "Le nom d'un module doit être unique !" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "L'ID du certificat pour un module doit être unique !" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "Le Code de la Fonction du Partenaire doit être unique !" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "Le nom du Partenaire doit être unique !" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "Le nom du pays doit être unique !" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "Le code du pays doit être unique !" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "Le nom de la langue doit être unique !" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "Le code de la langue doit être unique" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "Le nom du groupe doit être unique !" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "Erreur de contrainte" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" +"L'opération n'a pas pu être terminée, probablement à la suite d'une :\n" +"- suppression : vous avez essayer de supprimer un enregistrement auquel " +"d'autres enregistrements font référence\n" +"- création/modification : un champ requis n'a pas été correctement rempli" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" +"\n" +"\n" +"[objet ayant pour référence : %s - %s]" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "Erreur d'intégrité" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "Erreur Utilisateur" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "Langue de base 'en_US' ne peut pas être supprimée !" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" +"Vous ne pouvez pas supprimer une langue qui est utilisée par un des " +"utilisateurs !" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "" +"You cannot delete the language which is Active !\n" +"Please de-activate the language first." +msgstr "" +"Vous ne pouvez pas supprimer une langue qui est Active !\n" +"Veuillez désactiver cette langue." + #~ msgid "Others Partners" #~ msgstr "Autres partenaires" diff --git a/bin/addons/base/i18n/gl.po b/bin/addons/base/i18n/gl.po index d64a8919bdf..109008d3c71 100644 --- a/bin/addons/base/i18n/gl.po +++ b/bin/addons/base/i18n/gl.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2009-11-27 17:04+0000\n" -"Last-Translator: Fabien (Open ERP) \n" +"PO-Revision-Date: 2010-06-21 04:04+0000\n" +"Last-Translator: Borja López Soilán (Pexego) \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-01-14 04:46+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:43+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -69,32 +69,32 @@ msgstr "" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Hungarian / Magyar" -msgstr "" +msgstr "Húngaro / Magyar" #. module: base #: field:ir.actions.server,wkf_model_id:0 msgid "Workflow On" -msgstr "" +msgstr "Fluxo de traballo en" #. module: base #: view:ir.module.module:0 msgid "Created Views" -msgstr "" +msgstr "Vistas creadas" #. module: base #: view:workflow.activity:0 msgid "Outgoing transitions" -msgstr "" +msgstr "Transicións saintes" #. module: base #: selection:ir.report.custom,frequency:0 msgid "Yearly" -msgstr "" +msgstr "Anual" #. module: base #: field:ir.actions.act_window,target:0 msgid "Target Window" -msgstr "" +msgstr "Ventana destino" #. module: base #: model:ir.actions.todo,note:base.config_wizard_simple_view @@ -116,14 +116,14 @@ msgstr "" #. module: base #: model:res.country,name:base.kr msgid "South Korea" -msgstr "" +msgstr "Corea do Sur" #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition #: view:workflow.activity:0 msgid "Transitions" -msgstr "" +msgstr "Transicións" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -133,7 +133,7 @@ msgstr "" #. module: base #: model:res.country,name:base.sz msgid "Swaziland" -msgstr "" +msgstr "Suacilandia" #. module: base #: model:ir.model,name:base.model_ir_actions_report_custom @@ -144,12 +144,12 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CANCEL" -msgstr "" +msgstr "STOCK_CANCEL" #. module: base #: field:ir.report.custom,sortby:0 msgid "Sorted By" -msgstr "" +msgstr "Ordeado por" #. module: base #: field:ir.sequence,number_increment:0 @@ -176,33 +176,33 @@ msgstr "" #: code:addons/base/module/wizard/wizard_export_lang.py:0 #, python-format msgid "new" -msgstr "" +msgstr "novo" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_TOP" -msgstr "" +msgstr "STOCK_GOTO_TOP" #. module: base #: field:ir.actions.report.custom,multi:0 #: field:ir.actions.report.xml,multi:0 msgid "On multiple doc." -msgstr "" +msgstr "En múltiples doc." #. module: base #: field:ir.module.category,module_nr:0 msgid "Number of Modules" -msgstr "" +msgstr "Número de módulos" #. module: base #: field:res.partner.bank.type.field,size:0 msgid "Max. Size" -msgstr "" +msgstr "Tamaño máx." #. module: base #: field:res.partner.address,name:0 msgid "Contact Name" -msgstr "" +msgstr "Nome de contacto" #. module: base #: code:addons/base/module/wizard/wizard_export_lang.py:0 @@ -215,7 +215,7 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DELETE" -msgstr "" +msgstr "STOCK_DELETE" #. module: base #: code:addons/base/ir/ir_model.py:0 @@ -232,12 +232,12 @@ msgstr "" #. module: base #: selection:res.request,state:0 msgid "active" -msgstr "" +msgstr "activo" #. module: base #: field:ir.actions.wizard,wiz_name:0 msgid "Wizard Name" -msgstr "" +msgstr "Nome do asistente" #. module: base #: view:res.lang:0 @@ -247,12 +247,7 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_FIRST" -msgstr "" - -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "" +msgstr "STOCK_GOTO_FIRST" #. module: base #: selection:ir.report.custom.fields,operation:0 @@ -290,14 +285,14 @@ msgstr "" #: field:ir.model.access,group_id:0 #: field:ir.rule,rule_group:0 msgid "Group" -msgstr "" +msgstr "Grupo" #. module: base #: field:ir.exports.line,name:0 #: field:ir.translation,name:0 #: field:res.partner.bank.type.field,name:0 msgid "Field Name" -msgstr "" +msgstr "Nome do campo" #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_uninstall @@ -308,7 +303,7 @@ msgstr "" #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "txt" -msgstr "" +msgstr "txt" #. module: base #: wizard_view:server.action.create,init:0 @@ -319,12 +314,12 @@ msgstr "" #. module: base #: selection:ir.actions.todo,type:0 msgid "Configure" -msgstr "" +msgstr "Configurar" #. module: base #: model:res.country,name:base.tv msgid "Tuvalu" -msgstr "" +msgstr "Tuvalu" #. module: base #: selection:ir.model,state:0 @@ -335,18 +330,18 @@ msgstr "" #. module: base #: field:res.lang,date_format:0 msgid "Date Format" -msgstr "" +msgstr "Formato de data" #. module: base #: field:res.bank,email:0 #: field:res.partner.address,email:0 msgid "E-Mail" -msgstr "" +msgstr "Correo electrónico" #. module: base #: model:res.country,name:base.an msgid "Netherlands Antilles" -msgstr "" +msgstr "Antillas Holandesas" #. module: base #: code:addons/base/res/res_user.py:0 @@ -359,7 +354,7 @@ msgstr "" #. module: base #: model:res.country,name:base.gf msgid "French Guyana" -msgstr "" +msgstr "Guayana francesa" #. module: base #: field:ir.ui.view.custom,ref_id:0 @@ -369,7 +364,7 @@ msgstr "" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Bosnian / bosanski jezik" -msgstr "" +msgstr "Bosnia / Bosanski jezik" #. module: base #: help:ir.actions.report.xml,attachment_use:0 @@ -386,12 +381,12 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" -msgstr "" +msgstr "STOCK_MEDIA_REWIND" #. module: base #: field:ir.actions.todo,note:0 msgid "Text" -msgstr "" +msgstr "Texto" #. module: base #: field:res.country,name:0 @@ -424,7 +419,7 @@ msgstr "" #: selection:workflow.activity,join_mode:0 #: selection:workflow.activity,split_mode:0 msgid "Xor" -msgstr "" +msgstr "Xor" #. module: base #: view:res.partner:0 @@ -435,19 +430,19 @@ msgstr "" #: view:ir.actions.wizard:0 #: field:wizard.ir.model.menu.create.line,wizard_id:0 msgid "Wizard" -msgstr "" +msgstr "Asistente" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CUT" -msgstr "" +msgstr "STOCK_CUT" #. module: base #: model:ir.actions.act_window,name:base.ir_action_wizard #: view:ir.actions.wizard:0 #: model:ir.ui.menu,name:base.menu_ir_action_wizard msgid "Wizards" -msgstr "" +msgstr "Asistentes" #. module: base #: selection:res.config.view,view:0 @@ -796,11 +791,6 @@ msgstr "" msgid "Website" msgstr "" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1327,7 +1317,6 @@ msgstr "" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1376,10 +1365,7 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." msgstr "" #. module: base @@ -1428,11 +1414,6 @@ msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2142,11 +2123,6 @@ msgstr "" msgid "Countries" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2757,11 +2733,6 @@ msgstr "" msgid "Benin" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3081,7 +3052,6 @@ msgstr "" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3196,9 +3166,7 @@ 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" +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 @@ -3741,11 +3709,6 @@ msgstr "" msgid "ir.translation" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4073,11 +4036,6 @@ msgstr "" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4694,11 +4652,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4945,7 +4898,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6058,7 +6010,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7807,12 +7758,6 @@ msgstr "" msgid "Seychelles" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7940,3 +7885,130 @@ msgstr "" #: selection:module.lang.install,init,lang:0 msgid "Russian / русский язык" msgstr "" + +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" diff --git a/bin/addons/base/i18n/he.po b/bin/addons/base/i18n/he.po index 1f8196732f8..e172c6283f3 100644 --- a/bin/addons/base/i18n/he.po +++ b/bin/addons/base/i18n/he.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2009-12-18 17:51+0000\n" -"Last-Translator: Ddorda \n" +"PO-Revision-Date: 2010-07-04 04:21+0000\n" +"Last-Translator: Ilan \n" "Language-Team: Hebrew \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-01-14 04:46+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:43+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -256,11 +256,6 @@ msgstr "%y -שנה במבנה שתי ספרות [00,99]." msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "מספיקה בדיקה אחת נכונה וההוראה היא חוקית" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -315,7 +310,7 @@ msgstr "מודולים לא מותקנים" #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "txt" -msgstr "" +msgstr "txt" #. module: base #: wizard_view:server.action.create,init:0 @@ -811,11 +806,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "אתר" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "בדיקות" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1348,7 +1338,6 @@ msgstr "מספר מודולים עודכנו." #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1397,13 +1386,8 @@ msgstr "אשף זה יזהה הגדרות חדשות בישום כך שתוכל #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." -msgstr "" -"הקש את השדה/ביטוי אשר ישיב את הרשימה. לדוגמא בחר את הזמנת מכירה באובייקט, " -"ותוכל לקבל לולאה בשורת הזמנת מכירה. לדוגמא = `object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." +msgstr "הקש את השדה/ביטוי אשר ישיב את הרשימה. לדוגמא בחר את הזמנת מכירה באובייקט, ותוכל לקבל לולאה בשורת הזמנת מכירה. לדוגמא = `object.order_line`." #. module: base #: selection:ir.translation,type:0 @@ -1451,11 +1435,6 @@ msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "שם האובייקט חייב להתחיל עם X_ולא להכיל תוים מיוחדים!" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2169,11 +2148,6 @@ msgstr "תפקיד" msgid "Countries" msgstr "מדינות" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "חוקי רישום" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2797,11 +2771,6 @@ msgstr "מַצַּב רוּחַ" msgid "Benin" msgstr "Benin" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "ההוראה מיושמת אם כל הבדיקות הם TRUE (וגם)" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3006,7 +2975,7 @@ msgstr "מפריד עשרות" #: view:res.request:0 #: field:res.request,history:0 msgid "History" -msgstr "הסטוריה" +msgstr "היסטוריה" #. module: base #: field:ir.attachment,create_uid:0 @@ -3121,7 +3090,6 @@ msgstr "Kazakhstan" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3238,9 +3206,7 @@ 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" +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 @@ -3785,11 +3751,6 @@ msgstr "מבט יורש" msgid "ir.translation" msgstr "ir.translation" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4117,11 +4078,6 @@ msgstr "a4" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "חוקים מרובים על אותו אובייקט מצורפים ע\"י שימוש במפעיל OR" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4746,11 +4702,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "Reunion (French)" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "גלובלי" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4776,7 +4727,7 @@ msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" #: view:ir.translation:0 #: model:ir.ui.menu,name:base.menu_translation msgid "Translations" -msgstr "תרגום" +msgstr "תרגומים" #. module: base #: field:ir.sequence,padding:0 @@ -4997,7 +4948,6 @@ msgstr "רכיבי ספק" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6116,7 +6066,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7888,12 +7837,6 @@ msgstr "a5" msgid "Seychelles" msgstr "Seychelles" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -8023,6 +7966,133 @@ msgstr "Sri Lanka" msgid "Russian / русский язык" msgstr "רוסית / русский язык" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" + #, python-format #~ msgid "The unlink method is not implemented on this object !" #~ msgstr "השיטה הלא מקושרת לא הוטמעה באובייקט!" diff --git a/bin/addons/base/i18n/hr.po b/bin/addons/base/i18n/hr.po index 9796ae7dd6c..39dd99a30dd 100644 --- a/bin/addons/base/i18n/hr.po +++ b/bin/addons/base/i18n/hr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2010-03-28 04:33+0000\n" -"Last-Translator: goranc \n" +"PO-Revision-Date: 2010-09-09 07:03+0000\n" +"Last-Translator: nafterburner \n" "Language-Team: openerp-translators\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-03-29 03:45+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:45+0000\n" "X-Generator: Launchpad (build Unknown)\n" "Language: hr\n" @@ -258,11 +258,6 @@ msgstr "%y - Godina bez stoljeća kao decimalni broj [00,99]" msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Pravilo je zadovoljeno ako je barem jedan test točan" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -814,11 +809,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "Web stranice" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Testovi" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1354,7 +1344,6 @@ msgstr "Broj nadograđenih modula" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1381,7 +1370,7 @@ msgstr "Gruzija" #. module: base #: model:res.country,name:base.pl msgid "Poland" -msgstr "" +msgstr "Poljska" #. module: base #: selection:ir.module.module,state:0 @@ -1404,14 +1393,8 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." -msgstr "" -"Unesite polje/izraz koji će kreirati listu. Npr. odaberite narudžbenicu kao " -"objekt, tako da možete koristiti petlju nad stavkama narudžbe. Izraz = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." +msgstr "Unesite polje/izraz koji će kreirati listu. Npr. odaberite narudžbenicu kao objekt, tako da možete koristiti petlju nad stavkama narudžbe. Izraz = `object.order_line`." #. module: base #: selection:ir.translation,type:0 @@ -1460,11 +1443,6 @@ msgid "" msgstr "" "Naziv objekta mora početi s x_ i ne smije sadržavati posebne znakove !" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "Napravite globalno pravilo, inače je potrebno staviti ga u grupu" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2174,11 +2152,6 @@ msgstr "Uloge" msgid "Countries" msgstr "Države" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Pravila zapisa" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2703,7 +2676,7 @@ msgstr "" #: help:ir.values,key2:0 msgid "" "The kind of action or button in the client side that will trigger the action." -msgstr "" +msgstr "Vrsta akcije ili gumba na klijentskoj strani koja će okinuti akciju." #. module: base #: selection:ir.ui.menu,icon:0 @@ -2801,11 +2774,6 @@ msgstr "Stanje svijesti" msgid "Benin" msgstr "Benin" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3126,7 +3094,6 @@ msgstr "Kazahstan" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3241,9 +3208,7 @@ 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" +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 @@ -3786,11 +3751,6 @@ msgstr "" msgid "ir.translation" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4118,11 +4078,6 @@ msgstr "" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4739,11 +4694,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4990,7 +4940,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6103,7 +6052,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7852,12 +7800,6 @@ msgstr "" msgid "Seychelles" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7979,11 +7921,138 @@ msgstr "" #. module: base #: model:res.country,name:base.lk msgid "Sri Lanka" -msgstr "" +msgstr "Sri Lanka" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Russian / русский язык" +msgstr "Ruski / русский язык" + +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." msgstr "" #, python-format diff --git a/bin/addons/base/i18n/hu.po b/bin/addons/base/i18n/hu.po index bac9fe8367a..c6827ed551b 100644 --- a/bin/addons/base/i18n/hu.po +++ b/bin/addons/base/i18n/hu.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-01-31 04:51+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:43+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -248,11 +248,6 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -795,11 +790,6 @@ msgstr "" msgid "Website" msgstr "" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1326,7 +1316,6 @@ msgstr "" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1375,10 +1364,7 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." msgstr "" #. module: base @@ -1427,11 +1413,6 @@ msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2141,11 +2122,6 @@ msgstr "" msgid "Countries" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2756,11 +2732,6 @@ msgstr "" msgid "Benin" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3080,7 +3051,6 @@ msgstr "" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3195,9 +3165,7 @@ 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" +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 @@ -3740,11 +3708,6 @@ msgstr "" msgid "ir.translation" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4072,11 +4035,6 @@ msgstr "" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4693,11 +4651,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4944,7 +4897,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6057,7 +6009,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7806,12 +7757,6 @@ msgstr "" msgid "Seychelles" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7940,5 +7885,132 @@ msgstr "" msgid "Russian / русский язык" msgstr "" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" + #~ msgid "Main Company" #~ msgstr "Anyagcég" diff --git a/bin/addons/base/i18n/id.po b/bin/addons/base/i18n/id.po index 4fdb4ad9bee..fd1d550a731 100644 --- a/bin/addons/base/i18n/id.po +++ b/bin/addons/base/i18n/id.po @@ -8,93 +8,93 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2009-11-24 18:49+0000\n" -"Last-Translator: Iman Sulaiman \n" +"PO-Revision-Date: 2010-08-28 06:59+0000\n" +"Last-Translator: Iman Sulaiman \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-01-14 04:46+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:44+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base #: model:res.country,name:base.sh msgid "Saint Helena" -msgstr "" +msgstr "Santa Helena" #. module: base #: wizard_view:res.partner.sms_send,init:0 msgid "SMS - Gateway: clickatell" -msgstr "" +msgstr "SMS - Gateway: clickatell" #. module: base #: view:res.lang:0 msgid "%j - Day of the year as a decimal number [001,366]." -msgstr "" +msgstr "%j - Hari dalam setahun sebagai angka desimal [001,366]." #. module: base #: field:ir.values,meta_unpickle:0 msgid "Metadata" -msgstr "" +msgstr "Metadata" #. module: base #: field:ir.ui.view,arch:0 #: field:ir.ui.view.custom,arch:0 msgid "View Architecture" -msgstr "" +msgstr "Arsitektur View" #. module: base #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "You can not create this kind of document! (%s)" -msgstr "" +msgstr "Anda tidak dapat membuat dokumen seperti ini! (%s)" #. module: base #: wizard_field:module.lang.import,init,code:0 msgid "Code (eg:en__US)" -msgstr "" +msgstr "Kode (misal:en__US)" #. module: base #: view:workflow:0 #: field:workflow.activity,wkf_id:0 #: field:workflow.instance,wkf_id:0 msgid "Workflow" -msgstr "" +msgstr "Alur kerja" #. module: base #: view:wizard.module.lang.export:0 msgid "To browse official translations, you can visit this link: " -msgstr "" +msgstr "Untuk mencari penterjemahan resmi, anda bisa kunjungi tautan ini: " #. module: base #: selection:module.lang.install,init,lang:0 msgid "Hungarian / Magyar" -msgstr "" +msgstr "Bahasa Hungaria" #. module: base #: field:ir.actions.server,wkf_model_id:0 msgid "Workflow On" -msgstr "" +msgstr "Alur kerja Pada" #. module: base #: view:ir.module.module:0 msgid "Created Views" -msgstr "" +msgstr "View Tercipta" #. module: base #: view:workflow.activity:0 msgid "Outgoing transitions" -msgstr "" +msgstr "Transisi Keluar" #. module: base #: selection:ir.report.custom,frequency:0 msgid "Yearly" -msgstr "" +msgstr "Tahunan" #. module: base #: field:ir.actions.act_window,target:0 msgid "Target Window" -msgstr "" +msgstr "Jendela Sasaran" #. module: base #: model:ir.actions.todo,note:base.config_wizard_simple_view @@ -107,6 +107,12 @@ msgid "" "understand. You will be able to switch to the extended view later.\n" " " msgstr "" +"Pilih antara \"Antaramuka Sederhana\" atau yang diperluas.\n" +"Jika anda sedang mencoba atau menggunakan OpenERP untuk pertama kalinya, " +"kami sarankan untuk menggunakan antarmuka sederhana, yang memiliki sedikit " +"opsi dan field namun mudah untuk dipahami dan anda masih dapat merubahnya ke " +"antarmuka yang diperluas nantinya.\n" +" " #. module: base #: field:ir.rule,operand:0 @@ -116,93 +122,93 @@ msgstr "" #. module: base #: model:res.country,name:base.kr msgid "South Korea" -msgstr "" +msgstr "Korea Selatan" #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form #: model:ir.ui.menu,name:base.menu_workflow_transition #: view:workflow.activity:0 msgid "Transitions" -msgstr "" +msgstr "Transisi" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom msgid "ir.ui.view.custom" -msgstr "" +msgstr "ir.ui.view.custom" #. module: base #: model:res.country,name:base.sz msgid "Swaziland" -msgstr "" +msgstr "Swaziland" #. module: base #: model:ir.model,name:base.model_ir_actions_report_custom #: selection:ir.ui.menu,action:0 msgid "ir.actions.report.custom" -msgstr "" +msgstr "ir.actions.report.custom" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CANCEL" -msgstr "" +msgstr "STOCK_CANCEL" #. module: base #: field:ir.report.custom,sortby:0 msgid "Sorted By" -msgstr "" +msgstr "Diurut Berdasarkan" #. module: base #: field:ir.sequence,number_increment:0 msgid "Increment Number" -msgstr "" +msgstr "Kenaikan Angka" #. module: base #: model:ir.actions.act_window,name:base.action_res_company_tree #: model:ir.ui.menu,name:base.menu_action_res_company_tree msgid "Company's Structure" -msgstr "" +msgstr "Struktur Perusahaan" #. module: base #: model:ir.model,name:base.model_ir_report_custom_fields msgid "ir.report.custom.fields" -msgstr "" +msgstr "ir.report.custom.fields" #. module: base #: view:res.partner:0 msgid "Search Partner" -msgstr "" +msgstr "Pencarian Partner" #. module: base #: code:addons/base/module/wizard/wizard_export_lang.py:0 #, python-format msgid "new" -msgstr "" +msgstr "baru" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_TOP" -msgstr "" +msgstr "STOCK_GOTO_TOP" #. module: base #: field:ir.actions.report.custom,multi:0 #: field:ir.actions.report.xml,multi:0 msgid "On multiple doc." -msgstr "" +msgstr "Pada multi dok." #. module: base #: field:ir.module.category,module_nr:0 msgid "Number of Modules" -msgstr "" +msgstr "Jumlah Modul" #. module: base #: field:res.partner.bank.type.field,size:0 msgid "Max. Size" -msgstr "" +msgstr "Ukuran Maksimal" #. module: base #: field:res.partner.address,name:0 msgid "Contact Name" -msgstr "" +msgstr "Nama Kontak" #. module: base #: code:addons/base/module/wizard/wizard_export_lang.py:0 @@ -211,142 +217,140 @@ 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 "" +"Simpan dokumen ini ke dalam file %s dan editlah menggunakan program text " +"editor. Gunakan encoding UTF-8." #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DELETE" -msgstr "" +msgstr "STOCK_DELETE" #. module: base #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "Password mismatch !" -msgstr "" +msgstr "Password tidak sama!" #. module: base #: code:addons/base/module/module.py:0 #, python-format msgid "This url '%s' must provide an html file with links to zip modules" msgstr "" +"Url '%s' ini harus memiliki sebuah file html dengan tautan ke module zip" #. module: base #: selection:res.request,state:0 msgid "active" -msgstr "" +msgstr "aktif" #. module: base #: field:ir.actions.wizard,wiz_name:0 msgid "Wizard Name" -msgstr "" +msgstr "Nama Wizard" #. module: base #: view:res.lang:0 msgid "%y - Year without century as a decimal number [00,99]." -msgstr "" +msgstr "%y - Tahun tanpa abad sebagai angka desimal [00,99]." #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_FIRST" -msgstr "" - -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "" +msgstr "STOCK_GOTO_FIRST" #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" -msgstr "" +msgstr "Dapatkan Mak" #. module: base #: help:ir.actions.act_window,limit:0 msgid "Default limit for the list view" -msgstr "" +msgstr "Batas baku untuk daftar view" #. module: base #: field:ir.model.data,date_update:0 msgid "Update Date" -msgstr "" +msgstr "Tanggal Pembaharuan" #. module: base #: field:ir.actions.act_window,src_model:0 msgid "Source Object" -msgstr "" +msgstr "Sumber Obyek" #. module: base #: model:ir.actions.act_window,name:base.act_ir_actions_todo_form #: view:ir.actions.todo:0 #: model:ir.ui.menu,name:base.menu_ir_actions_todo_form msgid "Config Wizard Steps" -msgstr "" +msgstr "Langkah Konfigurasi Wizard" #. module: base #: model:ir.model,name:base.model_ir_ui_view_sc msgid "ir.ui.view_sc" -msgstr "" +msgstr "ir.ui.view_sc" #. module: base #: field:ir.model.access,group_id:0 #: field:ir.rule,rule_group:0 msgid "Group" -msgstr "" +msgstr "Grup" #. module: base #: field:ir.exports.line,name:0 #: field:ir.translation,name:0 #: field:res.partner.bank.type.field,name:0 msgid "Field Name" -msgstr "" +msgstr "Nama Kolom" #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_uninstall #: model:ir.ui.menu,name:base.menu_module_tree_uninstall msgid "Uninstalled modules" -msgstr "" +msgstr "Modul belum terinstal" #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "txt" -msgstr "" +msgstr "txt" #. module: base #: wizard_view:server.action.create,init:0 #: wizard_field:server.action.create,init,type:0 msgid "Select Action Type" -msgstr "" +msgstr "Pilih Jenis Aksi" #. module: base #: selection:ir.actions.todo,type:0 msgid "Configure" -msgstr "" +msgstr "Konfigur" #. module: base #: model:res.country,name:base.tv msgid "Tuvalu" -msgstr "" +msgstr "Tuvalu" #. module: base #: selection:ir.model,state:0 #: selection:ir.model.grid,state:0 msgid "Custom Object" -msgstr "" +msgstr "Obyek Kesukaan" #. module: base #: field:res.lang,date_format:0 msgid "Date Format" -msgstr "" +msgstr "Format Tanggal" #. module: base #: field:res.bank,email:0 #: field:res.partner.address,email:0 msgid "E-Mail" -msgstr "" +msgstr "E-Mail" #. module: base #: model:res.country,name:base.an msgid "Netherlands Antilles" -msgstr "" +msgstr "Netherlands Antilles" #. module: base #: code:addons/base/res/res_user.py:0 @@ -355,21 +359,23 @@ msgid "" "You can not remove the admin user as it is used internally for resources " "created by OpenERP (updates, module installation, ...)" msgstr "" +"Anda tidak dapat menghapus pengguna admin sebab digunakan secara internal " +"sebagai sumber yang dibuat oleh OpenERP (pembaharuan, instalasi modul, ...)" #. module: base #: model:res.country,name:base.gf msgid "French Guyana" -msgstr "" +msgstr "Guyana Perancis" #. module: base #: field:ir.ui.view.custom,ref_id:0 msgid "Original View" -msgstr "" +msgstr "View Asli" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Bosnian / bosanski jezik" -msgstr "" +msgstr "Bosnia" #. module: base #: help:ir.actions.report.xml,attachment_use:0 @@ -381,27 +387,27 @@ msgstr "" #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" -msgstr "" +msgstr "Kode ISO ini adalah nama file po untuk digunakan pada penerjemahan" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" -msgstr "" +msgstr "STOCK_MEDIA_REWIND" #. module: base #: field:ir.actions.todo,note:0 msgid "Text" -msgstr "" +msgstr "Teks" #. module: base #: field:res.country,name:0 msgid "Country Name" -msgstr "" +msgstr "Nama Negara" #. module: base #: model:res.country,name:base.coreturn msgid "Colombia" -msgstr "" +msgstr "Kolombia" #. module: base #: view:ir.module.module:0 @@ -796,11 +802,6 @@ msgstr "" msgid "Website" msgstr "" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1327,7 +1328,6 @@ msgstr "" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1376,10 +1376,7 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." msgstr "" #. module: base @@ -1428,11 +1425,6 @@ msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2142,11 +2134,6 @@ msgstr "" msgid "Countries" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2757,11 +2744,6 @@ msgstr "" msgid "Benin" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3081,7 +3063,6 @@ msgstr "" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3196,9 +3177,7 @@ 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" +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 @@ -3741,11 +3720,6 @@ msgstr "" msgid "ir.translation" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4073,11 +4047,6 @@ msgstr "" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4694,11 +4663,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4945,7 +4909,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6058,7 +6021,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7807,12 +7769,6 @@ msgstr "" msgid "Seychelles" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7940,3 +7896,130 @@ msgstr "" #: selection:module.lang.install,init,lang:0 msgid "Russian / русский язык" msgstr "" + +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" diff --git a/bin/addons/base/i18n/is.po b/bin/addons/base/i18n/is.po index c8ca81600aa..d9c2ff923a5 100644 --- a/bin/addons/base/i18n/is.po +++ b/bin/addons/base/i18n/is.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-01-14 04:46+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:43+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -249,11 +249,6 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -796,11 +791,6 @@ msgstr "" msgid "Website" msgstr "" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1327,7 +1317,6 @@ msgstr "" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1376,10 +1365,7 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." msgstr "" #. module: base @@ -1428,11 +1414,6 @@ msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2142,11 +2123,6 @@ msgstr "" msgid "Countries" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2757,11 +2733,6 @@ msgstr "" msgid "Benin" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3081,7 +3052,6 @@ msgstr "" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3196,9 +3166,7 @@ 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" +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 @@ -3741,11 +3709,6 @@ msgstr "" msgid "ir.translation" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4073,11 +4036,6 @@ msgstr "" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4694,11 +4652,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4945,7 +4898,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6058,7 +6010,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7807,12 +7758,6 @@ msgstr "" msgid "Seychelles" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7940,3 +7885,130 @@ msgstr "" #: selection:module.lang.install,init,lang:0 msgid "Russian / русский язык" msgstr "" + +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" diff --git a/bin/addons/base/i18n/it.po b/bin/addons/base/i18n/it.po index ed9e2a191a3..240b05d4306 100644 --- a/bin/addons/base/i18n/it.po +++ b/bin/addons/base/i18n/it.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2010-03-12 05:20+0000\n" -"Last-Translator: Maurizio.Colella \n" +"PO-Revision-Date: 2010-10-17 07:49+0000\n" +"Last-Translator: OpenERP Administrators \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: 2010-03-13 04:50+0000\n" +"X-Launchpad-Export-Date: 2010-10-18 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -58,7 +58,7 @@ msgstr "Codice (Es:it__IT)" #: field:workflow.activity,wkf_id:0 #: field:workflow.instance,wkf_id:0 msgid "Workflow" -msgstr "Workflow" +msgstr "Flusso di lavoro" #. module: base #: view:wizard.module.lang.export:0 @@ -73,7 +73,7 @@ msgstr "Hungarian / Magyar" #. module: base #: field:ir.actions.server,wkf_model_id:0 msgid "Workflow On" -msgstr "Workflow per" +msgstr "Flusso di lavoro per" #. module: base #: view:ir.module.module:0 @@ -258,12 +258,6 @@ msgstr "%y - Anno senza secolo come numero decimale [00,99]." msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "" -"La regola viene soddisfatta se almeno un test restituisce il valore True" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -422,7 +416,7 @@ msgstr "Colombia" #. module: base #: view:ir.module.module:0 msgid "Schedule Upgrade" -msgstr "Aggiornamento Programmazione" +msgstr "Pianifica l'aggiornamento" #. module: base #: field:ir.actions.report.custom,report_id:0 @@ -496,7 +490,7 @@ msgstr "Descrizione Modello" #. module: base #: field:workflow.transition,trigger_expr_id:0 msgid "Trigger Expression" -msgstr "" +msgstr "Espressione attivatrice" #. module: base #: model:res.country,name:base.jo @@ -819,11 +813,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "Sito Web" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Test" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -901,7 +890,7 @@ msgstr "Relazione" #. module: base #: field:ir.model.access,perm_read:0 msgid "Read Access" -msgstr "Accesso di Lettura" +msgstr "Accesso in lettura" #. module: base #: model:ir.model,name:base.model_ir_exports @@ -1119,6 +1108,9 @@ msgid "" "consider the present one as void. Do not hesitate to contact our accounting " "department at (+32).81.81.37.00." msgstr "" +"Se il vostro pagamento è stato effettuato prima del ricevimento di questa " +"mail, prego considerate nullo questo avvertimento. Non esitate a contattare " +"la nostra amministrazione al (+32).81.81.37.00." #. module: base #: selection:ir.ui.menu,icon:0 @@ -1366,7 +1358,6 @@ msgstr "Numero di moduli aggiornati" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1474,12 +1465,6 @@ msgstr "" "Il nome dell'oggetto deve iniziare per x_ e non deve contenere caratteri " "speciali!" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" -"Rende la regola globale, altrimenti deve essere inserita in un gruppo" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2150,10 +2135,7 @@ msgstr "Crea Menu" msgid "" "Value Added Tax number. Check the box if the partner is subjected to the " "VAT. Used by the VAT legal statement." -msgstr "" -"numero di Partita IVA (Imposta sul valore Aggiunto - VAT). Seleziona la " -"casella se il partner è soggetto IVA. Usato dalla dichiarazione legale " -"sull'IVA." +msgstr "Seleziona la casella se il partner è soggetto IVA." #. module: base #: model:ir.actions.act_window,name:base.action_module_category_tree @@ -2196,15 +2178,10 @@ msgstr "Ruoli" msgid "Countries" msgstr "Nazioni" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Registra Regole" - #. module: base #: field:res.partner,vat:0 msgid "VAT" -msgstr "IVA" +msgstr "Partita IVA" #. module: base #: view:res.lang:0 @@ -2345,7 +2322,7 @@ msgstr "Liechtenstein" #. module: base #: model:res.partner.title,name:base.res_partner_title_ltd msgid "Ltd" -msgstr "Srl" +msgstr "Ltd" #. module: base #: field:res.partner,ean13:0 @@ -2452,7 +2429,7 @@ msgstr "Contenuto SXW" #. module: base #: view:ir.cron:0 msgid "Action to Trigger" -msgstr "" +msgstr "Azione da innescare" #. module: base #: field:ir.report.custom.fields,fc0_operande:0 @@ -2613,7 +2590,7 @@ msgstr "STOCK_SAVE_AS" #. module: base #: selection:ir.translation,type:0 msgid "SQL Constraint" -msgstr "" +msgstr "Vincoli SQL" #. module: base #: field:ir.actions.server,srcmodel_id:0 @@ -2834,13 +2811,6 @@ msgstr "Impressione" msgid "Benin" msgstr "Benin" -#. 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)" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3166,7 +3136,6 @@ msgstr "Kazakistan" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3284,9 +3253,12 @@ msgstr "Raggruppa per" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "" -"\"%s\" contains too many dots. XML ids should not contain dots ! These are " +"'%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 IDS XML non devono contenere punti! Questi " +"sono usati per riferisti ad altri modelli di dato, come in: " +"module.reference_id" #. module: base #: selection:ir.ui.menu,icon:0 @@ -3348,7 +3320,7 @@ msgstr "Isole minori esterne degli USA" #: field:res.partner.bank,state:0 #: field:res.partner.bank.type.field,bank_type_id:0 msgid "Bank Type" -msgstr "" +msgstr "Tipo Conto" #. module: base #: code:addons/base/res/res_user.py:0 @@ -3393,7 +3365,7 @@ msgstr "Titolare del conto" #: model:ir.actions.act_window,name:base.act_values_form #: model:ir.ui.menu,name:base.menu_values_form msgid "Client Actions Connections" -msgstr "" +msgstr "Connessioni alle azioni del client" #. module: base #: field:ir.ui.view_sc,resource:0 @@ -3413,13 +3385,15 @@ msgstr "Guadalupa (Francia)" #. module: base #: field:ir.report.custom.fields,cumulate:0 msgid "Accumulate" -msgstr "" +msgstr "Accumula" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Tree can only be used in tabular reports" msgstr "" +"La struttura ad albero può essere utilizzata esclusivamente nei report " +"tabellari" #. module: base #: rml:ir.module.reference:0 @@ -3472,7 +3446,7 @@ msgstr "Indirizzi Partner" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Indonesian / Bahasa Indonesia" -msgstr "" +msgstr "Indonesiano / Bahasa Indonesiano" #. module: base #: model:res.country,name:base.cv @@ -3639,7 +3613,7 @@ msgstr "Crea azione" #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "HTML from HTML" -msgstr "" +msgstr "HTML da HTML" #. module: base #: selection:ir.actions.report.xml,report_type:0 @@ -3731,12 +3705,12 @@ msgstr "STOCK_ADD" #. module: base #: field:ir.cron,doall:0 msgid "Repeat Missed" -msgstr "" +msgstr "Ripeti mancato" #. module: base #: help:ir.actions.server,state:0 msgid "Type of the Action that is to be executed" -msgstr "" +msgstr "Tipo dell'azione che deve essere eseguita" #. module: base #: field:ir.server.object.lines,server_id:0 @@ -3781,7 +3755,7 @@ msgstr "Botswana" #: model:ir.ui.menu,name:base.menu_partner_title_partner #: view:res.partner.title:0 msgid "Partner Titles" -msgstr "" +msgstr "Qualifiche Partner" #. module: base #: selection:ir.actions.todo,type:0 @@ -3834,11 +3808,6 @@ msgstr "Vista Collegata" msgid "ir.translation" msgstr "ir.translation" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -3859,7 +3828,7 @@ msgstr "Contratto di manutenzione" #. module: base #: help:ir.actions.server,trigger_obj_id:0 msgid "Select the object from the model on which the workflow will executed." -msgstr "" +msgstr "Seleziona l'oggetto dal modello su cui il workflow verrà eseguito." #. module: base #: field:ir.model,state:0 @@ -3876,7 +3845,7 @@ msgstr "Esegui Conteggio" #. module: base #: field:ir.model.access,perm_create:0 msgid "Create Access" -msgstr "Crea Accesso" +msgstr "Accesso in creazione" #. module: base #: field:res.partner.address,state_id:0 @@ -3959,7 +3928,7 @@ msgstr "Messaggio" #. module: base #: field:ir.actions.act_window.view,multi:0 msgid "On Multiple Doc." -msgstr "" +msgstr "Su multipli doc." #. module: base #: model:ir.ui.menu,name:base.menu_base_config_contact @@ -4164,14 +4133,7 @@ msgstr "a4" #. module: base #: field:ir.actions.act_window,search_view_id:0 msgid "Search View Ref." -msgstr "" - -#. 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 "Rif. Vista Ricerca" #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field @@ -4434,7 +4396,7 @@ msgstr "Annulla Disinstallazione" #: view:res.partner:0 #: view:res.partner.address:0 msgid "Communication" -msgstr "" +msgstr "Comunicazione" #. module: base #: model:ir.model,name:base.model_ir_server_object_lines @@ -4445,7 +4407,7 @@ msgstr "ir.server.object.lines" #: code:addons/base/module/module.py:0 #, python-format msgid "Module %s: Invalid Quality Certificate" -msgstr "" +msgstr "Modulo %s: Certificato di qualità non valido" #. module: base #: model:res.country,name:base.kw @@ -4464,6 +4426,9 @@ msgid "" "Keep empty to not save the printed reports. You can use a python expression " "with the object and time variables." msgstr "" +"Questo è il nome file dell'allegato usato per immagazzinare il risultato " +"della stampa. Lasciare vuoto per non salvare il report stampato. Puoi usare " +"una espressione di python con l'oggetto e le variabili temporali." #. module: base #: model:res.country,name:base.ng @@ -4478,7 +4443,7 @@ msgstr "res.partner.event" #. module: base #: field:res.company,user_ids:0 msgid "Accepted Users" -msgstr "" +msgstr "Utenti accettati" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4488,7 +4453,7 @@ msgstr "STOCK_UNDERLINE" #. module: base #: view:ir.values:0 msgid "Values for Event Type" -msgstr "" +msgstr "Valori per i Tipi di Evento" #. module: base #: selection:ir.model.fields,select_level:0 @@ -4509,6 +4474,8 @@ msgstr "Hong Kong" #: help:ir.actions.server,name:0 msgid "Easy to Refer action by name e.g. One Sales Order -> Many Invoices" msgstr "" +"E' facile riferisti all'azione per nome es. Un ordine di vendita -> molte " +"fatture" #. module: base #: model:ir.ui.menu,name:base.next_id_10 @@ -4523,12 +4490,12 @@ msgstr "STOCK_BOLD" #. module: base #: model:res.country,name:base.ph msgid "Philippines" -msgstr "" +msgstr "Filippine" #. module: base #: model:res.country,name:base.ma msgid "Morocco" -msgstr "" +msgstr "Marocco" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4580,12 +4547,12 @@ msgstr "Rapporto di Introspezione su Oggetti" #. module: base #: model:res.country,name:base.pf msgid "Polynesia (French)" -msgstr "" +msgstr "Polinesia (Francese)" #. module: base #: model:res.country,name:base.dm msgid "Dominica" -msgstr "" +msgstr "Repubblica Dominicana" #. module: base #: model:ir.model,name:base.model_res_currency_rate @@ -4595,7 +4562,7 @@ msgstr "Valore Valuta" #. module: base #: model:res.country,name:base.np msgid "Nepal" -msgstr "" +msgstr "Nepal" #. module: base #: field:res.partner.event,event_ical_id:0 @@ -4639,6 +4606,8 @@ msgid "" "Can not create the module file:\n" " %s" msgstr "" +"Impossibile creare il file di modulo:\n" +" %s" #. module: base #: model:ir.actions.wizard,name:base.wizard_update @@ -4654,13 +4623,13 @@ msgstr "Continua" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Thai / ภาษาไทย" -msgstr "" +msgstr "Thailandia" #. module: base #: model:ir.actions.act_window,name:base.ir_property_form #: model:ir.ui.menu,name:base.menu_ir_property_form msgid "Default Properties" -msgstr "" +msgstr "Proprietà predefinite" #. module: base #: selection:module.lang.install,init,lang:0 @@ -4670,7 +4639,7 @@ msgstr "Slovenian / slovenščina" #. module: base #: field:ir.actions.report.xml,attachment_use:0 msgid "Reload from Attachment" -msgstr "" +msgstr "Ricarica dall'allegato" #. module: base #: model:res.country,name:base.bv @@ -4751,7 +4720,7 @@ msgstr "Oggetti" #. module: base #: field:ir.model.fields,selectable:0 msgid "Selectable" -msgstr "" +msgstr "Selezionabile" #. module: base #: view:res.request.link:0 @@ -4782,7 +4751,7 @@ msgstr "terp-stock" #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" -msgstr "" +msgstr "Emirati Arabi Uniti" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4794,15 +4763,10 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "La Réunion" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Globale" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" -msgstr "" +msgstr "Repubblica Ceca" #. module: base #: model:res.country,name:base.sb @@ -4813,7 +4777,7 @@ msgstr "Isole Salomone" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "AccessError" -msgstr "" +msgstr "Errore in Accesso" #. module: base #: view:res.lang:0 @@ -4834,12 +4798,12 @@ msgstr "Riempimento Numero" #. module: base #: model:res.country,name:base.ua msgid "Ukraine" -msgstr "" +msgstr "Ucraina" #. module: base #: model:res.country,name:base.to msgid "Tonga" -msgstr "" +msgstr "Tonga" #. module: base #: model:ir.model,name:base.model_ir_module_category @@ -4850,7 +4814,7 @@ msgstr "Categoria Modulo" #. module: base #: model:res.country,name:base.us msgid "United States" -msgstr "" +msgstr "Stati Uniti d'America" #. module: base #: rml:ir.module.reference:0 @@ -4860,7 +4824,7 @@ msgstr "Guida di Riferimento" #. module: base #: model:res.country,name:base.ml msgid "Mali" -msgstr "" +msgstr "Mali" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4941,22 +4905,22 @@ msgstr "STOCK_GO_BACK" #. module: base #: view:ir.actions.act_window:0 msgid "General Settings" -msgstr "" +msgstr "Impostazioni generali" #. module: base #: model:ir.ui.menu,name:base.custom_shortcuts msgid "Custom Shortcuts" -msgstr "" +msgstr "Scorciatoie personalizzate" #. module: base #: model:res.country,name:base.dz msgid "Algeria" -msgstr "" +msgstr "Algeria" #. module: base #: model:res.country,name:base.be msgid "Belgium" -msgstr "" +msgstr "Belgio" #. module: base #: field:ir.translation,lang:0 @@ -4971,7 +4935,7 @@ msgstr "Lingua" #. module: base #: model:res.country,name:base.gm msgid "Gambia" -msgstr "" +msgstr "Gambia" #. module: base #: model:ir.actions.act_window,name:base.action_res_company_form @@ -4992,7 +4956,7 @@ msgstr "Codice Python" #: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format msgid "Can not create the module file: %s !" -msgstr "" +msgstr "Impossibile creare il file del modulo: %s !" #. module: base #: model:ir.module.module,description:base.module_meta_information @@ -5018,7 +4982,7 @@ msgstr "Annulla" #: code:addons/base/ir/ir_actions.py:0 #, python-format msgid "Please specify server option --smtp-from !" -msgstr "" +msgstr "Per favore specificare l'opzione server --smtp-from !" #. module: base #: selection:wizard.module.lang.export,format:0 @@ -5046,7 +5010,6 @@ msgstr "Fornitori" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -5064,7 +5027,7 @@ msgstr "Versione Pubblicata" #. module: base #: model:res.country,name:base.is msgid "Iceland" -msgstr "" +msgstr "Islanda" #. module: base #: view:res.users:0 @@ -5075,7 +5038,7 @@ msgstr "" #. module: base #: model:res.country,name:base.de msgid "Germany" -msgstr "" +msgstr "Germania" #. module: base #: view:ir.sequence:0 @@ -5118,7 +5081,7 @@ msgstr "Ricorda di uscire e rientrare se hai cambiato la password" #. module: base #: model:res.country,name:base.gy msgid "Guyana" -msgstr "" +msgstr "Guyana" #. module: base #: selection:ir.module.module,license:0 @@ -5143,18 +5106,20 @@ msgstr "Creato Id" #. module: base #: model:res.country,name:base.hn msgid "Honduras" -msgstr "" +msgstr "Honduras" #. module: base #: model:res.country,name:base.eg msgid "Egypt" -msgstr "" +msgstr "Egitto" #. module: base #: help:ir.actions.server,model_id:0 msgid "" "Select the object on which the action will work (read, write, create)." msgstr "" +"Seleziona l'oggetto sul quale l'azione dovrà lavorare (lettura, scrittura, " +"creazione)." #. module: base #: view:ir.model:0 @@ -5193,7 +5158,7 @@ msgstr "Da installare" #: model:ir.module.module,shortdesc:base.module_meta_information #: field:res.currency,base:0 msgid "Base" -msgstr "" +msgstr "Base" #. module: base #: model:res.country,name:base.lr @@ -5232,7 +5197,7 @@ msgstr "Imposta" #. module: base #: model:res.country,name:base.mc msgid "Monaco" -msgstr "" +msgstr "Principato di Monaco" #. module: base #: selection:ir.cron,interval_type:0 @@ -5264,12 +5229,12 @@ msgstr "Crea" #. module: base #: field:ir.exports,export_fields:0 msgid "Export ID" -msgstr "" +msgstr "ID esportazione" #. module: base #: model:res.country,name:base.fr msgid "France" -msgstr "" +msgstr "Francia" #. module: base #: field:workflow.activity,flow_stop:0 @@ -5279,18 +5244,18 @@ msgstr "Arresta Flusso" #. module: base #: model:res.country,name:base.ar msgid "Argentina" -msgstr "" +msgstr "Argentina" #. module: base #: model:res.country,name:base.af msgid "Afghanistan, Islamic State of" -msgstr "" +msgstr "Stato islamico dell'Afghanistan" #. module: base #: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format msgid "Error !" -msgstr "" +msgstr "Errore !" #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field_contry @@ -5327,7 +5292,7 @@ msgstr "Separatore delle migliaia" #. module: base #: field:res.request,create_date:0 msgid "Created Date" -msgstr "" +msgstr "Data di Creazione" #. module: base #: selection:ir.report.custom,type:0 @@ -5340,6 +5305,8 @@ msgid "" "Select the action that will be executed. Loop action will not be avaliable " "inside loop." msgstr "" +"Scegli l'azione che verrà eseguita. Azioni ricorsive non saranno disponibili " +"dentro il ciclo." #. module: base #: selection:module.lang.install,init,lang:0 @@ -5379,7 +5346,7 @@ msgstr "Azienda" #. module: base #: model:res.country,name:base.pa msgid "Panama" -msgstr "" +msgstr "Panama" #. module: base #: selection:ir.report.custom,state:0 @@ -5412,12 +5379,12 @@ msgstr "Eventi Partner Attivi" #: model:ir.ui.menu,name:base.menu_partner_function_form #: view:res.partner.function:0 msgid "Contact Functions" -msgstr "" +msgstr "Funzioni Contatto" #. module: base #: view:multi_company.default:0 msgid "Multi Company" -msgstr "" +msgstr "Multi Azienda" #. module: base #: view:ir.sequence:0 @@ -5427,7 +5394,7 @@ msgstr "Giorno dell'anno: %(doy)s" #. module: base #: model:res.country,name:base.nt msgid "Neutral Zone" -msgstr "" +msgstr "Zona neutrale" #. module: base #: view:ir.model:0 @@ -5455,7 +5422,7 @@ msgstr "Selezione" #. module: base #: field:ir.actions.act_window,search_view:0 msgid "Search View" -msgstr "" +msgstr "Vista di Ricerca" #. module: base #: field:ir.rule,domain_force:0 @@ -5466,6 +5433,7 @@ msgstr "Forza Dominio" #: help:ir.sequence,weight:0 msgid "If two sequences match, the highest weight will be used." msgstr "" +"se due sequenze soddisfano, quella col peso maggiore sarà utilizzata." #. module: base #: model:ir.actions.act_window,name:base.action_attachment @@ -5507,7 +5475,7 @@ msgstr "Sig.rina" #. module: base #: field:ir.model.access,perm_write:0 msgid "Write Access" -msgstr "Accesso Scrittura" +msgstr "Accesso in scrittura" #. module: base #: field:res.bank,city:0 @@ -5520,12 +5488,12 @@ msgstr "Città" #. module: base #: model:res.country,name:base.qa msgid "Qatar" -msgstr "" +msgstr "Qatar" #. module: base #: model:res.country,name:base.it msgid "Italy" -msgstr "" +msgstr "Italia" #. module: base #: selection:ir.rule,operator:0 @@ -5555,7 +5523,7 @@ msgstr "GPL-3 o versione successiva" #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "HTML from HTML(Mako)" -msgstr "" +msgstr "HTML da HTML (MAKO)" #. module: base #: field:workflow.activity,action:0 @@ -5565,7 +5533,7 @@ msgstr "Puthon Attivo" #. module: base #: selection:module.lang.install,init,lang:0 msgid "English (US)" -msgstr "" +msgstr "Inglese Americano (U.S.A.)" #. module: base #: field:res.partner.event,probability:0 @@ -5608,7 +5576,7 @@ msgstr "Attività" #: view:res.partner:0 #: view:res.partner.address:0 msgid "Postal Address" -msgstr "" +msgstr "Indirizzo postale" #. module: base #: field:res.company,parent_id:0 @@ -5623,7 +5591,7 @@ msgstr "Valore" #. module: base #: model:res.country,name:base.cg msgid "Congo" -msgstr "" +msgstr "Congo" #. module: base #: model:ir.model,name:base.model_ir_exports_line @@ -5676,6 +5644,8 @@ msgid "" "Object in which you want to create / write the object. If it is empty then " "refer to the Object field." msgstr "" +"Oggetto nel quale vuoi creare/scrivere l'oggetto. Se vuoto allora si " +"riferisce al campo oggetto." #. module: base #: selection:ir.module.module,state:0 @@ -5686,7 +5656,7 @@ msgstr "Non installato" #. module: base #: field:workflow.activity,out_transitions:0 msgid "Outgoing Transitions" -msgstr "" +msgstr "Transizioni in Uscita" #. module: base #: field:ir.ui.menu,icon:0 @@ -5714,7 +5684,7 @@ msgstr "Richieste" #. module: base #: model:res.country,name:base.ye msgid "Yemen" -msgstr "" +msgstr "Yemen" #. module: base #: selection:workflow.activity,split_mode:0 @@ -5724,17 +5694,17 @@ msgstr "Or" #. module: base #: model:res.country,name:base.pk msgid "Pakistan" -msgstr "" +msgstr "Pakistan" #. module: base #: model:res.country,name:base.al msgid "Albania" -msgstr "" +msgstr "Albania" #. module: base #: model:res.country,name:base.ws msgid "Samoa" -msgstr "" +msgstr "Samoa" #. module: base #: field:ir.ui.menu,child_id:0 @@ -5745,13 +5715,13 @@ msgstr "ID dipendenti" #: code:addons/base/ir/ir_actions.py:0 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" -msgstr "" +msgstr "Problema nella configurazione 'Record Id' nell'azione del Server!" #. module: base #: code:addons/base/maintenance/maintenance.py:0 #, python-format msgid "This error occurs on database %s" -msgstr "" +msgstr "Questo errore è avvenuto sul database %s" #. module: base #: wizard_button:base.module.import,init,import:0 @@ -5768,7 +5738,7 @@ msgstr "STOCK_DISCONNECT" #. module: base #: model:res.country,name:base.la msgid "Laos" -msgstr "" +msgstr "Laos" #. module: base #: selection:ir.actions.server,state:0 @@ -5784,7 +5754,7 @@ msgstr "Risincronizza i termini" #. module: base #: model:res.country,name:base.tg msgid "Togo" -msgstr "" +msgstr "Togo" #. module: base #: selection:workflow.activity,kind:0 @@ -5805,13 +5775,13 @@ msgstr "A Cascata" #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Field %d should be a figure" -msgstr "" +msgstr "Il campo %d dovrebbe essere una figura" #. module: base #: model:ir.actions.act_window,name:base.action_inventory_form #: model:ir.ui.menu,name:base.menu_action_inventory_form msgid "Default Company per Object" -msgstr "" +msgstr "Azienda Predefinita per Oggetto" #. module: base #: view:ir.actions.configuration.wizard:0 @@ -5826,7 +5796,7 @@ msgstr "Commento" #. module: base #: model:res.country,name:base.ro msgid "Romania" -msgstr "" +msgstr "Romania" #. module: base #: selection:ir.ui.menu,icon:0 @@ -5880,7 +5850,7 @@ msgstr "Inizia Installazione" #. module: base #: help:res.lang,code:0 msgid "This field is used to set/get locales for user" -msgstr "" +msgstr "Questo campo è usato per impostare/leggere fuso locale per utente" #. module: base #: model:res.partner.category,name:base.res_partner_category_2 @@ -5924,7 +5894,7 @@ msgstr "Utente" #. module: base #: model:res.country,name:base.pr msgid "Puerto Rico" -msgstr "" +msgstr "Porto Rico" #. module: base #: code:addons/base/res/res_currency.py:0 @@ -5934,6 +5904,9 @@ msgid "" "' \\n 'for the currency: %s \n" "' \\n 'at the date: %s" msgstr "" +"Nessun tasso trovato \n" +"'\\n' per valuta: %s \n" +"'\\n' alla data: %s" #. module: base #: view:ir.actions.act_window:0 @@ -5949,7 +5922,7 @@ msgstr "Filtro" #. module: base #: model:res.country,name:base.ch msgid "Switzerland" -msgstr "" +msgstr "Svizzera" #. module: base #: model:res.country,name:base.gd @@ -5985,7 +5958,7 @@ msgstr "Aggiornamento di Sistema Completato" #. module: base #: model:res.country,name:base.so msgid "Somalia" -msgstr "" +msgstr "Somalia" #. module: base #: model:ir.actions.act_window,name:base.action_config_simple_view_form @@ -6039,7 +6012,7 @@ msgstr "Nome Report" #. module: base #: field:ir.module.module,shortdesc:0 msgid "Short Description" -msgstr "" +msgstr "Descrizione breve" #. module: base #: field:res.partner.event,partner_type:0 @@ -6059,7 +6032,7 @@ msgstr "Formato Orario 00->24: %(h24)s" #. module: base #: help:multi_company.default,field_id:0 msgid "Select field property" -msgstr "" +msgstr "Seleziona la propietà del campo" #. module: base #: field:res.request.history,date_sent:0 @@ -6088,12 +6061,12 @@ msgstr "Sequenza" #. module: base #: model:res.country,name:base.tn msgid "Tunisia" -msgstr "" +msgstr "Tunisia" #. module: base #: field:ir.actions.wizard,name:0 msgid "Wizard Info" -msgstr "" +msgstr "Informazioni procedura guidata" #. module: base #: help:ir.cron,numbercall:0 @@ -6129,7 +6102,7 @@ msgstr "Propensioni" #: model:ir.actions.act_window,name:base.action_country_state #: model:ir.ui.menu,name:base.menu_country_state_partner msgid "Fed. States" -msgstr "" +msgstr "Stati Federali" #. module: base #: view:ir.model:0 @@ -6150,7 +6123,7 @@ msgstr "Superiore" #. module: base #: view:multi_company.default:0 msgid "Returning" -msgstr "" +msgstr "Sto ritornando" #. module: base #: field:ir.actions.act_window,res_model:0 @@ -6166,7 +6139,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -6231,7 +6203,7 @@ msgstr "Tabulare" #. module: base #: field:ir.actions.todo,start_on:0 msgid "Start On" -msgstr "" +msgstr "Inizio a" #. module: base #: model:res.partner.category,name:base.res_partner_category_5 @@ -6305,7 +6277,7 @@ msgstr "Tutti i Termini" #. module: base #: model:res.country,name:base.no msgid "Norway" -msgstr "" +msgstr "Norvegia" #. module: base #: view:res.lang:0 @@ -6354,6 +6326,8 @@ msgid "" "If set to true, the wizard will not be displayed on the right toolbar of a " "form view." msgstr "" +"Se impostato a vero, la procedura guidata non verrà visualizzata nella barra " +"degli strumenti a destra nella vista: modulo." #. module: base #: selection:ir.ui.menu,icon:0 @@ -6422,18 +6396,18 @@ msgstr "SMS" #. module: base #: model:res.country,name:base.cr msgid "Costa Rica" -msgstr "" +msgstr "Costa Rica" #. module: base #: code:addons/base/maintenance/maintenance.py:0 #, python-format msgid "Your can't submit bug reports due to uncovered modules: %s" -msgstr "" +msgstr "Non puoi sottoporre report di errori dovuto a moduli non coperti: %s" #. module: base #: model:ir.actions.act_window,name:base.action_partner_other_form msgid "Other Partners" -msgstr "" +msgstr "Altri Partner" #. module: base #: view:ir.model:0 @@ -6461,7 +6435,7 @@ msgstr "Deseleziona il campo attivo per nascondere il contatto." #. module: base #: model:res.country,name:base.dk msgid "Denmark" -msgstr "" +msgstr "Danimarca" #. module: base #: field:res.country,code:0 @@ -6486,12 +6460,12 @@ msgstr "Signora" #. module: base #: model:res.country,name:base.ee msgid "Estonia" -msgstr "" +msgstr "Estonia" #. module: base #: model:res.country,name:base.nl msgid "Netherlands" -msgstr "" +msgstr "Olanda" #. module: base #: model:ir.ui.menu,name:base.next_id_4 @@ -6521,7 +6495,7 @@ msgstr "STOCK_ZOOM_FIT" #. module: base #: model:res.country,name:base.cd msgid "Congo, The Democratic Republic of the" -msgstr "" +msgstr "Repubblica Democratica del Congo" #. module: base #: view:res.request:0 @@ -6533,12 +6507,12 @@ msgstr "Richiesta" #. module: base #: model:res.country,name:base.jp msgid "Japan" -msgstr "" +msgstr "Giappone" #. module: base #: field:ir.cron,numbercall:0 msgid "Number of Calls" -msgstr "" +msgstr "Numero di chiamate" #. module: base #: wizard_view:module.lang.install,start:0 @@ -6578,7 +6552,7 @@ msgstr "Aggiungi Intestazione RML" #. module: base #: model:res.country,name:base.gr msgid "Greece" -msgstr "" +msgstr "Grecia" #. module: base #: field:res.request,trigger_date:0 @@ -6598,7 +6572,7 @@ msgstr "STOCK_GO_FORWARD" #. module: base #: help:ir.actions.server,code:0 msgid "Python code to be executed" -msgstr "" +msgstr "Codice python da eseguire" #. module: base #: selection:ir.module.module.dependency,state:0 @@ -6608,7 +6582,7 @@ msgstr "Disinstallabile" #. module: base #: view:res.partner.category:0 msgid "Partner Category" -msgstr "" +msgstr "Categoria Partner" #. module: base #: view:ir.actions.server:0 @@ -6720,7 +6694,7 @@ msgstr "" #. module: base #: field:res.partner.bank,acc_number:0 msgid "Account Number" -msgstr "" +msgstr "Numero conto" #. module: base #: view:res.lang:0 @@ -6741,12 +6715,12 @@ msgstr "" #. module: base #: model:res.country,name:base.nc msgid "New Caledonia (French)" -msgstr "" +msgstr "Nuova Caledonia (Francese)" #. module: base #: field:res.partner.function,name:0 msgid "Function Name" -msgstr "" +msgstr "Nome funzione" #. module: base #: view:maintenance.contract.wizard:0 @@ -6756,7 +6730,7 @@ msgstr "_Annulla" #. module: base #: model:res.country,name:base.cy msgid "Cyprus" -msgstr "" +msgstr "Cipro" #. module: base #: field:ir.actions.server,subject:0 @@ -6795,18 +6769,18 @@ msgstr "Transizioni in Ingresso" #. module: base #: model:res.country,name:base.cn msgid "China" -msgstr "" +msgstr "Cina" #. module: base #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "Password empty !" -msgstr "" +msgstr "Manca la Password !" #. module: base #: model:res.country,name:base.eh msgid "Western Sahara" -msgstr "" +msgstr "Sahara Occidentale" #. module: base #: model:ir.model,name:base.model_workflow @@ -6816,7 +6790,7 @@ msgstr "Workflow" #. module: base #: model:res.country,name:base.id msgid "Indonesia" -msgstr "" +msgstr "Indonesia" #. module: base #: selection:ir.actions.todo,start_on:0 @@ -6831,12 +6805,12 @@ msgstr "Scrivi Oggetto" #. module: base #: model:res.country,name:base.bg msgid "Bulgaria" -msgstr "" +msgstr "Bulgaria" #. module: base #: model:res.country,name:base.ao msgid "Angola" -msgstr "" +msgstr "Angola" #. module: base #: model:res.country,name:base.tf @@ -6914,7 +6888,7 @@ msgstr "child_of" #: view:res.users:0 #: field:res.users,company_ids:0 msgid "Accepted Companies" -msgstr "" +msgstr "Aziende accettate" #. module: base #: field:ir.report.custom.fields,operation:0 @@ -6936,7 +6910,7 @@ msgstr "Kiribati" #. module: base #: model:res.country,name:base.iq msgid "Iraq" -msgstr "" +msgstr "Iraq" #. module: base #: view:ir.actions.server:0 @@ -7025,7 +6999,7 @@ msgstr "Condizione" #. module: base #: model:res.country,name:base.zr msgid "Zaire" -msgstr "" +msgstr "Zaire" #. module: base #: field:ir.attachment,res_id:0 @@ -7090,7 +7064,7 @@ msgstr "Termini non tradotti" #. module: base #: wizard_view:module.lang.import,init:0 msgid "Import New Language" -msgstr "" +msgstr "Importa nuova lingua" #. module: base #: model:ir.actions.act_window,name:base.action_workflow_activity_form @@ -7118,7 +7092,7 @@ msgstr "=" #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Second field should be figures" -msgstr "" +msgstr "Il secondo campo dovrebbe contenere figure" #. module: base #: model:ir.actions.act_window,name:base.action_model_grid_security @@ -7142,7 +7116,7 @@ msgstr "Alta" #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" -msgstr "" +msgstr "Esporta" #. module: base #: help:res.bank,bic:0 @@ -7152,7 +7126,7 @@ msgstr "Codice Identificazione Banca" #. module: base #: model:res.country,name:base.tm msgid "Turkmenistan" -msgstr "" +msgstr "Turkmenistan" #. module: base #: model:res.country,name:base.pm @@ -7197,12 +7171,12 @@ msgstr "STOCK_CONVERT" #. module: base #: model:res.country,name:base.tz msgid "Tanzania" -msgstr "" +msgstr "Tanzania" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Danish / Dansk" -msgstr "" +msgstr "Danese / Danimarca" #. module: base #: model:res.country,name:base.cx @@ -7274,6 +7248,8 @@ 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 a Launchpad." #. module: base #: wizard_button:module.upgrade,end,config:0 @@ -7289,7 +7265,7 @@ msgstr "Catalan / Català" #. module: base #: model:res.country,name:base.do msgid "Dominican Republic" -msgstr "" +msgstr "Repubblica Dominicana" #. module: base #: selection:ir.ui.menu,icon:0 @@ -7299,13 +7275,13 @@ msgstr "STOCK_COLOR_PICKER" #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" -msgstr "" +msgstr "Arabia Saudita" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Bar charts need at least two fields" -msgstr "" +msgstr "I Grafici a Barre necessitano di almeno due campi" #. module: base #: help:res.partner,supplier:0 @@ -7330,7 +7306,7 @@ msgstr "Istanza Destinazione" #. module: base #: field:ir.actions.wizard,multi:0 msgid "Action on Multiple Doc." -msgstr "" +msgstr "Azione su doc. multipli" #. module: base #: view:wizard.module.lang.export:0 @@ -7350,12 +7326,12 @@ msgstr "Percorso XML" #. module: base #: model:res.country,name:base.gn msgid "Guinea" -msgstr "" +msgstr "Guinea" #. module: base #: model:res.country,name:base.lu msgid "Luxembourg" -msgstr "" +msgstr "Lussemburgo" #. module: base #: model:ir.actions.todo,note:base.config_wizard_step_user @@ -7378,7 +7354,7 @@ msgstr "Bassa" #. module: base #: view:ir.values:0 msgid "tree_but_action, client_print_multi" -msgstr "" +msgstr "tree_but_action, client_print_multi" #. module: base #: model:res.country,name:base.sv @@ -7399,7 +7375,7 @@ msgstr "Menu Accesso" #. module: base #: model:res.country,name:base.th msgid "Thailand" -msgstr "" +msgstr "Thailandia" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -7412,12 +7388,12 @@ msgstr ">" #. module: base #: field:ir.model.access,perm_unlink:0 msgid "Delete Permission" -msgstr "Cancella Autorizzazione" +msgstr "Permesso di cancellazione" #. module: base #: model:ir.model,name:base.model_multi_company_default msgid "multi_company.default" -msgstr "" +msgstr "multi_company.default" #. module: base #: selection:workflow.activity,join_mode:0 @@ -7446,7 +7422,7 @@ msgstr "<" #. module: base #: model:res.country,name:base.uz msgid "Uzbekistan" -msgstr "" +msgstr "Uzbekistan" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window @@ -7457,12 +7433,12 @@ msgstr "ir.actions.act_window" #. module: base #: model:res.country,name:base.vi msgid "Virgin Islands (USA)" -msgstr "" +msgstr "Isole Vergini (Stati Uniti d'America)" #. module: base #: model:res.country,name:base.tw msgid "Taiwan" -msgstr "" +msgstr "Taiwan" #. module: base #: view:ir.rule:0 @@ -7512,7 +7488,7 @@ msgstr "Visualizza Auto-Caricamento" #: model:ir.actions.act_window,name:base.action_partner_supplier_form #: view:res.partner:0 msgid "Suppliers" -msgstr "" +msgstr "Fornitori" #. module: base #: selection:ir.ui.menu,icon:0 @@ -7549,7 +7525,7 @@ msgstr "Stati" #. module: base #: view:multi_company.default:0 msgid "Matching" -msgstr "" +msgstr "Confronto" #. module: base #: field:ir.actions.configuration.wizard,name:0 @@ -7571,7 +7547,7 @@ msgstr "Accesso" #. module: base #: model:res.country,name:base.sk msgid "Slovak Republic" -msgstr "" +msgstr "Repubblica Slovacca" #. module: base #: model:res.country,name:base.aw @@ -7613,7 +7589,7 @@ msgstr "Aggiungere il contratto di manutenzione" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" -msgstr "" +msgstr "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" #. module: base #: field:ir.actions.act_window,limit:0 @@ -7624,12 +7600,12 @@ msgstr "Limite" #. module: base #: help:ir.actions.server,wkf_model_id:0 msgid "Workflow to be executed on this model." -msgstr "" +msgstr "Flusso di lavoro da eseguire su questo modello." #. module: base #: model:res.country,name:base.jm msgid "Jamaica" -msgstr "" +msgstr "Giamaica" #. module: base #: model:res.country,name:base.az @@ -7640,7 +7616,7 @@ msgstr "Azerbaijan" #: code:addons/base/res/partner/partner.py:0 #, python-format msgid "Warning" -msgstr "" +msgstr "Avviso" #. module: base #: selection:module.lang.install,init,lang:0 @@ -7655,7 +7631,7 @@ msgstr "Gibilterra" #. module: base #: model:res.country,name:base.vg msgid "Virgin Islands (British)" -msgstr "" +msgstr "Isole Vergini (Gran Bretagna)" #. module: base #: selection:ir.ui.menu,icon:0 @@ -7675,12 +7651,12 @@ msgstr "Wallis e Fortuna" #. module: base #: model:res.country,name:base.rw msgid "Rwanda" -msgstr "" +msgstr "Ruanda" #. module: base #: constraint:res.partner:0 msgid "The VAT doesn't seem to be correct." -msgstr "L'IVA non sembra essere corretta" +msgstr "La P.IVA non sembra essere corretta" #. module: base #: selection:ir.report.custom.fields,operation:0 @@ -7704,6 +7680,9 @@ msgid "" "invoice, then `object.invoice_address_id.mobile` is the field which gives " "the correct mobile number" msgstr "" +"Fornisce campi che possono essere usati per reperire il numero di celluare, " +"ad esempio: seleziona la fattura, poi 'object.invoice_address_id.mobile' è " +"il campo che da il corretto numero di cellulare" #. module: base #: field:ir.model.data,noupdate:0 @@ -7713,12 +7692,12 @@ msgstr "Non Aggiornabile" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Klingon" -msgstr "" +msgstr "Klingon" #. module: base #: model:res.country,name:base.sg msgid "Singapore" -msgstr "" +msgstr "Singapore" #. module: base #: selection:ir.actions.act_window,target:0 @@ -7770,12 +7749,12 @@ msgstr "Nome Categoria" #. module: base #: view:ir.actions.act_window:0 msgid "Select Groups" -msgstr "" +msgstr "Seleziona gruppi" #. module: base #: field:ir.sequence,weight:0 msgid "Weight" -msgstr "" +msgstr "Peso" #. module: base #: view:res.lang:0 @@ -7855,7 +7834,7 @@ msgstr "Procedure di Configurazione" #. module: base #: field:res.lang,code:0 msgid "Locale Code" -msgstr "" +msgstr "Codice Locale" #. module: base #: field:workflow.activity,split_mode:0 @@ -7875,7 +7854,7 @@ msgstr "Interfaccia Semplice" #. module: base #: model:res.country,name:base.cl msgid "Chile" -msgstr "" +msgstr "Cile" #. module: base #: selection:ir.ui.menu,icon:0 @@ -7913,7 +7892,7 @@ msgstr "Salva come Prefisso Allegato" #. module: base #: model:res.country,name:base.hr msgid "Croatia" -msgstr "" +msgstr "Croazia" #. module: base #: field:ir.actions.server,mobile:0 @@ -7945,16 +7924,10 @@ msgstr "a5" msgid "Seychelles" msgstr "Seychelles" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" -msgstr "" +msgstr "Sierra Leone" #. module: base #: view:res.company:0 @@ -7975,7 +7948,7 @@ msgstr "Turks e Caicos" #. module: base #: field:res.partner.bank,owner_name:0 msgid "Account Owner" -msgstr "" +msgstr "Titolare Conto" #. module: base #: field:ir.attachment,res_model:0 @@ -8020,12 +7993,12 @@ msgstr "Istanze Workflow" #: code:addons/base/res/partner/partner.py:0 #, python-format msgid "Partners: " -msgstr "" +msgstr "Partners: " #. module: base #: model:res.country,name:base.kp msgid "North Korea" -msgstr "" +msgstr "Corea del Nord" #. module: base #: view:ir.report.custom:0 @@ -8055,7 +8028,7 @@ msgstr "Polish / Język polski" #. module: base #: field:ir.exports,name:0 msgid "Export Name" -msgstr "" +msgstr "Nome esportato" #. module: base #: help:res.partner.address,type:0 @@ -8074,13 +8047,155 @@ msgstr "Scegli una lingua da installare" #. module: base #: model:res.country,name:base.lk msgid "Sri Lanka" -msgstr "" +msgstr "Sri Lanka" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Russian / русский язык" msgstr "Russian / русский язык" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "Non puoi avere due utenti con lo stesso nome di accesso!" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "La dimensione del campo non può mai essere minore a 1 !" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "Il collegamento per questo menù esiste già!" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" +"Non puoi avere record multipli con lo stesso ID per lo stesso modulo!" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "Il tuo contratto di manutenzione è già sottoscritto nel sistema!" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "Il nome del modulo deve essere unico!" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "L'ID del certificato del modulo deve essere unico!" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "Il codice della funzione Partner deve essere unica!" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "Il nome del Partner deve esser unico!" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "Il nome della nazione deve essere unico!" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "Il codice della Nazione deve essere unico!" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "Il nome della lingua deve essere unico!" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "Il codice della lingua deve essere unico!" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "Il nome del gruppo deve essere unico!" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "Errore nei Vincoli" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" +"L'operazione non può essere completata, probabilmente in seguito a:\n" +"- cancellazione: stai cercando di cancellare un record mentra altri record " +"sono referenziati a esso\n" +"- creazione/aggiornamento: un campo obbligatorio deve essere correttamente " +"impostato" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" +"\n" +"\n" +"[oggetto con referenza: %s - %s]" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "Errore di integrità" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "Errore dell'Utente" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "Il Linguaggio base 'en_US' non può essere eliminato !" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" +"Impossibile eliminare il linguaggio che corrisponde al Linguaggio Preferito " +"dell'Utente" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "" +"You cannot delete the language which is Active !\n" +"Please de-activate the language first." +msgstr "" +"Impossibile eliminare un linguaggio Attivo !\n" +"Disattiva il linguaggio prima di eliminarlo." + #~ msgid "Attached ID" #~ msgstr "ID Allegato" diff --git a/bin/addons/base/i18n/ja.po b/bin/addons/base/i18n/ja.po index 75f564da990..6be669380ff 100644 --- a/bin/addons/base/i18n/ja.po +++ b/bin/addons/base/i18n/ja.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2010-03-28 04:35+0000\n" +"PO-Revision-Date: 2010-09-09 06:58+0000\n" "Last-Translator: Harry (Open ERP) \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-03-29 03:45+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:44+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -249,11 +249,6 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "このルールは、少なくとも一つのテストが通ることで満たされます。" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -796,11 +791,6 @@ msgstr "" msgid "Website" msgstr "ウェブサイト" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "テスト" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1329,7 +1319,6 @@ msgstr "" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1378,10 +1367,7 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." msgstr "" #. module: base @@ -1430,11 +1416,6 @@ msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2144,11 +2125,6 @@ msgstr "" msgid "Countries" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2759,11 +2735,6 @@ msgstr "" msgid "Benin" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3083,7 +3054,6 @@ msgstr "" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3198,9 +3168,7 @@ 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" +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 @@ -3743,11 +3711,6 @@ msgstr "" msgid "ir.translation" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4075,11 +4038,6 @@ msgstr "" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4696,11 +4654,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4947,7 +4900,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6060,7 +6012,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7809,12 +7760,6 @@ msgstr "" msgid "Seychelles" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7942,3 +7887,130 @@ msgstr "" #: selection:module.lang.install,init,lang:0 msgid "Russian / русский язык" msgstr "" + +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" diff --git a/bin/addons/base/i18n/ko.po b/bin/addons/base/i18n/ko.po index eea2628578a..aafabe7154b 100644 --- a/bin/addons/base/i18n/ko.po +++ b/bin/addons/base/i18n/ko.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-01-14 04:46+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:44+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -254,11 +254,6 @@ msgstr "%y - 백자리 단위를 뺀 년도 표시 [00,99]." msgid "STOCK_GOTO_FIRST" msgstr "" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "이 규칙은 적어도 하나의 테스트가 참일 때 적용됩니다." - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -804,11 +799,6 @@ msgstr "" msgid "Website" msgstr "웹 사이트" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "테스트" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1338,7 +1328,6 @@ msgstr "갱신된 모듈들의 수" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1387,13 +1376,8 @@ msgstr "이 위저드는 어플리케이션의 새로운 용어들을 탐지하 #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." -msgstr "" -"리스트를 돌려 줄 필드/표현식을 입력하십시오. 가령, 오브젝트에서 판매 주문을 선택하면, 판매 주문 라인 상의 루프를 얻을 수 있습니다 " -"표현식 = `object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." +msgstr "리스트를 돌려 줄 필드/표현식을 입력하십시오. 가령, 오브젝트에서 판매 주문을 선택하면, 판매 주문 라인 상의 루프를 얻을 수 있습니다 표현식 = `object.order_line`." #. module: base #: selection:ir.translation,type:0 @@ -1441,11 +1425,6 @@ msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "오브젝트 이름은 x_로 시작해야 하며, 특수 문자가 포함되면 안됩니다." -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2155,11 +2134,6 @@ msgstr "역할" msgid "Countries" msgstr "국가들" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "기록 규칙" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2782,11 +2756,6 @@ msgstr "" msgid "Benin" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "이 규칙은 모든 테스트 결과가 참 (AND)일 때 적용됩니다." - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3106,7 +3075,6 @@ msgstr "" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3221,9 +3189,7 @@ 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" +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 @@ -3766,11 +3732,6 @@ msgstr "상속된 뷰" msgid "ir.translation" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4098,11 +4059,6 @@ msgstr "" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "동일 오브젝트에 대한 여러 규칙들은 OR 오퍼레이터로 연결됩니다." - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4724,11 +4680,6 @@ msgstr "재고_미디어_레코드" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "글로벌" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4975,7 +4926,6 @@ msgstr "컴포넌트 공급자" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6090,7 +6040,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7848,12 +7797,6 @@ msgstr "" msgid "Seychelles" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7982,6 +7925,133 @@ msgstr "" msgid "Russian / русский язык" msgstr "" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" + #, python-format #~ msgid "The unlink method is not implemented on this object !" #~ msgstr "링크해제 방법은 이 오브젝트에 적용되지 않습니다." diff --git a/bin/addons/base/i18n/lt.po b/bin/addons/base/i18n/lt.po index 3e1c6eb239f..80733609733 100644 --- a/bin/addons/base/i18n/lt.po +++ b/bin/addons/base/i18n/lt.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-01-14 04:47+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:44+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -248,11 +248,6 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -795,11 +790,6 @@ msgstr "" msgid "Website" msgstr "" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1326,7 +1316,6 @@ msgstr "" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1375,10 +1364,7 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." msgstr "" #. module: base @@ -1427,11 +1413,6 @@ msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2141,11 +2122,6 @@ msgstr "" msgid "Countries" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2756,11 +2732,6 @@ msgstr "" msgid "Benin" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3080,7 +3051,6 @@ msgstr "" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3195,9 +3165,7 @@ 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" +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 @@ -3740,11 +3708,6 @@ msgstr "" msgid "ir.translation" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4072,11 +4035,6 @@ msgstr "" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4693,11 +4651,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4944,7 +4897,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6057,7 +6009,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7806,12 +7757,6 @@ msgstr "" msgid "Seychelles" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7939,3 +7884,130 @@ msgstr "" #: selection:module.lang.install,init,lang:0 msgid "Russian / русский язык" msgstr "" + +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" diff --git a/bin/addons/base/i18n/lt_LT.po b/bin/addons/base/i18n/lt_LT.po index a4b2b6fd21a..7aee4518a19 100644 --- a/bin/addons/base/i18n/lt_LT.po +++ b/bin/addons/base/i18n/lt_LT.po @@ -238,11 +238,6 @@ msgstr "" msgid "Validated" msgstr "" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -779,11 +774,6 @@ msgstr "" msgid "Website" msgstr "" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1302,7 +1292,6 @@ msgstr "" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1392,11 +1381,6 @@ msgstr "" msgid "The Object name must start with x_ and not contain any special character !" msgstr "" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2091,11 +2075,6 @@ msgstr "" msgid "Countries" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2690,11 +2669,6 @@ msgstr "" msgid "Benin" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -2996,7 +2970,6 @@ msgstr "" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3060,8 +3033,7 @@ msgstr "" #. module: base #: code:addons/osv/orm.py:0 #, python-format -msgid "You try to write on an record that doesn\'t exist ' \\n" -" '(Document type: %s)." +msgid "You try to write on an record that doesn't exist\n(Document type: %s)." msgstr "" #. module: base @@ -3114,7 +3086,7 @@ msgstr "" #. module: base #: code:addons/addons/base/ir/ir_model.py:0 #, python-format -msgid "\"%s\" contains too many dots. XML ids should not contain dots ! These are used to refer to other modules data, as in module.reference_id" +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 @@ -3678,11 +3650,6 @@ msgstr "" msgid "Luxembourg" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -3968,11 +3935,6 @@ msgstr "" msgid "a4" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4627,11 +4589,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4861,7 +4818,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -5966,7 +5922,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7799,3 +7754,121 @@ msgstr "" msgid "Russian / русский язык" msgstr "" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "The operation cannot be completed, probably due to the following:\n- deletion: you may be trying to delete a record while other records still reference it\n- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "\n\n[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" diff --git a/bin/addons/base/i18n/lv.po b/bin/addons/base/i18n/lv.po index 757b2510492..32738b300ea 100644 --- a/bin/addons/base/i18n/lv.po +++ b/bin/addons/base/i18n/lv.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2010-01-04 06:03+0000\n" -"Last-Translator: Fabien (Open ERP) \n" +"PO-Revision-Date: 2010-10-13 07:41+0000\n" +"Last-Translator: Anup (OpenERP) \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-01-14 04:47+0000\n" +"X-Launchpad-Export-Date: 2010-10-14 04:44+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -176,7 +176,7 @@ msgstr "ir.report.custom.fields" #. module: base #: view:res.partner:0 msgid "Search Partner" -msgstr "" +msgstr "Meklēt Partneri" #. module: base #: code:addons/base/module/wizard/wizard_export_lang.py:0 @@ -258,11 +258,6 @@ msgstr "%y - Gads, neskaitot gadsimtu, kā decimālskaitlis [00,99]." msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Filtrs ir derīgs, ja vismaz viens notikums izpildās (True)." - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -419,7 +414,7 @@ msgstr "Kolumbija" #. module: base #: view:ir.module.module:0 msgid "Schedule Upgrade" -msgstr "" +msgstr "Ieplānot Jauninājumus" #. module: base #: field:ir.actions.report.custom,report_id:0 @@ -593,7 +588,7 @@ msgstr "," #. module: base #: view:res.partner:0 msgid "My Partners" -msgstr "" +msgstr "Mani Partneri" #. module: base #: model:res.country,name:base.es @@ -745,7 +740,7 @@ msgstr "Irāna" #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act msgid "My Requests" -msgstr "" +msgstr "Mani Pieprasījumi" #. module: base #: field:ir.sequence,name:0 @@ -816,11 +811,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "Tīkla vietne" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Pārbaudes" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1009,7 +999,7 @@ msgstr "STOCK_COPY" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "Model %s Does not Exist !" -msgstr "" +msgstr "Modelis %s neeksistē !" #. module: base #: code:addons/base/module/module.py:0 @@ -1137,7 +1127,7 @@ msgstr "Lietotāja Atskaite" #: code:addons/base/res/res_user.py:0 #, python-format msgid " (copy)" -msgstr "" +msgstr " (kopija)" #. module: base #: view:ir.sequence:0 @@ -1303,7 +1293,7 @@ msgstr "Copy text \t STOCK_PROPERTIES" #. module: base #: view:res.partner.address:0 msgid "Search Contact" -msgstr "" +msgstr "Meklēt Kontaktu" #. module: base #: view:ir.module.module:0 @@ -1356,7 +1346,6 @@ msgstr "Jaunināto moduļu skaits" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1463,11 +1452,6 @@ msgid "" msgstr "" "Objekta nosaukumam jāsākas ar x_ un tas nedrīkst saturēt speciālos simbolus!" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -1484,7 +1468,7 @@ msgstr "Esošā Likme" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Greek / Ελληνικά" -msgstr "" +msgstr "Grieķu / Ελληνικά" #. module: base #: view:ir.values:0 @@ -1565,7 +1549,7 @@ msgstr "Epasta Adrese" #. module: base #: selection:module.lang.install,init,lang:0 msgid "French (BE) / Français (BE)" -msgstr "" +msgstr "Franču (BE) / Français (BE)" #. module: base #: code:addons/base/ir/ir_model.py:0 @@ -1603,7 +1587,7 @@ msgstr "Lauka Sasaistes" #: model:ir.actions.act_window,name:base.res_request-closed #: model:ir.ui.menu,name:base.next_id_12_close msgid "My Closed Requests" -msgstr "" +msgstr "Mani Slēgie Pieprasījumi" #. module: base #: model:ir.ui.menu,name:base.menu_custom @@ -1861,7 +1845,7 @@ msgstr "Pieejas Kontrole" #: view:ir.module.module:0 #: field:ir.module.module,dependencies_id:0 msgid "Dependencies" -msgstr "Atkarīgie objekti" +msgstr "Atkarīgs no" #. module: base #: field:ir.report.custom.fields,bgcolor:0 @@ -1988,7 +1972,7 @@ msgstr "Modulis" #: model:ir.actions.act_window,name:base.action_res_bank_form #: model:ir.ui.menu,name:base.menu_action_res_bank_form msgid "Bank List" -msgstr "" +msgstr "Banku Saraksts" #. module: base #: field:ir.attachment,description:0 @@ -2186,11 +2170,6 @@ msgstr "Tiesības" msgid "Countries" msgstr "Valstis" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Ierakstu noteikumi" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2401,7 +2380,7 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_partner_customer_form #: view:res.partner:0 msgid "Customers" -msgstr "" +msgstr "Klienti" #. module: base #: model:res.country,name:base.au @@ -2603,7 +2582,7 @@ msgstr "STOCK_SAVE_AS" #. module: base #: selection:ir.translation,type:0 msgid "SQL Constraint" -msgstr "" +msgstr "SQL Ierobežojums" #. module: base #: field:ir.actions.server,srcmodel_id:0 @@ -2669,7 +2648,7 @@ msgstr "%c - Atbilstošais datuma un laika attēlojums." #. module: base #: selection:module.lang.install,init,lang:0 msgid "Finland / Suomi" -msgstr "" +msgstr "Somu / Suomi" #. module: base #: model:res.country,name:base.bo @@ -2824,11 +2803,6 @@ msgstr "Apmierinātība" msgid "Benin" msgstr "Benina" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "Noteikums ir pieņemts, ja visas pārbaudes atgriež True (AND)" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -2931,7 +2905,7 @@ msgstr "Likmes" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Albanian / Shqipëri" -msgstr "" +msgstr "Albāņu / Shqipëri" #. module: base #: model:res.country,name:base.sy @@ -3154,7 +3128,6 @@ msgstr "Kazahstāna" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3192,7 +3165,7 @@ msgstr "Demo dati" #. module: base #: selection:module.lang.install,init,lang:0 msgid "English (UK)" -msgstr "" +msgstr "Angļu (UK)" #. module: base #: model:res.country,name:base.aq @@ -3217,7 +3190,7 @@ msgstr "Tīmeklis" #. module: base #: selection:module.lang.install,init,lang:0 msgid "English (CA)" -msgstr "" +msgstr "Angļu (CA)" #. module: base #: field:res.partner.event,planned_revenue:0 @@ -3272,7 +3245,7 @@ msgstr "Grupēt pēc" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "" -"\"%s\" contains too many dots. XML ids should not contain dots ! These are " +"'%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 "" @@ -3460,7 +3433,7 @@ msgstr "Partnera Adreses" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Indonesian / Bahasa Indonesia" -msgstr "" +msgstr "Indonēziešu / Bahasa Indonesia" #. module: base #: model:res.country,name:base.cv @@ -3625,7 +3598,7 @@ msgstr "Izveidot darbību" #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "HTML from HTML" -msgstr "" +msgstr "HTML no HTML" #. module: base #: selection:ir.actions.report.xml,report_type:0 @@ -3818,11 +3791,6 @@ msgstr "Mantotais Skatījums" msgid "ir.translation" msgstr "ir.translation" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4086,7 +4054,7 @@ msgstr "Faila Formāts" #. module: base #: field:res.lang,iso_code:0 msgid "ISO code" -msgstr "" +msgstr "ISO kods" #. module: base #: model:ir.model,name:base.model_res_config_view @@ -4150,13 +4118,6 @@ msgstr "a4" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" -"Multi izpildes noteikumi vieniem un tiem pašiem objektiem, tiek apvienoti ar " -"operatoru OR" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4222,7 +4183,7 @@ msgstr "Izmainīt manus Uzstādījumus" #. module: base #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Procesa definīcijā nepareizs modeļa nosaukums." #. module: base #: wizard_field:res.partner.sms_send,init,text:0 @@ -4344,7 +4305,7 @@ msgstr "Objekta Lauks" #. module: base #: selection:module.lang.install,init,lang:0 msgid "French (CH) / Français (CH)" -msgstr "" +msgstr "Franču (CH) / Français (CH)" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4418,7 +4379,7 @@ msgstr "Atcelt atinstalāciju" #: view:res.partner:0 #: view:res.partner.address:0 msgid "Communication" -msgstr "" +msgstr "Saziņa" #. module: base #: model:ir.model,name:base.model_ir_server_object_lines @@ -4784,11 +4745,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "Reinjona" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Vispārēji" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -5037,7 +4993,6 @@ msgstr "Komponentu Piegādātājs" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6161,7 +6116,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -6981,7 +6935,7 @@ msgstr "(year)=" #. module: base #: rml:ir.module.reference:0 msgid "Dependencies :" -msgstr "Atkarīgie objekti:" +msgstr "Atkarīgs no:" #. module: base #: selection:ir.ui.menu,icon:0 @@ -7941,12 +7895,6 @@ msgstr "a5" msgid "Seychelles" msgstr "Seišelas" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -8077,6 +8025,135 @@ msgstr "Šrilanka" msgid "Russian / русский язык" msgstr "Krievu / русский язык" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "" +"You cannot delete the language which is Active !\n" +"Please de-activate the language first." +msgstr "" + #, python-format #~ msgid "The unlink method is not implemented on this object !" #~ msgstr "Objektam nav ieviesta atsaistes funkcija!" @@ -8277,3 +8354,12 @@ msgstr "Krievu / русский язык" #~ msgstr "" #~ "Padarīt noteikumus globālus, pretējā gadījumā tie jāpieliek lietotājam vai " #~ "grupai." + +#~ msgid "" +#~ "%%W - Week number of the year (Monday as the first day of the week) as a " +#~ "decimal number [00,53]. All days in a new year preceding the first Monday " +#~ "are considered to be in week 0." +#~ msgstr "" +#~ "%%W - gada nedēļas numurs kā decimāls skaitlis (pirmdiena kā pirmā nedēļas " +#~ "diena).Visas jauna gada dienas, kas iekrīt pirms pirmās pirmdienas tiek " +#~ "ieskaitītas 0 nedēļā." diff --git a/bin/addons/base/i18n/mn.po b/bin/addons/base/i18n/mn.po index 13ccfe38ac4..8c30a28818f 100644 --- a/bin/addons/base/i18n/mn.po +++ b/bin/addons/base/i18n/mn.po @@ -8,29 +8,29 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2009-12-01 06:09+0000\n" -"Last-Translator: Munkhbayar Batkhuu \n" +"PO-Revision-Date: 2010-10-12 08:01+0000\n" +"Last-Translator: ub121 \n" "Language-Team: Mongolian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-01-14 04:47+0000\n" +"X-Launchpad-Export-Date: 2010-10-13 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base #: model:res.country,name:base.sh msgid "Saint Helena" -msgstr "" +msgstr "Сэйнт Хелена" #. module: base #: wizard_view:res.partner.sms_send,init:0 msgid "SMS - Gateway: clickatell" -msgstr "" +msgstr "SMS - Gateway: clickatell" #. module: base #: view:res.lang:0 msgid "%j - Day of the year as a decimal number [001,366]." -msgstr "" +msgstr "%j - Жилийн өдрийн тоон дугаар [001,366]" #. module: base #: field:ir.values,meta_unpickle:0 @@ -41,18 +41,18 @@ msgstr "Толгойөгөгдөл" #: field:ir.ui.view,arch:0 #: field:ir.ui.view.custom,arch:0 msgid "View Architecture" -msgstr "" +msgstr "Харагдах байдал" #. module: base #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "You can not create this kind of document! (%s)" -msgstr "" +msgstr "Та (%s) төрлийн баримтыг үүсгэж чадахгүй!" #. module: base #: wizard_field:module.lang.import,init,code:0 msgid "Code (eg:en__US)" -msgstr "Code (eg:en__US)" +msgstr "Код (жш:en__US)" #. module: base #: view:workflow:0 @@ -64,7 +64,7 @@ msgstr "Ажлын урсгал" #. module: base #: view:wizard.module.lang.export:0 msgid "To browse official translations, you can visit this link: " -msgstr "" +msgstr "Албан ёсны орчуулгыг ачаалах бол уг линк-д зочилно уу: " #. module: base #: selection:module.lang.install,init,lang:0 @@ -94,7 +94,7 @@ msgstr "Жил тутмын" #. module: base #: field:ir.actions.act_window,target:0 msgid "Target Window" -msgstr "" +msgstr "Ашиглах цонх" #. module: base #: model:ir.actions.todo,note:base.config_wizard_simple_view @@ -107,6 +107,12 @@ msgid "" "understand. You will be able to switch to the extended view later.\n" " " msgstr "" +"Энгийн болон өргөтгөсөн интерфэйсээс сонгоно уу.\n" +"Хэрэв та OpenERP -г анх удаа хэрэглэж, туршиж байгаа бол бид\n" +"танд энгийн интерфэйс сонгохыг зөвлөж байна. Энэ нь цөөн хэрэглэгдэхүүн,\n" +"талбаруудтай бөгөөд энгийн ойлгомжтой байх болно. Харин дараа нь\n" +"өргөтгөсөн интерфэйсээр солих боломжтой юм.\n" +" " #. module: base #: field:ir.rule,operand:0 @@ -128,33 +134,33 @@ msgstr "Шилжилтүүд" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom msgid "ir.ui.view.custom" -msgstr "" +msgstr "ir.ui.view.custom" #. module: base #: model:res.country,name:base.sz msgid "Swaziland" -msgstr "Свазиленд" +msgstr "Швецарь" #. module: base #: model:ir.model,name:base.model_ir_actions_report_custom #: selection:ir.ui.menu,action:0 msgid "ir.actions.report.custom" -msgstr "" +msgstr "ir.actions.report.custom" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CANCEL" -msgstr "" +msgstr "STOCK_CANCEL" #. module: base #: field:ir.report.custom,sortby:0 msgid "Sorted By" -msgstr "" +msgstr "Эрэмбэлэлт" #. module: base #: field:ir.sequence,number_increment:0 msgid "Increment Number" -msgstr "" +msgstr "Өсөх тоон утга" #. module: base #: model:ir.actions.act_window,name:base.action_res_company_tree @@ -165,12 +171,12 @@ msgstr "Компанийн бүтэц" #. module: base #: model:ir.model,name:base.model_ir_report_custom_fields msgid "ir.report.custom.fields" -msgstr "" +msgstr "ir.report.custom.fields" #. module: base #: view:res.partner:0 msgid "Search Partner" -msgstr "" +msgstr "Харилцагч хайх" #. module: base #: code:addons/base/module/wizard/wizard_export_lang.py:0 @@ -181,28 +187,28 @@ msgstr "шинэ" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_TOP" -msgstr "" +msgstr "STOCK_GOTO_TOP" #. module: base #: field:ir.actions.report.custom,multi:0 #: field:ir.actions.report.xml,multi:0 msgid "On multiple doc." -msgstr "" +msgstr "Олон баримтаар" #. module: base #: field:ir.module.category,module_nr:0 msgid "Number of Modules" -msgstr "" +msgstr "Модулийн тоо" #. module: base #: field:res.partner.bank.type.field,size:0 msgid "Max. Size" -msgstr "" +msgstr "Дээд хэмжээ" #. module: base #: field:res.partner.address,name:0 msgid "Contact Name" -msgstr "" +msgstr "Харьцах хүн" #. module: base #: code:addons/base/module/wizard/wizard_export_lang.py:0 @@ -211,48 +217,45 @@ msgid "" "Save this document to a %s file and edit it with a specific software or a " "text editor. The file encoding is UTF-8." msgstr "" +"Энэ баримтыг %s файлд хадгалж улмаар текст засварлагч төрлийн програмаар " +"засварлана. Файлийн хэлбэржилт UTF-8." #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DELETE" -msgstr "" +msgstr "STOCK_DELETE" #. module: base #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "Password mismatch !" -msgstr "" +msgstr "Нууц үг буруу !" #. module: base #: code:addons/base/module/module.py:0 #, python-format msgid "This url '%s' must provide an html file with links to zip modules" -msgstr "" +msgstr "'%s' нь zip модуль руу заасан холбоосууд бүхий html файл байх ёстой" #. module: base #: selection:res.request,state:0 msgid "active" -msgstr "" +msgstr "идэвхитэй" #. module: base #: field:ir.actions.wizard,wiz_name:0 msgid "Wizard Name" -msgstr "" +msgstr "Визардын нэр" #. module: base #: view:res.lang:0 msgid "%y - Year without century as a decimal number [00,99]." -msgstr "" +msgstr "%y - Мянгатын оронгүй жилийн тоон дугаар [00,99]" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_FIRST" -msgstr "" - -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "" +msgstr "STOCK_GOTO_FIRST" #. module: base #: selection:ir.report.custom.fields,operation:0 @@ -262,91 +265,91 @@ msgstr "" #. module: base #: help:ir.actions.act_window,limit:0 msgid "Default limit for the list view" -msgstr "" +msgstr "Жагсаалт харагдацын бичлэгийн хязгаар (Заяамал:)" #. module: base #: field:ir.model.data,date_update:0 msgid "Update Date" -msgstr "" +msgstr "Шинэчлэлийн огноо" #. module: base #: field:ir.actions.act_window,src_model:0 msgid "Source Object" -msgstr "" +msgstr "Эх обьект" #. module: base #: model:ir.actions.act_window,name:base.act_ir_actions_todo_form #: view:ir.actions.todo:0 #: model:ir.ui.menu,name:base.menu_ir_actions_todo_form msgid "Config Wizard Steps" -msgstr "" +msgstr "Тохиргооны визардын алхамууд" #. module: base #: model:ir.model,name:base.model_ir_ui_view_sc msgid "ir.ui.view_sc" -msgstr "" +msgstr "ir.ui.view_sc" #. module: base #: field:ir.model.access,group_id:0 #: field:ir.rule,rule_group:0 msgid "Group" -msgstr "" +msgstr "Групп" #. module: base #: field:ir.exports.line,name:0 #: field:ir.translation,name:0 #: field:res.partner.bank.type.field,name:0 msgid "Field Name" -msgstr "" +msgstr "Талбарын нэр" #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_uninstall #: model:ir.ui.menu,name:base.menu_module_tree_uninstall msgid "Uninstalled modules" -msgstr "" +msgstr "Суулгаагүй модулиуд" #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "txt" -msgstr "" +msgstr "txt" #. module: base #: wizard_view:server.action.create,init:0 #: wizard_field:server.action.create,init,type:0 msgid "Select Action Type" -msgstr "" +msgstr "Үйлдлийн төрлийг сонгох" #. module: base #: selection:ir.actions.todo,type:0 msgid "Configure" -msgstr "" +msgstr "Тохируулах" #. module: base #: model:res.country,name:base.tv msgid "Tuvalu" -msgstr "" +msgstr "Тували" #. module: base #: selection:ir.model,state:0 #: selection:ir.model.grid,state:0 msgid "Custom Object" -msgstr "" +msgstr "Нэмэлт Обьект" #. module: base #: field:res.lang,date_format:0 msgid "Date Format" -msgstr "" +msgstr "Огнооны хэлбэр" #. module: base #: field:res.bank,email:0 #: field:res.partner.address,email:0 msgid "E-Mail" -msgstr "" +msgstr "И-Мэйл" #. module: base #: model:res.country,name:base.an msgid "Netherlands Antilles" -msgstr "" +msgstr "Нидерландын Антилын арлууд" #. module: base #: code:addons/base/res/res_user.py:0 @@ -355,21 +358,23 @@ 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 #: model:res.country,name:base.gf msgid "French Guyana" -msgstr "" +msgstr "Франц Гуана" #. module: base #: field:ir.ui.view.custom,ref_id:0 msgid "Original View" -msgstr "" +msgstr "Ориг харагдац" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Bosnian / bosanski jezik" -msgstr "" +msgstr "Босний / bosanski jezik" #. module: base #: help:ir.actions.report.xml,attachment_use:0 @@ -377,41 +382,43 @@ msgid "" "If you check this, then the second time the user prints with same attachment " "name, it returns the previous report." msgstr "" +"Хэрэв та үүнийг сонговол дараагийн удаа ижил нэртэй баримт хэвлэхэд өмнө нь " +"хэвлэж байсан баримт хэвлэгдэнэ." #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" -msgstr "" +msgstr "Энэ ISO код болвоос орчуулгад тухайн po файлын нэр болж хэрэглэгдэнэ" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" -msgstr "" +msgstr "STOCK_MEDIA_REWIND" #. module: base #: field:ir.actions.todo,note:0 msgid "Text" -msgstr "" +msgstr "Текст" #. module: base #: field:res.country,name:0 msgid "Country Name" -msgstr "" +msgstr "Улсын нэр" #. module: base #: model:res.country,name:base.coreturn msgid "Colombia" -msgstr "" +msgstr "Колумб" #. module: base #: view:ir.module.module:0 msgid "Schedule Upgrade" -msgstr "" +msgstr "Шинэчлэл төлөвлөлт" #. module: base #: field:ir.actions.report.custom,report_id:0 msgid "Report Ref." -msgstr "" +msgstr "Тайлангийн дугаар" #. module: base #: help:res.country,code:0 @@ -419,82 +426,84 @@ msgid "" "The ISO country code in two chars.\n" "You can use this field for quick search." msgstr "" +"Улсын ISO код нь хоёр тэмдэгт байна.\n" +"Та үүнийг хурдан хайлтад хэрэглэх боломжтой" #. module: base #: selection:workflow.activity,join_mode:0 #: selection:workflow.activity,split_mode:0 msgid "Xor" -msgstr "" +msgstr "Xor" #. module: base #: view:res.partner:0 msgid "Sales & Purchases" -msgstr "" +msgstr "Борлуулалт & Худалдан авалт" #. module: base #: view:ir.actions.wizard:0 #: field:wizard.ir.model.menu.create.line,wizard_id:0 msgid "Wizard" -msgstr "" +msgstr "Визард" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CUT" -msgstr "" +msgstr "STOCK_CUT" #. module: base #: model:ir.actions.act_window,name:base.ir_action_wizard #: view:ir.actions.wizard:0 #: model:ir.ui.menu,name:base.menu_ir_action_wizard msgid "Wizards" -msgstr "" +msgstr "Визардууд" #. module: base #: selection:res.config.view,view:0 msgid "Extended Interface" -msgstr "" +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 "" +msgstr "Нэмэлт талбарын нэр нь 'x_' -аар эхэлсэн байх ёстой !" #. module: base #: help:ir.actions.server,action_id:0 msgid "Select the Action Window, Report, Wizard to be executed." -msgstr "" +msgstr "Ачаалах гэж буй Цонх, Тайлан, Визардаа сонгоно уу." #. module: base #: view:wizard.module.lang.export:0 msgid "Export done" -msgstr "" +msgstr "Экспорт дууслаа" #. module: base #: view:ir.model:0 msgid "Model Description" -msgstr "" +msgstr "Моделийн тайлбар" #. module: base #: field:workflow.transition,trigger_expr_id:0 msgid "Trigger Expression" -msgstr "" +msgstr "Гох илэрхийлэл" #. module: base #: model:res.country,name:base.jo msgid "Jordan" -msgstr "" +msgstr "Иордан" #. module: base #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "You can not remove the model '%s' !" -msgstr "" +msgstr "Та '%s' моделийг устгах боломжгүй !" #. module: base #: model:res.country,name:base.er msgid "Eritrea" -msgstr "" +msgstr "Эритрея" #. module: base #: view:res.config.view:0 @@ -504,48 +513,48 @@ msgstr "" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Bulgarian / български" -msgstr "" +msgstr "Балгарияа" #. module: base #: model:ir.model,name:base.model_ir_actions_actions msgid "ir.actions.actions" -msgstr "" +msgstr "ir.actions.actions" #. module: base #: model:ir.actions.act_window,name:base.action_report_custom #: view:ir.report.custom:0 msgid "Custom Report" -msgstr "" +msgstr "Нэмэлт Тайлан" #. module: base #: selection:ir.report.custom,type:0 msgid "Bar Chart" -msgstr "" +msgstr "Баганан диаграм" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DIALOG_ERROR" -msgstr "" +msgstr "STOCK_DIALOG_ERROR" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_INDEX" -msgstr "" +msgstr "STOCK_INDEX" #. module: base #: model:res.country,name:base.rs msgid "Serbia" -msgstr "" +msgstr "Серби" #. module: base #: selection:ir.translation,type:0 msgid "Wizard View" -msgstr "" +msgstr "Визард харагдац" #. module: base #: model:res.country,name:base.kh msgid "Cambodia, Kingdom of" -msgstr "" +msgstr "Камбож, Хаант улс" #. module: base #: model:ir.actions.act_window,name:base.ir_sequence_form @@ -553,95 +562,95 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_ir_sequence_form #: model:ir.ui.menu,name:base.next_id_5 msgid "Sequences" -msgstr "" +msgstr "Дугаарлалт" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DIALOG_QUESTION" -msgstr "" +msgstr "STOCK_DIALOG_QUESTION" #. module: base #: model:res.country,name:base.pg msgid "Papua New Guinea" -msgstr "" +msgstr "Папуа Шинэ Гвиней" #. module: base #: model:res.partner.category,name:base.res_partner_category_4 msgid "Basic Partner" -msgstr "" +msgstr "Үндсэн харилцагч" #. module: base #: rml:ir.module.reference:0 msgid "," -msgstr "" +msgstr "," #. module: base #: view:res.partner:0 msgid "My Partners" -msgstr "" +msgstr "Миний харилцагчид" #. module: base #: model:res.country,name:base.es msgid "Spain" -msgstr "" +msgstr "Испани" #. module: base #: wizard_view:module.upgrade,end:0 #: wizard_view:module.upgrade,start:0 msgid "You may have to reinstall some language pack." -msgstr "" +msgstr "Хэлний зарим багцыг дахин суулгах хэрэгтэй" #. module: base #: field:res.partner.address,mobile:0 msgid "Mobile" -msgstr "" +msgstr "Гар утас" #. module: base #: model:res.country,name:base.om msgid "Oman" -msgstr "" +msgstr "Оман" #. module: base #: model:ir.actions.act_window,name:base.action_payterm_form #: model:ir.model,name:base.model_res_payterm msgid "Payment term" -msgstr "" +msgstr "Төлбөрийн нөхцөл" #. module: base #: model:res.country,name:base.nu msgid "Niue" -msgstr "" +msgstr "Niue" #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" -msgstr "" +msgstr "Ажиллах хоног" #. module: base #: help:ir.values,action_id:0 msgid "This field is not used, it only helps you to select the right action." -msgstr "" +msgstr "Энэ талбар хэрэглэгдэхгүй, зөвхөн танд зөв үйлдэл хийхэд тусална." #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 msgid "Create Menu" -msgstr "" +msgstr "Цэс үүсгэх" #. module: base #: model:res.country,name:base.in msgid "India" -msgstr "" +msgstr "Энэтхэг" #. module: base #: model:ir.model,name:base.model_maintenance_contract_module msgid "maintenance contract modules" -msgstr "" +msgstr "Засвар үйлчилгээний гэрээтэй модулиуд" #. module: base #: view:ir.values:0 msgid "client_action_multi, client_action_relate" -msgstr "" +msgstr "client_action_multi, client_action_relate" #. module: base #: model:res.country,name:base.ad @@ -652,22 +661,22 @@ msgstr "" #: field:ir.module.category,child_ids:0 #: field:res.partner.category,child_ids:0 msgid "Child Categories" -msgstr "" +msgstr "Дэд ангилалууд" #. module: base #: selection:wizard.module.lang.export,format:0 msgid "TGZ Archive" -msgstr "" +msgstr "TGZ Архив" #. module: base #: field:res.partner.som,factor:0 msgid "Factor" -msgstr "" +msgstr "Коэффицент" #. module: base #: view:res.lang:0 msgid "%B - Full month name." -msgstr "" +msgstr "%B - Сарын бүтэн нэр." #. module: base #: field:ir.actions.report.xml,report_type:0 @@ -677,100 +686,100 @@ msgstr "" #: field:ir.values,key:0 #: view:res.partner:0 msgid "Type" -msgstr "" +msgstr "Төрөл" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" -msgstr "" +msgstr "STOCK_FILE" #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" -msgstr "" +msgstr "Гуам (USA)" #. module: base #: model:ir.model,name:base.model_ir_model_grid msgid "Objects Security Grid" -msgstr "" +msgstr "Обьект хандалтын хүснэгт" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GO_DOWN" -msgstr "" +msgstr "STOCK_GO_DOWN" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_OK" -msgstr "" +msgstr "STOCK_OK" #. module: base #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 msgid "Dummy" -msgstr "" +msgstr "Хиймэл" #. module: base #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" -msgstr "" +msgstr "Дэлгэцийн XML алдаатай!" #. module: base #: model:res.country,name:base.ky msgid "Cayman Islands" -msgstr "" +msgstr "Кайманы арлууд" #. module: base #: model:res.country,name:base.ir msgid "Iran" -msgstr "" +msgstr "Иран" #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act msgid "My Requests" -msgstr "" +msgstr "Миний хүсэлтүүд" #. module: base #: field:ir.sequence,name:0 #: field:ir.sequence.type,name:0 msgid "Sequence Name" -msgstr "" +msgstr "Дугаарлалтын нэр" #. module: base #: model:res.country,name:base.td msgid "Chad" -msgstr "" +msgstr "Чад" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Spanish (AR) / Español (AR)" -msgstr "" +msgstr "Испани" #. module: base #: model:res.country,name:base.ug msgid "Uganda" -msgstr "" +msgstr "Уганда" #. module: base #: model:res.country,name:base.ne msgid "Niger" -msgstr "" +msgstr "Негр" #. module: base #: model:res.country,name:base.ba msgid "Bosnia-Herzegovina" -msgstr "" +msgstr "Босни-Герцоговин" #. module: base #: field:ir.report.custom.fields,alignment:0 msgid "Alignment" -msgstr "" +msgstr "Зэрэгцүүлэлт" #. module: base #: selection:ir.rule,operator:0 msgid ">=" -msgstr "" +msgstr ">=" #. module: base #: view:res.lang:0 @@ -779,32 +788,30 @@ msgid "" "decimal number [00,53]. All days in a new year preceding the first Monday " "are considered to be in week 0." msgstr "" +"%W - Жилийн хэддэх долоо хоног болохыг илтгэх тоо (Даваа гарагаас эхэлж " +"тоолно) [00,53]. Даваа гарагаас өмнөх жилийн эхний өдрүүд нь 0 -р долоо " +"хоногт тооцогдоно." #. module: base #: field:res.partner.event,planned_cost:0 msgid "Planned Cost" -msgstr "" +msgstr "Төлөвлөсөн өртөг" #. module: base #: model:ir.model,name:base.model_ir_model_config msgid "ir.model.config" -msgstr "" +msgstr "ir.model.config" #. module: base #: field:ir.module.module,website:0 #: field:res.partner,website:0 msgid "Website" -msgstr "" - -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "" +msgstr "Вэбсайт" #. module: base #: view:ir.module.repository:0 msgid "Repository" -msgstr "" +msgstr "Агуулах" #. module: base #: model:res.country,name:base.gs @@ -814,58 +821,58 @@ msgstr "" #. module: base #: field:ir.actions.url,url:0 msgid "Action URL" -msgstr "" +msgstr "Үйлдлийн URL" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_JUSTIFY_FILL" -msgstr "" +msgstr "STOCK_JUSTIFY_FILL" #. module: base #: model:res.country,name:base.mh msgid "Marshall Islands" -msgstr "" +msgstr "Маршалын арлууд" #. module: base #: model:res.country,name:base.ht msgid "Haiti" -msgstr "" +msgstr "Гаити" #. module: base #: selection:ir.translation,type:0 msgid "RML" -msgstr "" +msgstr "RML" #. module: base #: selection:ir.ui.view,type:0 msgid "Search" -msgstr "" +msgstr "Хайлт" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Pie charts need exactly two fields" -msgstr "" +msgstr "Дугуй диаграмд яг хоёр талбар шаардлагатай" #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." -msgstr "" +msgstr "Шинэ хэл экспортлох бол хэл сонгох хэрэггүй." #. module: base #: model:res.country,name:base.md msgid "Moldavia" -msgstr "" +msgstr "Малдив" #. module: base #: view:ir.module.module:0 msgid "Features" -msgstr "" +msgstr "Чанарууд" #. module: base #: field:ir.report.custom,frequency:0 msgid "Frequency" -msgstr "" +msgstr "Давтамж" #. module: base #: field:ir.report.custom.fields,fc0_op:0 @@ -873,37 +880,37 @@ msgstr "" #: field:ir.report.custom.fields,fc2_op:0 #: field:ir.report.custom.fields,fc3_op:0 msgid "Relation" -msgstr "" +msgstr "Холбоос" #. module: base #: field:ir.model.access,perm_read:0 msgid "Read Access" -msgstr "" +msgstr "Унших эрх" #. module: base #: model:ir.model,name:base.model_ir_exports msgid "ir.exports" -msgstr "" +msgstr "ir.exports" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MISSING_IMAGE" -msgstr "" +msgstr "STOCK_MISSING_IMAGE" #. module: base #: view:res.users:0 msgid "Define New Users" -msgstr "" +msgstr "Шинэ хэрэглэгч тодорхойлох" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REMOVE" -msgstr "" +msgstr "STOCK_REMOVE" #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "raw" -msgstr "" +msgstr "түүхий" #. module: base #: help:ir.actions.server,email:0 @@ -912,81 +919,84 @@ msgid "" "you select the invoice, then `object.invoice_address_id.email` is the field " "which gives the correct address" msgstr "" +"Эдгээр талбарууд и-мэйл хаяг тодорхойлоход хэрэглэгдэнэ. Жш: хэрэв та " +"нэхэмжлэл дээр сонговол `object.invoice_address_id.email` талбар нь тохирох " +"и-мэйл хаягыг өгнө." #. module: base #: field:res.roles,name:0 msgid "Role Name" -msgstr "" +msgstr "Дүрийн нэр" #. module: base #: field:res.partner,user_id:0 msgid "Dedicated Salesman" -msgstr "" +msgstr "Харилцах борлуулагч" #. module: base #: rml:ir.module.reference:0 msgid "-" -msgstr "" +msgstr "-" #. module: base #: field:res.payterm,name:0 msgid "Payment Term (short name)" -msgstr "" +msgstr "Төлбөрийн нөхцөл (богино нэр)" #. module: base #: model:ir.model,name:base.model_res_bank #: view:res.bank:0 #: field:res.partner.bank,bank:0 msgid "Bank" -msgstr "" +msgstr "Банк" #. module: base #: view:res.lang:0 msgid "Examples" -msgstr "" +msgstr "Жишээ" #. module: base #: field:ir.module.module,reports_by_module:0 msgid "Reports" -msgstr "" +msgstr "Тайлангууд" #. module: base #: field:workflow,on_create:0 msgid "On Create" -msgstr "" +msgstr "Үүсгэх үед" #. module: base #: wizard_view:base.module.import,init:0 msgid "Please give your module .ZIP file to import." -msgstr "" +msgstr "Импорт хийх модулийн .ZIP файлыг оруулна уу." #. module: base #: field:ir.default,value:0 msgid "Default Value" -msgstr "" +msgstr "Заяамал утга" #. module: base #: wizard_field:res.partner.sms_send,init,user:0 #: field:res.users,login:0 msgid "Login" -msgstr "" +msgstr "Нэвтрэх" #. module: base #: view:maintenance.contract:0 #: field:maintenance.contract,module_ids:0 msgid "Covered Modules" -msgstr "" +msgstr "Хаалттай модулиуд" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" -msgstr "" +msgstr "STOCK_COPY" #. module: base #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "Model %s Does not Exist !" -msgstr "" +msgstr "Модел %s алга байна !" #. module: base #: code:addons/base/module/module.py:0 @@ -995,94 +1005,97 @@ msgid "" "You try to install the module '%s' that depends on the module:'%s'.\n" "But this module is not available in your system." msgstr "" +"Таны суулгах гэж оролдож буй '%s' модуль өөр модультай холбогдож ажиллана: " +"'%s'.\n" +"Гэвч тэр модуль нь таны системээс олдохгүй байна." #. module: base #: model:ir.model,name:base.model_res_request_link msgid "res.request.link" -msgstr "" +msgstr "res.request.link" #. module: base #: wizard_button:module.module.update,init,update:0 msgid "Check new modules" -msgstr "" +msgstr "Шинэ модуль шалгах" #. module: base #: model:res.country,name:base.km msgid "Comoros" -msgstr "" +msgstr "Коморск" #. module: base #: model:ir.actions.act_window,name:base.action_server_action #: view:ir.actions.server:0 #: model:ir.ui.menu,name:base.menu_server_action msgid "Server Actions" -msgstr "" +msgstr "Сервер үйлдлүүд" #. module: base #: model:res.country,name:base.tp msgid "East Timor" -msgstr "" +msgstr "Зүүн Тимор" #. module: base #: view:ir.rule:0 msgid "Simple domain setup" -msgstr "" +msgstr "Энгийн домэйний тохиргоо" #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" -msgstr "" +msgstr "Орон тооцооллын нарийвчлал" #. module: base #: model:res.country,name:base.kg msgid "Kyrgyz Republic (Kyrgyzstan)" -msgstr "" +msgstr "Киргизстан" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create_line msgid "wizard.ir.model.menu.create.line" -msgstr "" +msgstr "wizard.ir.model.menu.create.line" #. module: base #: view:ir.sequence:0 msgid "Day: %(day)s" -msgstr "" +msgstr "Өдөр: %(day)s" #. module: base #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "You can not read this document! (%s)" -msgstr "" +msgstr "Та энэ баримтыг унших эрхгүй! (%s)" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FIND_AND_REPLACE" -msgstr "" +msgstr "STOCK_FIND_AND_REPLACE" #. module: base #: model:res.country,name:base.mv msgid "Maldives" -msgstr "" +msgstr "Мальдив" #. module: base #: help:ir.values,res_id:0 msgid "Keep 0 if the action must appear on all resources." -msgstr "" +msgstr "Уг үйлдэл бүх өгөгдөлд нөлөөлөх бол 0 хэвээр нь үлдээ." #. module: base #: model:ir.model,name:base.model_ir_rule msgid "ir.rule" -msgstr "" +msgstr "ir.rule" #. module: base #: selection:ir.cron,interval_type:0 msgid "Days" -msgstr "" +msgstr "Өдөр" #. module: base #: field:ir.report.custom.fields,width:0 msgid "Fixed Width" -msgstr "" +msgstr "Тогтмол өргөн" #. module: base #: model:res.company,overdue_msg:base.main_company @@ -1095,12 +1108,12 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-calendar" -msgstr "" +msgstr "terp-calendar" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_YES" -msgstr "" +msgstr "STOCK_YES" #. module: base #: model:ir.actions.act_window,name:base.ir_action_report_custom @@ -1114,22 +1127,22 @@ msgstr "" #: code:addons/base/res/res_user.py:0 #, python-format msgid " (copy)" -msgstr "" +msgstr " (Хуулах)" #. module: base #: view:ir.sequence:0 msgid "Year without century: %(y)s" -msgstr "" +msgstr "Мянгатын оронгүй жил: %(y)s" #. module: base #: view:res.lang:0 msgid "7. %H:%M:%S ==> 18:25:20" -msgstr "" +msgstr "7. %H:%M:%S ==> 18:25:20" #. module: base #: help:res.users,company_id:0 msgid "The company this user is currently working on." -msgstr "" +msgstr "Уг хэрэглэгчийн одоогийн ажиллаж буй компани." #. module: base #: help:ir.actions.server,message:0 @@ -1137,16 +1150,18 @@ msgid "" "Specify the message. You can use the fields from the object. e.g. `Dear [[ " "object.partner_id.name ]]`" msgstr "" +"Зурвас тодорхойлох. Та обьектын талбарыг ашиглах боломжтой. Жш: `Хүндэт [[ " +"object.partner_id.name ]]`" #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" -msgstr "" +msgstr "Триггер нэр" #. module: base #: model:ir.model,name:base.model_ir_model_access msgid "ir.model.access" -msgstr "" +msgstr "ir.model.access" #. module: base #: field:ir.cron,priority:0 @@ -1154,58 +1169,58 @@ msgstr "" #: field:res.request,priority:0 #: field:res.request.link,priority:0 msgid "Priority" -msgstr "" +msgstr "Урьтамж" #. module: base #: field:workflow.transition,act_from:0 msgid "Source Activity" -msgstr "" +msgstr "Эх ажилбар" #. module: base #: view:ir.sequence:0 msgid "Legend (for prefix, suffix)" -msgstr "" +msgstr "Тайлбар (угтвар, дагавар)" #. module: base #: selection:ir.server.object.lines,type:0 msgid "Formula" -msgstr "" +msgstr "Томьёолол" #. module: base #: code:addons/base/res/res_user.py:0 #, python-format msgid "Can not remove root user!" -msgstr "" +msgstr "Супер хэрэглэгчийг устгах боломжгүй!" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_JUSTIFY_LEFT" -msgstr "" +msgstr "STOCK_JUSTIFY_LEFT" #. module: base #: model:res.country,name:base.mw msgid "Malawi" -msgstr "" +msgstr "Малави" #. module: base #: field:res.partner.address,type:0 msgid "Address Type" -msgstr "" +msgstr "Хаягийн төрөл" #. module: base #: selection:ir.actions.todo,start_on:0 msgid "Auto" -msgstr "" +msgstr "Автомат" #. module: base #: view:res.request:0 msgid "End of Request" -msgstr "" +msgstr "Хүсэлтийн төгсгөл" #. module: base #: view:res.request:0 msgid "References" -msgstr "" +msgstr "Дугаар" #. module: base #: view:res.lang:0 @@ -1214,11 +1229,14 @@ msgid "" "decimal number [00,53]. All days in a new year preceding the first Sunday " "are considered to be in week 0." msgstr "" +"%U - Жилийн хэддэх долоо хоног болохыг илтгэх тоо (Ням гарагаас эхэлж " +"тоолно) [00,53]. Ням гарагаас өмнөх жилийн эхний өдрүүд нь 0 -р долоо хоногт " +"тооцогдоно." #. module: base #: wizard_view:module.lang.install,init:0 msgid "Note that this operation may take a few minutes." -msgstr "" +msgstr "Энэ үйлдэл бага зэрэг хугацаа авч магадгүй." #. module: base #: help:ir.sequence,condition:0 @@ -1226,6 +1244,8 @@ msgid "" "If set, sequence will only be used in case this python expression matches, " "and will precede other sequences." msgstr "" +"Хэрэв утга оноовол дугаарлалт нь зөвхөн уг python нөхцөл биелсэн үед " +"хэрэглэгдэнэ. Биелэхгүй тохиолдолд бусад дугаарлалтууд хэрэглэгдэнэ." #. module: base #: selection:ir.actions.act_window,view_type:0 @@ -1233,70 +1253,70 @@ msgstr "" #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Tree" -msgstr "" +msgstr "Мод" #. module: base #: view:maintenance.contract.wizard:0 msgid "Could you check your contract information ?" -msgstr "" +msgstr "Гэрээний мэдээллээ шалгах уу?" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CLEAR" -msgstr "" +msgstr "STOCK_CLEAR" #. module: base #: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." -msgstr "" +msgstr "Уг хэрэглэгчийг системд нэвтрүүлэхгүй байх бол хоосон орхионо уу." #. module: base #: field:ir.actions.act_window,view_mode:0 #: field:res.config.view,view:0 msgid "View Mode" -msgstr "" +msgstr "Харагдах горим" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Spanish / Español" -msgstr "" +msgstr "Испани" #. module: base #: field:res.company,logo:0 msgid "Logo" -msgstr "" +msgstr "Лого" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PROPERTIES" -msgstr "" +msgstr "STOCK_PROPERTIES" #. module: base #: view:res.partner.address:0 msgid "Search Contact" -msgstr "" +msgstr "Хүн хайх" #. module: base #: view:ir.module.module:0 msgid "Uninstall (beta)" -msgstr "" +msgstr "Арилгах (beta)" #. module: base #: selection:ir.actions.act_window,target:0 #: selection:ir.actions.url,target:0 msgid "New Window" -msgstr "" +msgstr "Шинэ цонх" #. module: base #: model:res.country,name:base.bs msgid "Bahamas" -msgstr "" +msgstr "Багамийн арлууд" #. module: base #: selection:res.partner.event,partner_type:0 msgid "Commercial Prospect" -msgstr "" +msgstr "Алс хэтийн худалдаа" #. module: base #: code:addons/base/res/partner/partner.py:0 @@ -1304,21 +1324,23 @@ msgstr "" msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" msgstr "" +"Зарим харилцагч үсгэн id-тай байгаа учраас дараагийн id-г үүсгэж чадахгүй " +"байна!" #. module: base #: view:ir.attachment:0 msgid "Attachment" -msgstr "" +msgstr "Хавсралт" #. module: base #: model:res.country,name:base.ie msgid "Ireland" -msgstr "" +msgstr "Ирланд" #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" -msgstr "" +msgstr "Шинэчлэгдсэн модулийн тоо" #. module: base #: field:ir.actions.act_window,groups_id:0 @@ -1327,45 +1349,44 @@ msgstr "" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 #: view:res.users:0 #: field:res.users,groups_id:0 msgid "Groups" -msgstr "" +msgstr "Группүүд" #. module: base #: constraint:res.users:0 msgid "This user can not connect using this company !" -msgstr "" +msgstr "Энэ хэрэглэгч энэ компаниар холбогдож чадахгүй !" #. module: base #: model:res.country,name:base.bz msgid "Belize" -msgstr "" +msgstr "Белиз" #. module: base #: model:res.country,name:base.ge msgid "Georgia" -msgstr "" +msgstr "Гурж" #. module: base #: model:res.country,name:base.pl msgid "Poland" -msgstr "" +msgstr "Польш" #. module: base #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 msgid "To be removed" -msgstr "" +msgstr "Устгагдана" #. module: base #: field:ir.values,meta:0 msgid "Meta Datas" -msgstr "" +msgstr "Мета өгөгдлүүд" #. module: base #: view:wizard.module.update_translations:0 @@ -1373,6 +1394,8 @@ msgid "" "This wizard will detect new terms in the application so that you can update " "them manually." msgstr "" +"Энэ визард нь програм дахь шинэ нэр томъёог илрүүлэх ба ингэснээр та " +"тэдгээрийг шинэчлэх боломжтой болно." #. module: base #: help:ir.actions.server,expression:0 @@ -1381,21 +1404,24 @@ msgid "" "order in Object, and you can have loop on the sales order line. Expression = " "`object.order_line`." msgstr "" +"Жагсаалт гаргах талбар эсвэл илэрхийлэл бичнэ. Жнь. Object дээр борлуулалтын " +"захиалгыг сонговол борлуулалтын захиалгын мөрүүдээр гүйх боломжтой болно. " +"Expression = `object.order_line`." #. module: base #: selection:ir.translation,type:0 msgid "Wizard Field" -msgstr "" +msgstr "Визардын талбар" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_SELECT_COLOR" -msgstr "" +msgstr "STOCK_SELECT_COLOR" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NO" -msgstr "" +msgstr "STOCK_NO" #. module: base #: model:res.country,name:base.st @@ -1405,33 +1431,30 @@ msgstr "" #. module: base #: selection:res.partner.address,type:0 msgid "Invoice" -msgstr "" +msgstr "Нэхэмжлэл" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REDO" -msgstr "" +msgstr "STOCK_REDO" #. module: base #: model:res.country,name:base.bb msgid "Barbados" -msgstr "" +msgstr "Барбадос" #. module: base #: model:res.country,name:base.mg msgid "Madagascar" -msgstr "" +msgstr "Мадагаскар" #. module: base #: constraint:ir.model:0 msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "" - -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" +"Объектын нэрний эхлэл x_ байх ёстой бөгөөд бусад тусгай тэмдэгтийг агуулж " +"болохгүй!" #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin @@ -1439,22 +1462,22 @@ msgstr "" #: view:ir.ui.menu:0 #: field:ir.ui.menu,name:0 msgid "Menu" -msgstr "" +msgstr "Цэс" #. module: base #: field:res.currency,rate:0 msgid "Current Rate" -msgstr "" +msgstr "Өнөөгийн ханш" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Greek / Ελληνικά" -msgstr "" +msgstr "Грек" #. module: base #: view:ir.values:0 msgid "Action To Launch" -msgstr "" +msgstr "Эхлүүлэх үйлдэл" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -1468,7 +1491,7 @@ msgstr "" #. module: base #: field:ir.actions.url,target:0 msgid "Action Target" -msgstr "" +msgstr "Үйлдлийн бай" #. module: base #: model:res.country,name:base.ai @@ -1478,23 +1501,23 @@ msgstr "" #. module: base #: field:ir.model.config,password_check:0 msgid "Confirmation" -msgstr "" +msgstr "Баталгаажилт" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Enter at least one field !" -msgstr "" +msgstr "Дор хаяж нэг талбар оруулна уу!" #. module: base #: field:ir.ui.view_sc,name:0 msgid "Shortcut Name" -msgstr "" +msgstr "Хурдан холбоосын нэр" #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" -msgstr "" +msgstr "Кредит хязгаарлалт" #. module: base #: help:ir.actions.server,write_id:0 @@ -1506,40 +1529,40 @@ msgstr "" #. module: base #: model:res.country,name:base.zw msgid "Zimbabwe" -msgstr "" +msgstr "Зимбаб" #. module: base #: model:ir.ui.menu,name:base.menu_translation_export msgid "Import / Export" -msgstr "" +msgstr "Импорт / Экспорт" #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form #: view:res.users:0 msgid "Configure User" -msgstr "" +msgstr "Хэрэглэгч тохируулах" #. module: base #: field:ir.actions.server,email:0 msgid "Email Address" -msgstr "" +msgstr "И-мэйл хаяг" #. module: base #: selection:module.lang.install,init,lang:0 msgid "French (BE) / Français (BE)" -msgstr "" +msgstr "Франц" #. module: base #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "You can not write in this document! (%s)" -msgstr "" +msgstr "Та энэ баримтыг засварлах эрхгүй! (%s)" #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 msgid "Server Action" -msgstr "" +msgstr "Сервер үйлдэл" #. module: base #: model:res.country,name:base.tt @@ -1549,12 +1572,12 @@ msgstr "" #. module: base #: model:res.country,name:base.lv msgid "Latvia" -msgstr "" +msgstr "Латви" #. module: base #: view:ir.values:0 msgid "Values" -msgstr "" +msgstr "Утга" #. module: base #: view:ir.actions.server:0 @@ -1565,199 +1588,200 @@ msgstr "" #: model:ir.actions.act_window,name:base.res_request-closed #: model:ir.ui.menu,name:base.next_id_12_close msgid "My Closed Requests" -msgstr "" +msgstr "Миний хаагдсан хүсэлтүүд" #. module: base #: model:ir.ui.menu,name:base.menu_custom msgid "Customization" -msgstr "" +msgstr "Өөрчлөн тохируулалт" #. module: base #: model:res.country,name:base.py msgid "Paraguay" -msgstr "" +msgstr "Прагвай" #. module: base #: selection:ir.report.custom.fields,alignment:0 msgid "left" -msgstr "" +msgstr "зүүн" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_close msgid "ir.actions.act_window_close" -msgstr "" +msgstr "ir.actions.act_window_close" #. module: base #: field:ir.server.object.lines,col1:0 msgid "Destination" -msgstr "" +msgstr "Хаана" #. module: base #: model:res.country,name:base.lt msgid "Lithuania" -msgstr "" +msgstr "Литва" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PRINT_PREVIEW" -msgstr "" +msgstr "STOCK_PRINT_PREVIEW" #. module: base #: model:res.country,name:base.si msgid "Slovenia" -msgstr "" +msgstr "Словени" #. module: base #: view:res.partner.canal:0 #: field:res.partner.event,canal_id:0 msgid "Channel" -msgstr "" +msgstr "Суваг" #. module: base #: view:res.lang:0 msgid "%p - Equivalent of either AM or PM." -msgstr "" +msgstr "%p - AM болон PM цагийн ижил дүрслэл." #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" -msgstr "" +msgstr "Давтах үйлдлүүд" #. module: base #: field:maintenance.contract,date_stop:0 msgid "Ending Date" -msgstr "" +msgstr "Дуусах огноо" #. module: base #: model:res.country,name:base.nz msgid "New Zealand" -msgstr "" +msgstr "Шинэ зеланд" #. module: base #: model:res.partner.category,name:base.res_partner_category_7 msgid "Openstuff.net" -msgstr "" +msgstr "Openstuff.net" #. module: base #: model:res.country,name:base.nf msgid "Norfolk Island" -msgstr "" +msgstr "Норфолкын арлууд" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_PLAY" -msgstr "" +msgstr "STOCK_MEDIA_PLAY" #. module: base #: field:ir.rule,operator:0 msgid "Operator" -msgstr "" +msgstr "Үйлдэл" #. module: base #: wizard_view:module.lang.install,start:0 msgid "Installation Done" -msgstr "" +msgstr "Суулгац дууслаа" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_OPEN" -msgstr "" +msgstr "STOCK_OPEN" #. module: base #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 msgid "Client Action" -msgstr "" +msgstr "Клиент үйлдэл" #. module: base #: selection:ir.report.custom.fields,alignment:0 msgid "right" -msgstr "" +msgstr "баруун" #. module: base #: model:res.country,name:base.bd msgid "Bangladesh" -msgstr "" +msgstr "Бангладеш" #. module: base #: constraint:res.company:0 msgid "Error! You can not create recursive companies." -msgstr "" +msgstr "Алдаа! Рекурсив компани үүсгэж болохгүй." #. module: base #: selection:maintenance.contract,state:0 msgid "Valid" -msgstr "" +msgstr "Хүчинтэй" #. module: base #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "You can not delete this document! (%s)" -msgstr "" +msgstr "Та энэ баримтыг устгах эрхгүй! (%s)" #. module: base #: selection:ir.translation,type:0 msgid "XSL" -msgstr "" +msgstr "XSL" #. module: base #: code:addons/base/module/module.py:0 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "" +"'%s' модулийг шинэчлэх боломжтой. Учир нь энэ модуль суугаагүй байна." #. module: base #: model:res.country,name:base.cu msgid "Cuba" -msgstr "" +msgstr "Куб" #. module: base #: view:res.lang:0 msgid "%S - Second as a decimal number [00,61]." -msgstr "" +msgstr "%s - Секундийн тоон дугаар [00,61]" #. module: base #: model:res.country,name:base.am msgid "Armenia" -msgstr "" +msgstr "Армени" #. module: base #: view:ir.sequence:0 msgid "Year with century: %(year)s" -msgstr "" +msgstr "Мянгатын оронтой жил: %(year)s" #. module: base #: selection:ir.report.custom,frequency:0 msgid "Daily" -msgstr "" +msgstr "Өдөр тутмын" #. module: base #: model:res.country,name:base.se msgid "Sweden" -msgstr "" +msgstr "Швед" #. module: base #: selection:ir.actions.act_window.view,view_mode:0 #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Gantt" -msgstr "" +msgstr "График" #. module: base #: view:ir.property:0 msgid "Property" -msgstr "" +msgstr "Онцлог" #. module: base #: model:ir.model,name:base.model_res_partner_bank_type #: view:res.partner.bank.type:0 msgid "Bank Account Type" -msgstr "" +msgstr "Банкны дансны төрөл" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-project" -msgstr "" +msgstr "terp-project" #. module: base #: view:ir.actions.server:0 @@ -1767,49 +1791,49 @@ msgstr "" #. module: base #: model:res.country,name:base.at msgid "Austria" -msgstr "" +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 "" +msgstr "Календар" #. module: base #: field:workflow.activity,signal_send:0 msgid "Signal (subflow.*)" -msgstr "" +msgstr "Сигнал (дэд урсгал.*)" #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" -msgstr "" +msgstr "Модулийн уялдаа" #. module: base #: selection:maintenance.contract.wizard,state:0 msgid "Draft" -msgstr "" +msgstr "Ноорог" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_JUSTIFY_CENTER" -msgstr "" +msgstr "STOCK_JUSTIFY_CENTER" #. module: base #: view:res.config.view:0 msgid "Choose Your Mode" -msgstr "" +msgstr "Горимоо сонгоно уу" #. module: base #: field:res.company,rml_footer1:0 msgid "Report Footer 1" -msgstr "" +msgstr "Тайлангийн хөл 1" #. module: base #: field:res.company,rml_footer2:0 msgid "Report Footer 2" -msgstr "" +msgstr "Тайлангийн хөл 2" #. module: base #: view:ir.model.access:0 @@ -1817,18 +1841,18 @@ msgstr "" #: view:res.groups:0 #: field:res.groups,model_access:0 msgid "Access Controls" -msgstr "" +msgstr "Хандалтын удирдлага" #. module: base #: view:ir.module.module:0 #: field:ir.module.module,dependencies_id:0 msgid "Dependencies" -msgstr "" +msgstr "Уялдаа холбоо" #. module: base #: field:ir.report.custom.fields,bgcolor:0 msgid "Background Color" -msgstr "" +msgstr "Арын дэвсгэр өнгө" #. module: base #: view:ir.actions.server:0 @@ -1836,27 +1860,29 @@ msgid "" "If you use a formula type, use a python expression using the variable " "'object'." msgstr "" +"Хэрэв та томьёо төрлийг хэрэглэх бол 'object' хувьсагч ашиглан python нөхцөл " +"бичнэ." #. module: base #: field:res.partner.address,birthdate:0 msgid "Birthdate" -msgstr "" +msgstr "Төрсөн огноо" #. module: base #: model:ir.actions.act_window,name:base.action_partner_title_contact #: model:ir.ui.menu,name:base.menu_partner_title_contact msgid "Contact Titles" -msgstr "" +msgstr "Харилцагчийн хэлбэр" #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" -msgstr "" +msgstr "res.partner.som" #. module: base #: model:ir.model,name:base.model_workflow_activity msgid "workflow.activity" -msgstr "" +msgstr "workflow.activity" #. module: base #: field:ir.model.fields,select_level:0 @@ -1866,37 +1892,37 @@ msgstr "" #. module: base #: model:res.country,name:base.uy msgid "Uruguay" -msgstr "" +msgstr "Уругвай" #. module: base #: view:res.partner.event:0 msgid "Document Link" -msgstr "" +msgstr "Баримтын холбоос" #. module: base #: model:ir.model,name:base.model_res_partner_title msgid "res.partner.title" -msgstr "" +msgstr "res.partner.title" #. module: base #: field:ir.sequence,prefix:0 msgid "Prefix" -msgstr "" +msgstr "Угтвар" #. module: base #: field:ir.actions.server,loop_action:0 msgid "Loop Action" -msgstr "" +msgstr "Давтах Үйлдэл" #. module: base #: selection:module.lang.install,init,lang:0 msgid "German / Deutsch" -msgstr "" +msgstr "Герман" #. module: base #: help:ir.actions.server,trigger_name:0 msgid "Select the Signal name that is to be used as the trigger." -msgstr "" +msgstr "Гох болгон ашиглах сигналын нэрийг сонгох" #. module: base #: view:ir.actions.server:0 @@ -1906,27 +1932,27 @@ msgstr "" #. module: base #: model:res.partner.title,name:base.res_partner_title_sir msgid "Sir" -msgstr "" +msgstr "Ноён" #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" -msgstr "" +msgstr "Шинэчлэлтийг эхлэх" #. module: base #: field:ir.default,ref_id:0 msgid "ID Ref." -msgstr "" +msgstr "ID Дугаар" #. module: base #: selection:module.lang.install,init,lang:0 msgid "French / Français" -msgstr "" +msgstr "Франц" #. module: base #: model:res.country,name:base.mt msgid "Malta" -msgstr "" +msgstr "Малта" #. module: base #: field:ir.actions.server,fields_lines:0 @@ -1940,13 +1966,13 @@ msgstr "" #: field:ir.module.module.dependency,module_id:0 #: rml:ir.module.reference:0 msgid "Module" -msgstr "" +msgstr "Модуль" #. module: base #: model:ir.actions.act_window,name:base.action_res_bank_form #: model:ir.ui.menu,name:base.menu_action_res_bank_form msgid "Bank List" -msgstr "" +msgstr "Банкны жагсаалт" #. module: base #: field:ir.attachment,description:0 @@ -1957,49 +1983,49 @@ msgstr "" #: field:res.partner.event,description:0 #: view:res.request:0 msgid "Description" -msgstr "" +msgstr "Тайлбар" #. module: base #: model:ir.actions.act_window,name:base.action_workflow_instance_form #: model:ir.ui.menu,name:base.menu_workflow_instance msgid "Instances" -msgstr "" +msgstr "Хуулбарууд" #. module: base #: model:ir.model,name:base.model_ir_attachment msgid "ir.attachment" -msgstr "" +msgstr "ir.attachment" #. module: base #: field:res.users,action_id:0 msgid "Home Action" -msgstr "" +msgstr "Үндсэн Үйлдэл" #. module: base #: field:res.lang,grouping:0 msgid "Separator Format" -msgstr "" +msgstr "Тусгаарлагч формат" #. module: base #: view:wizard.module.lang.export:0 msgid "Export language" -msgstr "" +msgstr "Хэл экспортлох" #. module: base #: selection:maintenance.contract.wizard,state:0 msgid "Unvalidated" -msgstr "" +msgstr "Хүчин төгөлдөр бус" #. module: base #: model:ir.ui.menu,name:base.next_id_9 msgid "Database Structure" -msgstr "" +msgstr "Баазын бүтэц" #. module: base #: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard #: wizard_view:res.partner.spam_send,init:0 msgid "Mass Mailing" -msgstr "" +msgstr "Бөөн мэйлдэх" #. module: base #: model:res.country,name:base.yt @@ -2009,123 +2035,123 @@ msgstr "" #. module: base #: wizard_view:module.lang.import,init:0 msgid "You can also import .po files." -msgstr "" +msgstr "Мөн та .po файл оруулж болно." #. module: base #: code:addons/base/maintenance/maintenance.py:0 #, python-format msgid "Unable to find a valid contract" -msgstr "" +msgstr "Хүчинтэй гэрээ олдохгүй байна" #. module: base #: code:addons/base/ir/ir_actions.py:0 #, python-format msgid "Please specify an action to launch !" -msgstr "" +msgstr "Эхлүүлэх үйлдлийг заана уу!" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_JUSTIFY_RIGHT" -msgstr "" +msgstr "STOCK_JUSTIFY_RIGHT" #. module: base #: model:ir.model,name:base.model_res_partner_function msgid "Function of the contact" -msgstr "" +msgstr "Харилцах этгээдийн үүрэг хариуцлага" #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_upgrade #: model:ir.ui.menu,name:base.menu_module_tree_upgrade msgid "Modules to be installed, upgraded or removed" -msgstr "" +msgstr "Модулиуд сууж, шинэчлэгдэж эсвэл устлаа" #. module: base #: view:res.payterm:0 msgid "Payment Term" -msgstr "" +msgstr "Төлбөрийн нөхцөл" #. module: base #: field:ir.report.custom,footer:0 msgid "Report Footer" -msgstr "" +msgstr "Тайлангийн хөл" #. module: base #: selection:res.lang,direction:0 msgid "Right-to-Left" -msgstr "" +msgstr "Баруунаас зүүн" #. module: base #: wizard_view:module.lang.import,init:0 msgid "Import language" -msgstr "" +msgstr "Хэл импортлох" #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 #: model:ir.ui.menu,name:base.menu_ir_cron_act msgid "Scheduled Actions" -msgstr "" +msgstr "Товлосон үйлдлүүд" #. module: base #: field:res.partner,title:0 #: field:res.partner.address,title:0 #: field:res.partner.title,name:0 msgid "Title" -msgstr "" +msgstr "Хуулийн хэлбэр" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_SAVE" -msgstr "" +msgstr "STOCK_SAVE" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-account" -msgstr "" +msgstr "terp-account" #. module: base #: code:addons/base/module/module.py:0 #, python-format msgid "Recursion error in modules dependencies !" -msgstr "" +msgstr "Модулиудын хамааралд рекурсын алдаа байна !" #. module: base #: view:ir.model:0 msgid "Create a Menu" -msgstr "" +msgstr "Цэс үүсгэх" #. module: base #: help:res.partner,vat:0 msgid "" "Value Added Tax number. Check the box if the partner is subjected to the " "VAT. Used by the VAT legal statement." -msgstr "" +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 "" +msgstr "Модулийн ангилал" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Ukrainian / украї́нська мо́ва" -msgstr "" +msgstr "Украйни" #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" -msgstr "" +msgstr "Эхлээгүй" #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" -msgstr "" +msgstr "Оросын холбооны улс" #. module: base #: field:res.company,name:0 msgid "Company Name" -msgstr "" +msgstr "Компанийн нэр" #. module: base #: model:ir.actions.act_window,name:base.action_res_roles_form @@ -2134,38 +2160,33 @@ msgstr "" #: view:res.users:0 #: field:res.users,roles_id:0 msgid "Roles" -msgstr "" +msgstr "Дүрүүд" #. module: base #: model:ir.actions.act_window,name:base.action_country #: model:ir.ui.menu,name:base.menu_country_partner msgid "Countries" -msgstr "" - -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" +msgstr "Улс гүрнүүд" #. module: base #: field:res.partner,vat:0 msgid "VAT" -msgstr "" +msgstr "НӨАТ" #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" -msgstr "" +msgstr "%w ==> 5 ( Баасан гараг бол 6-дахь өдөр)" #. module: base #: constraint:res.partner.category:0 msgid "Error ! You can not create recursive categories." -msgstr "" +msgstr "Алдаа! Рекурсив ангилал үүсгэж болохгүй." #. module: base #: view:res.lang:0 msgid "%x - Appropriate date representation." -msgstr "" +msgstr "%x - Тохиромжтой огнооны дүрслэл." #. module: base #: help:ir.module.repository,filter:0 @@ -2175,48 +2196,52 @@ msgid "" "- The second parenthesis must match the whole version number.\n" "- The last parenthesis must match the extension of the module." msgstr "" +"Кодын сайт дээр модуль хайх регуляр илэрхийлэл:\n" +"- Эхний хаалт нь модулийг заана.\n" +"- Хоёр дахь хаалт нь хувилбарын дугаарыг заана.\n" +"- Сүүлийн хаалт нь модулийн өргөтгөлийг заана." #. module: base #: view:res.lang:0 msgid "%M - Minute as a decimal number [00,59]." -msgstr "" +msgstr "%M - Минутын тоон дугаар [00,59]." #. module: base #: model:res.country,name:base.tj msgid "Tajikistan" -msgstr "" +msgstr "Тажикстан" #. module: base #: model:ir.actions.act_window,name:base.act_values_form_action #: model:ir.ui.menu,name:base.menu_values_form_action msgid "Connect Actions To Client Events" -msgstr "" +msgstr "Үйлдлүүдийг клиент үзэгдлүүдтэй холбох" #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" -msgstr "" +msgstr "GPL-2 болон дараагийн хувилбар" #. module: base #: selection:res.partner.event,type:0 msgid "Prospect Contact" -msgstr "" +msgstr "Алс хэтийн харилцаа" #. module: base #: model:ir.model,name:base.model_ir_actions_wizard #: selection:ir.ui.menu,action:0 msgid "ir.actions.wizard" -msgstr "" +msgstr "ir.actions.wizard" #. module: base #: model:res.country,name:base.nr msgid "Nauru" -msgstr "" +msgstr "Науру" #. module: base #: model:ir.model,name:base.model_ir_property msgid "ir.property" -msgstr "" +msgstr "ir.property" #. module: base #: selection:ir.actions.act_window,view_type:0 @@ -2224,100 +2249,100 @@ msgstr "" #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Form" -msgstr "" +msgstr "Форм" #. module: base #: model:res.country,name:base.me msgid "Montenegro" -msgstr "" +msgstr "Монтенигро" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_QUIT" -msgstr "" +msgstr "STOCK_QUIT" #. module: base #: view:ir.cron:0 msgid "Technical Data" -msgstr "" +msgstr "Техникийн өгөгдөл" #. module: base #: view:res.partner:0 #: field:res.partner,category_id:0 msgid "Categories" -msgstr "" +msgstr "Ангилалууд" #. module: base #: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard #: wizard_button:res.partner.sms_send,init,send:0 msgid "Send SMS" -msgstr "" +msgstr "SMS илгээх" #. module: base #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 msgid "To be upgraded" -msgstr "" +msgstr "Шинэчлэгдэнэ" #. module: base #: model:res.country,name:base.ly msgid "Libya" -msgstr "" +msgstr "Либери" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-purchase" -msgstr "" +msgstr "terp-purchase" #. module: base #: wizard_field:module.module.update,init,repositories:0 msgid "Repositories" -msgstr "" +msgstr "Агуулахууд" #. module: base #: model:res.country,name:base.cf msgid "Central African Republic" -msgstr "" +msgstr "Төв Африкийн Бүгд Найрамдах Улс" #. module: base #: model:res.country,name:base.li msgid "Liechtenstein" -msgstr "" +msgstr "Лейхтенштайн" #. module: base #: model:res.partner.title,name:base.res_partner_title_ltd msgid "Ltd" -msgstr "" +msgstr "ХК" #. module: base #: field:res.partner,ean13:0 msgid "EAN13" -msgstr "" +msgstr "Зур.код" #. module: base #: model:res.country,name:base.pt msgid "Portugal" -msgstr "" +msgstr "Португаль" #. module: base #: selection:maintenance.contract,state:0 msgid "Unvalid" -msgstr "" +msgstr "Буруу" #. module: base #: field:ir.module.module,certificate:0 msgid "Quality Certificate" -msgstr "" +msgstr "Чанарын сертификат" #. module: base #: view:res.lang:0 msgid "6. %d, %m ==> 05, 12" -msgstr "" +msgstr "6. %d, %m ==> 05, 12" #. module: base #: help:res.partner,customer:0 msgid "Check this box if the partner is a customer." -msgstr "" +msgstr "Хэрэв уг харилцагч худалдан авагч бол энэ нүдийг сонгоно уу." #. module: base #: model:ir.actions.act_window,name:base.res_lang_act_window @@ -2325,17 +2350,17 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_res_lang_act_window #: view:res.lang:0 msgid "Languages" -msgstr "" +msgstr "Хэлүүд" #. module: base #: model:res.country,name:base.pw msgid "Palau" -msgstr "" +msgstr "Палау" #. module: base #: model:res.country,name:base.ec msgid "Ecuador" -msgstr "" +msgstr "Эквадор" #. module: base #: code:addons/base/module/wizard/wizard_export_lang.py:0 @@ -2345,17 +2370,20 @@ msgid "" "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_partner_customer_form #: view:res.partner:0 msgid "Customers" -msgstr "" +msgstr "Худалдан авагчид" #. module: base #: model:res.country,name:base.au msgid "Australia" -msgstr "" +msgstr "Австрали" #. module: base #: help:res.partner,lang:0 @@ -2363,32 +2391,34 @@ msgid "" "If the selected language is loaded in the system, all documents related to " "this partner will be printed in this language. If not, it will be english." msgstr "" +"Хэрэв сонгосон хэл системд ачаалагдсан байгаа бол харилцагчийн бүх баримт уг " +"хэлээр хэвлэгдэнэ. Эсрэг тохиолдолд англи хэл дээр байна." #. module: base #: rml:ir.module.reference:0 msgid "Menu :" -msgstr "" +msgstr "Цэс :" #. module: base #: selection:ir.model.fields,state:0 msgid "Base Field" -msgstr "" +msgstr "Үндсэн талбар" #. module: base #: wizard_view:module.module.update,update:0 msgid "New modules" -msgstr "" +msgstr "Шинэ модулиуд" #. module: base #: field:ir.actions.report.xml,report_sxw_content:0 #: field:ir.actions.report.xml,report_sxw_content_data:0 msgid "SXW content" -msgstr "" +msgstr "SXW агуулга" #. module: base #: view:ir.cron:0 msgid "Action to Trigger" -msgstr "" +msgstr "Гогодох үйлдэл" #. module: base #: field:ir.report.custom.fields,fc0_operande:0 @@ -2397,31 +2427,31 @@ msgstr "" #: field:ir.report.custom.fields,fc3_operande:0 #: selection:ir.translation,type:0 msgid "Constraint" -msgstr "" +msgstr "Нөхцөл" #. module: base #: selection:ir.values,key:0 #: selection:res.partner.address,type:0 msgid "Default" -msgstr "" +msgstr "Өгөгдмөл" #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 msgid "Required" -msgstr "" +msgstr "Шаардлагатай" #. module: base #: field:ir.model.fields,domain:0 #: field:ir.rule,domain:0 #: field:res.partner.title,domain:0 msgid "Domain" -msgstr "" +msgstr "Домэйн" #. module: base #: field:res.request.history,name:0 msgid "Summary" -msgstr "" +msgstr "Хураангуй" #. module: base #: help:ir.actions.server,subject:0 @@ -2429,26 +2459,28 @@ msgid "" "Specify the subject. You can use fields from the object, e.g. `Hello [[ " "object.partner_id.name ]]`" msgstr "" +"Сэдвийг заана. Үүнд `Сайн байна уу [[ object.partner_id.name ]]` зэргээр " +"объектын талбарууд оролцуулж болно." #. module: base #: view:res.company:0 msgid "Header/Footer" -msgstr "" +msgstr "Толгой/Хөл" #. module: base #: model:res.country,name:base.lb msgid "Lebanon" -msgstr "" +msgstr "Либони" #. module: base #: wizard_field:module.lang.import,init,name:0 msgid "Language name" -msgstr "" +msgstr "Хэлний нэр" #. module: base #: model:res.country,name:base.va msgid "Holy See (Vatican City State)" -msgstr "" +msgstr "Холи Сий (Ватикан хот улс)" #. module: base #: help:ir.actions.server,condition:0 @@ -2456,11 +2488,12 @@ msgid "" "Condition that is to be tested before action is executed, e.g. " "object.list_price > object.cost_price" msgstr "" +"Үйлдэл хийхийн өмнө шалгах нөхцөл, ө.х object.list_price > object.cost_price" #. module: base #: wizard_field:base.module.import,init,module_file:0 msgid "Module .ZIP file" -msgstr "" +msgstr "Модулийн .ZIP файл" #. module: base #: field:res.roles,child_id:0 @@ -2470,7 +2503,7 @@ msgstr "" #. module: base #: field:workflow.transition,trigger_model:0 msgid "Trigger Object" -msgstr "" +msgstr "Гох объект" #. module: base #: selection:ir.report.custom,state:0 @@ -2481,35 +2514,35 @@ msgstr "" #: wizard_view:module.lang.install,init:0 #: wizard_view:module.upgrade,next:0 msgid "System Upgrade" -msgstr "" +msgstr "Системийн шинэчлэл" #. module: base #: field:workflow.activity,in_transitions:0 msgid "Incoming Transitions" -msgstr "" +msgstr "Орох шилжилтүүд" #. module: base #: model:res.country,name:base.sr msgid "Suriname" -msgstr "" +msgstr "Суринам" #. module: base #: field:ir.values,key2:0 #: view:res.partner.event.type:0 #: field:res.partner.event.type,name:0 msgid "Event Type" -msgstr "" +msgstr "Үйл явдлын төрөл" #. module: base #: view:res.partner.bank:0 #: model:res.partner.bank.type,name:base.bank_normal msgid "Bank account" -msgstr "" +msgstr "Банкны данс" #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" -msgstr "" +msgstr "Дугаарлалтын төрөл" #. module: base #: code:addons/base/module/module.py:0 @@ -2518,37 +2551,39 @@ msgid "" "You try to upgrade a module that depends on the module: %s.\n" "But this module is not available in your system." msgstr "" +"Та %s модулиас хамааралтай модуль суулгах гэж байна.\n" +"Гэвч уг модуль системд алга байна." #. module: base #: view:res.partner.address:0 msgid "Partner Address" -msgstr "" +msgstr "Харилцагчийн хаяг" #. module: base #: field:ir.module.module,license:0 msgid "License" -msgstr "" +msgstr "Лиценз" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Invalid operation" -msgstr "" +msgstr "Буруу үйлдэл" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_SAVE_AS" -msgstr "" +msgstr "STOCK_SAVE_AS" #. module: base #: selection:ir.translation,type:0 msgid "SQL Constraint" -msgstr "" +msgstr "SQL нөхцөл" #. module: base #: field:ir.actions.server,srcmodel_id:0 msgid "Model" -msgstr "" +msgstr "Загвар" #. module: base #: field:ir.actions.act_window.view,view_id:0 @@ -2556,80 +2591,80 @@ msgstr "" #: selection:ir.translation,type:0 #: field:wizard.ir.model.menu.create.line,view_id:0 msgid "View" -msgstr "" +msgstr "Дэлгэц" #. module: base #: view:ir.actions.act_window:0 msgid "Open a Window" -msgstr "" +msgstr "Цонх нээх" #. module: base #: model:res.country,name:base.gq msgid "Equatorial Guinea" -msgstr "" +msgstr "Экваторын Гвиней" #. module: base #: wizard_view:base.module.import,init:0 msgid "Module Import" -msgstr "" +msgstr "Модуль импортлох" #. module: base #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "You can not remove the field '%s' !" -msgstr "" +msgstr "'%s' талбарыг хасаж болохгүй!" #. module: base #: field:res.bank,zip:0 #: field:res.partner.address,zip:0 #: field:res.partner.bank,zip:0 msgid "Zip" -msgstr "" +msgstr "Зип код" #. module: base #: field:ir.module.module,author:0 msgid "Author" -msgstr "" +msgstr "Зохиогч" #. module: base #: model:res.country,name:base.mk msgid "FYROM" -msgstr "" +msgstr "FYROM" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDELETE" -msgstr "" +msgstr "STOCK_UNDELETE" #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." -msgstr "" +msgstr "%c - Тохиромжтой огнооны дүрслэл." #. module: base #: selection:module.lang.install,init,lang:0 msgid "Finland / Suomi" -msgstr "" +msgstr "Финлянд / Suomi" #. module: base #: model:res.country,name:base.bo msgid "Bolivia" -msgstr "" +msgstr "Боливи" #. module: base #: model:res.country,name:base.gh msgid "Ghana" -msgstr "" +msgstr "Гана" #. module: base #: field:res.lang,direction:0 msgid "Direction" -msgstr "" +msgstr "Чиглэл" #. module: base #: model:ir.model,name:base.model_wizard_module_update_translations msgid "wizard.module.update_translations" -msgstr "" +msgstr "wizard.module.update_translations" #. module: base #: view:ir.actions.act_window:0 @@ -2642,53 +2677,53 @@ msgstr "" #: view:wizard.ir.model.menu.create:0 #: field:wizard.ir.model.menu.create,view_ids:0 msgid "Views" -msgstr "" +msgstr "Дэлгэцүүд" #. module: base #: view:res.groups:0 #: field:res.groups,rule_groups:0 #: field:res.users,rules_id:0 msgid "Rules" -msgstr "" +msgstr "Дүрэм" #. module: base #: code:addons/base/module/module.py:0 #, python-format msgid "You try to remove a module that is installed or will be installed" -msgstr "" +msgstr "Суулгасан эсвэл суулгах модулиудыг хасаад үзэх хэрэгтэй." #. module: base #: help:ir.values,key2:0 msgid "" "The kind of action or button in the client side that will trigger the action." -msgstr "" +msgstr "Үйлдлийг гогодох клиент талын товч эсвэл үйлдлийн төрөл." #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PASTE" -msgstr "" +msgstr "STOCK_PASTE" #. module: base #: model:res.country,name:base.gt msgid "Guatemala" -msgstr "" +msgstr "Гватемал" #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow msgid "Workflows" -msgstr "" +msgstr "Ажлын урсгалууд" #. module: base #: model:ir.actions.act_window,name:base.action_config_wizard_form #: model:ir.ui.menu,name:base.menu_config_module msgid "Configuration Wizard" -msgstr "" +msgstr "Тохиргооны визард" #. module: base #: model:ir.model,name:base.model_res_roles msgid "res.roles" -msgstr "" +msgstr "res.roles" #. module: base #: help:ir.cron,priority:0 @@ -2696,27 +2731,29 @@ msgid "" "0=Very Urgent\n" "10=Not urgent" msgstr "" +"0=Маш яаралтай\n" +"10=Яаралтай биш" #. module: base #: view:res.users:0 msgid "Skip" -msgstr "" +msgstr "Алгасах" #. module: base #: model:ir.actions.act_window,name:base.res_request_link-act #: model:ir.ui.menu,name:base.menu_res_request_link_act msgid "Accepted Links in Requests" -msgstr "" +msgstr "Хүсэлт дэх зөвшөөрсөн холбоосууд" #. module: base #: model:res.country,name:base.ls msgid "Lesotho" -msgstr "" +msgstr "Лесото" #. module: base #: model:res.country,name:base.ke msgid "Kenya" -msgstr "" +msgstr "Кениа" #. module: base #: view:res.config.view:0 @@ -2725,88 +2762,85 @@ msgid "" "time. Less used options or fields are automatically hidden. You will be able " "to change this, later, through the Administration menu." msgstr "" +"Анх удаа OpenERP-г туршиж байгаа бол хялбаршуулсан интерфэйсийг сонгоно. " +"Цөөн ашиглагддаг талбарууд автоматаар" #. module: base #: model:res.country,name:base.sm msgid "San Marino" -msgstr "" +msgstr "Сан марино" #. module: base #: model:res.country,name:base.bm msgid "Bermuda" -msgstr "" +msgstr "Бермуд" #. module: base #: model:res.country,name:base.pe msgid "Peru" -msgstr "" +msgstr "Перу" #. module: base #: selection:ir.model.fields,on_delete:0 msgid "Set NULL" -msgstr "" +msgstr "NULL болгох" #. module: base #: field:res.partner.event,som:0 #: field:res.partner.som,name:0 msgid "State of Mind" -msgstr "" +msgstr "Нөхцөл байдал" #. module: base #: model:res.country,name:base.bj msgid "Benin" -msgstr "" - -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" +msgstr "Бенин" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" -msgstr "" +msgstr "STOCK_CONNECT" #. module: base #: selection:ir.model.fields,select_level:0 msgid "Not Searchable" -msgstr "" +msgstr "Хайж боломгүй" #. module: base #: field:res.partner.event.type,key:0 msgid "Key" -msgstr "" +msgstr "Түлхүүр" #. module: base #: field:ir.cron,nextcall:0 msgid "Next Call Date" -msgstr "" +msgstr "Дараагийн дуудлагын огноо" #. module: base #: field:res.company,rml_header:0 msgid "RML Header" -msgstr "" +msgstr "RML толгой" #. module: base #: wizard_field:res.partner.sms_send,init,app_id:0 msgid "API ID" -msgstr "" +msgstr "API ID" #. module: base #: model:res.country,name:base.mu msgid "Mauritius" -msgstr "" +msgstr "Маврик" #. module: base #: wizard_view:module.module.update,init:0 msgid "Scan for new modules" -msgstr "" +msgstr "Шинэ модуль шалгах" #. module: base #: view:ir.actions.act_window:0 #: model:ir.ui.menu,name:base.menu_security msgid "Security" -msgstr "" +msgstr "Хамгаалалт" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 @@ -2817,94 +2851,94 @@ msgstr "" #. module: base #: model:res.country,name:base.za msgid "South Africa" -msgstr "" +msgstr "Өмнөд африк" #. module: base #: model:ir.model,name:base.model_wizard_module_lang_export msgid "wizard.module.lang.export" -msgstr "" +msgstr "wizard.module.lang.export" #. module: base #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 msgid "Installed" -msgstr "" +msgstr "Суусан" #. module: base #: model:res.country,name:base.sn msgid "Senegal" -msgstr "" +msgstr "Сенегал" #. module: base #: model:res.country,name:base.hu msgid "Hungary" -msgstr "" +msgstr "Унгар" #. module: base #: model:ir.model,name:base.model_res_groups msgid "res.groups" -msgstr "" +msgstr "res.groups" #. module: base #: model:res.country,name:base.br msgid "Brazil" -msgstr "" +msgstr "Бразил" #. module: base #: field:ir.sequence,number_next:0 msgid "Next Number" -msgstr "" +msgstr "Дараагийн дугаар" #. module: base #: view:res.currency:0 #: field:res.currency,rate_ids:0 msgid "Rates" -msgstr "" +msgstr "Ханшууд" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Albanian / Shqipëri" -msgstr "" +msgstr "Албани / Shqipëri" #. module: base #: model:res.country,name:base.sy msgid "Syria" -msgstr "" +msgstr "Сири" #. module: base #: view:res.lang:0 msgid "======================================================" -msgstr "" +msgstr "======================================================" #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" -msgstr "" +msgstr "child2 талбар" #. module: base #: field:ir.report.custom.fields,field_child3:0 msgid "Field child3" -msgstr "" +msgstr "child3 талбар" #. module: base #: field:ir.report.custom.fields,field_child0:0 msgid "Field child0" -msgstr "" +msgstr "child0 талбар" #. module: base #: field:ir.report.custom.fields,field_child1:0 msgid "Field child1" -msgstr "" +msgstr "child1 талбар" #. module: base #: field:ir.model.fields,selection:0 msgid "Field Selection" -msgstr "" +msgstr "Талбар сонголт" #. module: base #: selection:res.request,state:0 msgid "draft" -msgstr "" +msgstr "ноорог" #. module: base #: field:res.currency,date:0 @@ -2913,29 +2947,29 @@ msgstr "" #: field:res.partner.event,date:0 #: field:res.request,date_sent:0 msgid "Date" -msgstr "" +msgstr "Огноо" #. module: base #: field:ir.actions.report.xml,report_sxw:0 msgid "SXW path" -msgstr "" +msgstr "SXW зам" #. module: base #: view:ir.attachment:0 #: field:ir.attachment,datas:0 msgid "Data" -msgstr "" +msgstr "Өгөгдөл" #. module: base #: view:res.users:0 msgid "Groups are used to defined access rights on each screen and menu." -msgstr "" +msgstr "Групп нь дэлгэц, цэснүүдэд хандах эрхийг тохируулахад хэрэглэгдэнэ." #. module: base #: field:ir.ui.menu,parent_id:0 #: field:wizard.ir.model.menu.create,menu_id:0 msgid "Parent Menu" -msgstr "" +msgstr "Толгой цэс" #. module: base #: help:ir.actions.act_window.view,multi:0 @@ -2945,11 +2979,12 @@ msgid "" "If set to true, the action will not be displayed on the right toolbar of a " "form view." msgstr "" +"Хэрэв чагт тавибал уг үйлдэл дэлгэцийн баруун талын самбар дээр харагдахгүй." #. module: base #: model:ir.ui.menu,name:base.menu_custom_multicompany msgid "Multi company" -msgstr "" +msgstr "Олон компани" #. module: base #: view:ir.attachment:0 @@ -2959,114 +2994,114 @@ msgstr "" #. module: base #: field:res.lang,decimal_point:0 msgid "Decimal Separator" -msgstr "" +msgstr "Орон тусгаарлагч" #. module: base #: view:res.partner:0 #: view:res.request:0 #: field:res.request,history:0 msgid "History" -msgstr "" +msgstr "Түүх" #. module: base #: field:ir.attachment,create_uid:0 msgid "Creator" -msgstr "" +msgstr "Үүсгэгч" #. module: base #: model:res.country,name:base.mx msgid "Mexico" -msgstr "" +msgstr "Мексик" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Swedish / svenska" -msgstr "" +msgstr "Швед / svenska" #. module: base #: field:res.company,child_ids:0 msgid "Child Companies" -msgstr "" +msgstr "Салбар компаниуд" #. module: base #: model:ir.model,name:base.model_res_users msgid "res.users" -msgstr "" +msgstr "res.users" #. module: base #: model:res.country,name:base.ni msgid "Nicaragua" -msgstr "" +msgstr "Никрагуа" #. module: base #: view:res.partner.event:0 msgid "General Description" -msgstr "" +msgstr "Ерөнхий тодохойлолт" #. module: base #: selection:res.partner.event,type:0 msgid "Sale Opportunity" -msgstr "" +msgstr "Худалдах боломж" #. module: base #: view:maintenance.contract.wizard:0 msgid "Maintenance contract added !" -msgstr "" +msgstr "Үйлчилгээний гэрээ нэмэгдсэн !" #. module: base #: field:ir.rule,field_id:0 #: selection:ir.translation,type:0 #: field:multi_company.default,field_id:0 msgid "Field" -msgstr "" +msgstr "Талбар" #. module: base #: model:res.country,name:base.ve msgid "Venezuela" -msgstr "" +msgstr "Венесуэль" #. module: base #: view:res.lang:0 msgid "9. %j ==> 340" -msgstr "" +msgstr "9. %j ==> 340" #. module: base #: model:res.country,name:base.zm msgid "Zambia" -msgstr "" +msgstr "Замби" #. module: base #: model:ir.actions.act_window,name:base.ir_action_report_xml #: model:ir.ui.menu,name:base.menu_ir_action_report_xml msgid "Report Xml" -msgstr "" +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 "" +msgstr "Энэ харилцагчтай харилцах ажилтан." #. module: base #: field:res.partner,parent_id:0 msgid "Parent Partner" -msgstr "" +msgstr "Толгой харилцагч" #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" -msgstr "" +msgstr "Шинэчлэлийг болих" #. module: base #: model:res.country,name:base.ci msgid "Ivory Coast (Cote D'Ivoire)" -msgstr "" +msgstr "Иворын эрэг" #. module: base #: model:res.country,name:base.kz msgid "Kazakhstan" -msgstr "" +msgstr "Казакстан" #. module: base #: field:ir.actions.report.xml,name:0 @@ -3081,7 +3116,6 @@ msgstr "" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3094,62 +3128,62 @@ msgstr "" #: field:workflow,name:0 #: field:workflow.activity,name:0 msgid "Name" -msgstr "" +msgstr "Нэр" #. module: base #: model:res.country,name:base.ms msgid "Montserrat" -msgstr "" +msgstr "Монтсеррат" #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" -msgstr "" +msgstr "Програмын нэр томъёонууд" #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Calculate Average" -msgstr "" +msgstr "Дундажийг бодох" #. module: base #: field:ir.module.module,demo:0 msgid "Demo data" -msgstr "" +msgstr "Жишээ өгөгдөл" #. module: base #: selection:module.lang.install,init,lang:0 msgid "English (UK)" -msgstr "" +msgstr "English (UK)" #. module: base #: model:res.country,name:base.aq msgid "Antarctica" -msgstr "" +msgstr "Антарктид" #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" -msgstr "" +msgstr "Эхлэлийн харилцагч" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_view msgid "ir.actions.act_window.view" -msgstr "" +msgstr "ir.actions.act_window.view" #. module: base #: rml:ir.module.reference:0 msgid "Web" -msgstr "" +msgstr "Вэб" #. module: base #: selection:module.lang.install,init,lang:0 msgid "English (CA)" -msgstr "" +msgstr "English (CA)" #. module: base #: field:res.partner.event,planned_revenue:0 msgid "Planned Revenue" -msgstr "" +msgstr "Төлөвлөсөн орлого" #. module: base #: wizard_view:module.lang.import,init:0 @@ -3157,100 +3191,104 @@ 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 "" +"UTF-8-аар кодлогдсон .CSV файл оруулах хэрэгтэй. Файлынхаа эхний мөрийг " +"шалгана уу:" #. module: base #: model:res.country,name:base.et msgid "Ethiopia" -msgstr "" +msgstr "Этиоп" #. module: base #: view:res.lang:0 msgid "%H - Hour (24-hour clock) as a decimal number [00,23]." -msgstr "" +msgstr "%H - [00,23] хүртэлх тоон утгатай 24 цаг." #. module: base #: view:res.roles:0 msgid "Role" -msgstr "" +msgstr "Үүрэг" #. module: base #: help:res.country.state,code:0 msgid "The state code in three chars.\n" -msgstr "" +msgstr "Мужийн код гурван тэмдэгтээр.\n" #. module: base #: model:res.country,name:base.sj msgid "Svalbard and Jan Mayen Islands" -msgstr "" +msgstr "Свалбард, Ян Маэны арлууд" #. module: base #: view:ir.rule:0 msgid "Test" -msgstr "" +msgstr "Тест" #. module: base #: field:ir.report.custom.fields,groupby:0 msgid "Group By" -msgstr "" +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 " +"'%s' contains too many dots. XML ids should not contain dots ! These are " "used to refer to other modules data, as in module.reference_id" msgstr "" +"'%s' нь хэт олон цэг агуулж байна. XML id цэг агуулах ёсгүй ! Бусад модульд " +"байгаа өгөгдлийг module.reference_id байдлаар заахад цэгийг хэрэглэнэ" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DIALOG_WARNING" -msgstr "" +msgstr "STOCK_DIALOG_WARNING" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" -msgstr "" +msgstr "STOCK_ZOOM_IN" #. module: base #: selection:res.request,state:0 msgid "closed" -msgstr "" +msgstr "хаагдсан" #. module: base #: selection:wizard.module.lang.export,state:0 msgid "get" -msgstr "" +msgstr "авах" #. module: base #: help:ir.model.fields,on_delete:0 msgid "On delete property for many2one fields" -msgstr "" +msgstr "many2one талбарын on delete шинж" #. module: base #: field:ir.actions.server,write_id:0 msgid "Write Id" -msgstr "" +msgstr "Бичих Id" #. module: base #: field:ir.actions.act_window,domain:0 msgid "Domain Value" -msgstr "" +msgstr "Домэйн утга" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ITALIC" -msgstr "" +msgstr "STOCK_ITALIC" #. module: base #: view:ir.actions.server:0 msgid "SMS Configuration" -msgstr "" +msgstr "SMS тохиргоо" #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act msgid "Access Controls List" -msgstr "" +msgstr "Хандах эрхийн жагсаалт" #. module: base #: model:res.country,name:base.um @@ -3261,118 +3299,118 @@ msgstr "" #: field:res.partner.bank,state:0 #: field:res.partner.bank.type.field,bank_type_id:0 msgid "Bank Type" -msgstr "" +msgstr "Банкны төрөл" #. module: base #: code:addons/base/res/res_user.py:0 #, python-format msgid "The name of the group can not start with \"-\"" -msgstr "" +msgstr "Группын нэр \"-\" тэмдэгтээр эхэлж болохгүй" #. module: base #: wizard_view:module.upgrade,end:0 #: wizard_view:module.upgrade,start:0 msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." -msgstr "" +msgstr "Цэс самбарыг дахин ачаалах хэрэгтэй (Ctrl+t Ctrl+r)" #. module: base #: view:ir.ui.view_sc:0 #: field:res.partner.title,shortcut:0 msgid "Shortcut" -msgstr "" +msgstr "Товчлол" #. module: base #: field:ir.model.data,date_init:0 msgid "Init Date" -msgstr "" +msgstr "Эхлэл огноо" #. module: base #: field:workflow.activity,flow_start:0 msgid "Flow Start" -msgstr "" +msgstr "Урсгалын эхлэл" #. module: base #: view:ir.model:0 #: view:ir.model.fields:0 msgid "Security on Groups" -msgstr "" +msgstr "Группын хамгаалалт" #. module: base #: view:res.partner.bank:0 msgid "Bank Account Owner" -msgstr "" +msgstr "Данс эзэмшигч" #. module: base #: model:ir.actions.act_window,name:base.act_values_form #: model:ir.ui.menu,name:base.menu_values_form msgid "Client Actions Connections" -msgstr "" +msgstr "Клиент үйлдлүүдийн холбоо" #. module: base #: field:ir.ui.view_sc,resource:0 msgid "Resource Name" -msgstr "" +msgstr "Нөөцийн нэр" #. module: base #: selection:ir.cron,interval_type:0 msgid "Hours" -msgstr "" +msgstr "Цаг" #. module: base #: model:res.country,name:base.gp msgid "Guadeloupe (French)" -msgstr "" +msgstr "Гуаделоп (Франц)" #. module: base #: field:ir.report.custom.fields,cumulate:0 msgid "Accumulate" -msgstr "" +msgstr "Хураах" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Tree can only be used in tabular reports" -msgstr "" +msgstr "Модыг зөвхөн хүснэгтэн тайланд хэрэглэнэ" #. module: base #: rml:ir.module.reference:0 msgid "Directory" -msgstr "" +msgstr "Хавтас" #. module: base #: field:wizard.ir.model.menu.create,name:0 msgid "Menu Name" -msgstr "" +msgstr "Цэсний нэр" #. module: base #: field:ir.report.custom,title:0 msgid "Report Title" -msgstr "" +msgstr "Тайлангийн гарчиг" #. module: base #: field:ir.report.custom.fields,fontcolor:0 msgid "Font color" -msgstr "" +msgstr "Шрифтийн өнгө" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_SORT_DESCENDING" -msgstr "" +msgstr "STOCK_SORT_DESCENDING" #. module: base #: model:res.country,name:base.my msgid "Malaysia" -msgstr "" +msgstr "Малайз" #. module: base #: model:ir.model,name:base.model_res_request_history msgid "res.request.history" -msgstr "" +msgstr "res.request.history" #. module: base #: view:ir.actions.server:0 msgid "Client Action Configuration" -msgstr "" +msgstr "Клиент үйлдлийн тохиргоо" #. module: base #: model:ir.actions.act_window,name:base.action_partner_address_form @@ -3380,17 +3418,17 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_partner_address_form #: view:res.partner.address:0 msgid "Partner Addresses" -msgstr "" +msgstr "Харилцагчийн хаягууд" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Indonesian / Bahasa Indonesia" -msgstr "" +msgstr "Индонези / Бахаса Индонези" #. module: base #: model:res.country,name:base.cv msgid "Cape Verde" -msgstr "" +msgstr "Кэйп Вэрде" #. module: base #: code:addons/base/module/module.py:0 @@ -3399,71 +3437,74 @@ msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" " %s" msgstr "" +"Зарим суулгагдсан модулиуд таны хасах гэж байгаа модулиас хамааралтай " +"байна:\n" +" %s" #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 #: field:res.partner.event,name:0 msgid "Events" -msgstr "" +msgstr "Үйл явдал" #. module: base #: model:ir.actions.act_window,name:base.action_res_roles #: model:ir.ui.menu,name:base.menu_action_res_roles msgid "Roles Structure" -msgstr "" +msgstr "Дүрүүдийн бүтэц" #. module: base #: model:ir.model,name:base.model_ir_actions_url #: selection:ir.ui.menu,action:0 msgid "ir.actions.url" -msgstr "" +msgstr "ir.actions.url" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_STOP" -msgstr "" +msgstr "STOCK_MEDIA_STOP" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DND_MULTIPLE" -msgstr "" +msgstr "STOCK_DND_MULTIPLE" #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 msgid "Partner Contacts" -msgstr "" +msgstr "Харилцагчийн холбоосууд" #. module: base #: wizard_field:module.module.update,update,add:0 msgid "Number of modules added" -msgstr "" +msgstr "Нэмэгдсэн модулийн тоо" #. module: base #: field:workflow.transition,role_id:0 msgid "Role Required" -msgstr "" +msgstr "Шаардлагатай дүр" #. module: base #: view:ir.module.module:0 msgid "Created Menus" -msgstr "" +msgstr "Үүссэн цэсүүд" #. module: base #: field:workflow.triggers,workitem_id:0 msgid "Workitem" -msgstr "" +msgstr "Ажлын элемент" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DIALOG_AUTHENTICATION" -msgstr "" +msgstr "STOCK_DIALOG_AUTHENTICATION" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_OUT" -msgstr "" +msgstr "STOCK_ZOOM_OUT" #. module: base #: field:ir.actions.act_window.view,act_window_id:0 @@ -3473,114 +3514,114 @@ msgstr "" #: field:ir.values,action_id:0 #: selection:ir.values,key:0 msgid "Action" -msgstr "" +msgstr "Үйлдэл" #. module: base #: view:ir.actions.server:0 msgid "Email Configuration" -msgstr "" +msgstr "Имэйл тохиргоо" #. module: base #: model:ir.model,name:base.model_ir_cron msgid "ir.cron" -msgstr "" +msgstr "ir.cron" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-mrp" -msgstr "" +msgstr "terp-mrp" #. module: base #: field:ir.actions.server,trigger_obj_id:0 msgid "Trigger On" -msgstr "" +msgstr "Гох ассан" #. module: base #: model:res.country,name:base.fj msgid "Fiji" -msgstr "" +msgstr "Фиджи" #. module: base #: field:ir.model.fields,size:0 msgid "Size" -msgstr "" +msgstr "Хэмжээ" #. module: base #: model:res.country,name:base.sd msgid "Sudan" -msgstr "" +msgstr "Судан" #. module: base #: view:res.lang:0 msgid "%m - Month as a decimal number [01,12]." -msgstr "" +msgstr "%m - Сарын тоон дугаар [01,12]." #. module: base #: view:wizard.module.lang.export:0 msgid "Export Data" -msgstr "" +msgstr "Өгөгдөл экспортлох" #. module: base #: model:res.country,name:base.fm msgid "Micronesia" -msgstr "" +msgstr "Микронези" #. module: base #: view:res.request.history:0 msgid "Request History" -msgstr "" +msgstr "Хүсэлтийн түүх" #. module: base #: field:ir.actions.act_window,menus:0 #: field:ir.module.module,menus_by_module:0 #: view:res.groups:0 msgid "Menus" -msgstr "" +msgstr "Цэс" #. module: base #: model:res.country,name:base.il msgid "Israel" -msgstr "" +msgstr "Израйл" #. module: base #: model:ir.actions.wizard,name:base.wizard_server_action_create msgid "Create Action" -msgstr "" +msgstr "Үйлдэл үүсгэх" #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "HTML from HTML" -msgstr "" +msgstr "HTML-ээс HTML" #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "html" -msgstr "" +msgstr "html" #. module: base #: field:res.lang,time_format:0 msgid "Time Format" -msgstr "" +msgstr "Цагийн формат" #. module: base #: wizard_view:module.upgrade,next:0 msgid "Your system will be upgraded." -msgstr "" +msgstr "Таны систем шинэчлэгдэнэ" #. module: base #: view:ir.module.module:0 msgid "Defined Reports" -msgstr "" +msgstr "Тогтсон тайлангууд" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-tools" -msgstr "" +msgstr "terp-tools" #. module: base #: view:ir.actions.report.xml:0 msgid "Report xml" -msgstr "" +msgstr "Тайлан xml" #. module: base #: model:ir.actions.act_window,name:base.action_module_open_categ @@ -3589,55 +3630,55 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_module_tree #: field:wizard.module.lang.export,modules:0 msgid "Modules" -msgstr "" +msgstr "Модулиуд" #. module: base #: selection:workflow.activity,kind:0 #: field:workflow.activity,subflow_id:0 #: field:workflow.workitem,subflow_id:0 msgid "Subflow" -msgstr "" +msgstr "Дэд урсгал" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDO" -msgstr "" +msgstr "STOCK_UNDO" #. module: base #: field:workflow.transition,signal:0 msgid "Signal (button Name)" -msgstr "" +msgstr "Дохио (товчны нэр)" #. module: base #: view:res.bank:0 #: field:res.partner,bank_ids:0 msgid "Banks" -msgstr "" +msgstr "Банкууд" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-sale" -msgstr "" +msgstr "terp-sale" #. module: base #: view:res.lang:0 msgid "%d - Day of the month as a decimal number [01,31]." -msgstr "" +msgstr "%d - Өдрийн тоон дугаар [01,31]." #. module: base #: view:res.lang:0 msgid "%I - Hour (12-hour clock) as a decimal number [01,12]." -msgstr "" +msgstr "%I - Цагийн тоон дугаар [01,12]." #. module: base #: selection:module.lang.install,init,lang:0 msgid "Romanian / limba română" -msgstr "" +msgstr "Румын / limba română" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ADD" -msgstr "" +msgstr "STOCK_ADD" #. module: base #: field:ir.cron,doall:0 @@ -3647,38 +3688,38 @@ msgstr "" #. module: base #: help:ir.actions.server,state:0 msgid "Type of the Action that is to be executed" -msgstr "" +msgstr "Биелэх үйлдлийн төрөл" #. module: base #: field:ir.server.object.lines,server_id:0 msgid "Object Mapping" -msgstr "" +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 "" +msgstr "1 ханштай валюттай харьцуулсан ханш." #. module: base #: model:res.country,name:base.uk msgid "United Kingdom" -msgstr "" +msgstr "Их Британи" #. module: base #: view:ir.actions.server:0 msgid "Create / Write" -msgstr "" +msgstr "Үүсгэх / Бичих" #. module: base #: help:res.partner.category,active:0 msgid "The active field allows you to hide the category without removing it." -msgstr "" +msgstr "Идэвхитэй талбар нь ангиллыг хасалгүйгээр нуух боломж олгоно." #. module: base #: rml:ir.module.reference:0 msgid "Object:" -msgstr "" +msgstr "Объект:" #. module: base #: model:res.country,name:base.bw @@ -3690,39 +3731,39 @@ msgstr "Ботсван" #: model:ir.ui.menu,name:base.menu_partner_title_partner #: view:res.partner.title:0 msgid "Partner Titles" -msgstr "" +msgstr "Харилцагчийн гарчиг" #. module: base #: selection:ir.actions.todo,type:0 msgid "Service" -msgstr "" +msgstr "Үйлчилгээ" #. module: base #: help:ir.actions.act_window,auto_refresh:0 msgid "Add an auto-refresh on the view" -msgstr "" +msgstr "Дэлгэцэнд автомат шинэчлэл нэмэх" #. module: base #: wizard_view:module.upgrade,next:0 #: wizard_field:module.upgrade,next,module_download:0 msgid "Modules to download" -msgstr "" +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 "" +msgstr "Ажлын элементүүд" #. module: base #: field:wizard.module.lang.export,advice:0 msgid "Advice" -msgstr "" +msgstr "Заавар" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Lithuanian / Lietuvių kalba" -msgstr "" +msgstr "Литва / Lietuvių kalba" #. module: base #: help:ir.actions.server,record_id:0 @@ -3730,197 +3771,194 @@ msgid "" "Provide the field name where the record id is stored after the create " "operations. If it is empty, you can not track the new record." msgstr "" +"Үүсгэх үйлдлийн дараа бичлэг үүссэн талбарын нэрийг заана. Хэрэв хоосон " +"орхивол шинэ бичлэгийг олж чадахгүй." #. module: base #: field:ir.ui.view,inherit_id:0 msgid "Inherited View" -msgstr "" +msgstr "Өргөтгөсөн дэлгэц" #. module: base #: model:ir.model,name:base.model_ir_translation msgid "ir.translation" -msgstr "" - -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" +msgstr "ir.translation" #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install msgid "Installed modules" -msgstr "" +msgstr "Суусан модулиуд" #. module: base #: model:res.country,name:base.lc msgid "Saint Lucia" -msgstr "" +msgstr "Санта лучиа" #. module: base #: model:ir.model,name:base.model_maintenance_contract #: view:maintenance.contract:0 msgid "Maintenance Contract" -msgstr "" +msgstr "Үйлчилгээний гэрээ" #. module: base #: help:ir.actions.server,trigger_obj_id:0 msgid "Select the object from the model on which the workflow will executed." -msgstr "" +msgstr "Ажлын урсгал явагдах объектыг сонгох" #. module: base #: field:ir.model,state:0 #: field:ir.model.fields,state:0 #: field:ir.model.grid,state:0 msgid "Manually Created" -msgstr "" +msgstr "Гараар үүсгэсэн" #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Calculate Count" -msgstr "" +msgstr "Тоо ширхэгийг тооцоолох" #. module: base #: field:ir.model.access,perm_create:0 msgid "Create Access" -msgstr "" +msgstr "Хандалт үүсгэх" #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" -msgstr "" +msgstr "Аймаг/Муж" #. module: base #: model:res.country,name:base.io msgid "British Indian Ocean Territory" -msgstr "" +msgstr "Британий энэтхэгийн далайн нутаг" #. module: base #: view:ir.actions.server:0 msgid "Field Mapping" -msgstr "" +msgstr "Талбарын буулгалт" #. module: base #: field:maintenance.contract,date_start:0 msgid "Starting Date" -msgstr "" +msgstr "Эхлэл Огноо" #. module: base #: view:ir.model:0 #: field:ir.model.fields,ttype:0 msgid "Field Type" -msgstr "" +msgstr "Талбарын төрөл" #. module: base #: field:res.country.state,code:0 msgid "State Code" -msgstr "" +msgstr "Мужийн код" #. module: base #: field:ir.model.fields,on_delete:0 msgid "On delete" -msgstr "" +msgstr "Устгахад" #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" -msgstr "" +msgstr "Зүүнээс баруун" #. module: base #: field:res.lang,translatable:0 msgid "Translatable" -msgstr "" +msgstr "Орчуулагдах" #. module: base #: model:res.country,name:base.vn msgid "Vietnam" -msgstr "" +msgstr "Вьетнам" #. module: base #: field:res.users,signature:0 msgid "Signature" -msgstr "" +msgstr "Гарын үсэг" #. module: base #: field:res.partner.category,complete_name:0 msgid "Full Name" -msgstr "" +msgstr "Бүтэн нэр" #. module: base #: model:res.country,name:base.mz msgid "Mozambique" -msgstr "" +msgstr "Мозамбик" #. module: base #: model:ir.actions.act_window,name:base.grant_menu_access #: model:ir.ui.menu,name:base.menu_grant_menu_access msgid "Manage Menus" -msgstr "" +msgstr "Цэсүүдийг удирдах" #. module: base #: field:ir.actions.server,message:0 #: wizard_field:res.partner.spam_send,init,text:0 msgid "Message" -msgstr "" +msgstr "Мессеж" #. module: base #: field:ir.actions.act_window.view,multi:0 msgid "On Multiple Doc." -msgstr "" +msgstr "Олон баримтад." #. module: base #: model:ir.ui.menu,name:base.menu_base_config_contact #: field:res.partner,address:0 #: view:res.partner.address:0 msgid "Contacts" -msgstr "" +msgstr "Харьцах хүмүүс" #. module: base #: model:res.country,name:base.fo msgid "Faroe Islands" -msgstr "" +msgstr "Фарерын арлууд" #. module: base #: model:ir.actions.wizard,name:base.wizard_upgrade #: model:ir.ui.menu,name:base.menu_wizard_upgrade msgid "Apply Scheduled Upgrades" -msgstr "" +msgstr "Товлосон шинэчлэлтийг эхлүүлэх" #. module: base #: model:ir.ui.menu,name:base.maintenance msgid "Maintenance" -msgstr "" +msgstr "Засвар үйлчилгээ" #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" -msgstr "" +msgstr "Хойд марианы арлууд" #. module: base #: wizard_view:module.lang.import,init:0 msgid "module,type,name,res_id,src,value" -msgstr "" +msgstr "module,type,name,res_id,src,value" #. module: base #: model:ir.ui.menu,name:base.menu_management msgid "Modules Management" -msgstr "" +msgstr "Модулийн удирдлага" #. module: base #: rml:ir.module.reference:0 #: field:maintenance.contract.module,version:0 msgid "Version" -msgstr "" +msgstr "Хувилбар" #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create msgid "wizard.ir.model.menu.create" -msgstr "" +msgstr "wizard.ir.model.menu.create" #. module: base #: view:workflow.transition:0 msgid "Transition" -msgstr "" +msgstr "Шилжилт" #. module: base #: field:ir.actions.todo,active:0 @@ -3938,17 +3976,17 @@ msgstr "" #: field:res.request,active:0 #: field:res.users,active:0 msgid "Active" -msgstr "" +msgstr "Идэвхитэй" #. module: base #: model:res.country,name:base.na msgid "Namibia" -msgstr "" +msgstr "Намиби" #. module: base #: model:res.country,name:base.mn msgid "Mongolia" -msgstr "" +msgstr "Монгол" #. module: base #: code:addons/base/ir/ir_actions.py:0 @@ -3959,22 +3997,22 @@ msgstr "" #: code:addons/base/res/res_user.py:0 #, python-format msgid "Error" -msgstr "" +msgstr "Алдаа" #. module: base #: view:res.partner.som:0 msgid "Partner State of Mind" -msgstr "" +msgstr "Харилцагчийн нөхцөл байдал" #. module: base #: selection:ir.ui.view,type:0 msgid "mdx" -msgstr "" +msgstr "mdx" #. module: base #: model:res.country,name:base.bi msgid "Burundi" -msgstr "" +msgstr "Бурунди" #. module: base #: wizard_button:base.module.import,import,open_window:0 @@ -3984,47 +4022,47 @@ msgstr "" #: wizard_button:server.action.create,step_1,end:0 #: view:wizard.module.lang.export:0 msgid "Close" -msgstr "" +msgstr "Хаах" #. module: base #: model:res.country,name:base.bt msgid "Bhutan" -msgstr "" +msgstr "Бутан" #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" -msgstr "" +msgstr "Нэхмэл нийлүүлэгчид" #. module: base #: selection:ir.actions.url,target:0 msgid "This Window" -msgstr "" +msgstr "Энэ цонх" #. module: base #: field:wizard.module.lang.export,format:0 msgid "File Format" -msgstr "" +msgstr "Файлын формат" #. module: base #: field:res.lang,iso_code:0 msgid "ISO code" -msgstr "" +msgstr "ISO код" #. module: base #: model:ir.model,name:base.model_res_config_view msgid "res.config.view" -msgstr "" +msgstr "res.config.view" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_INDENT" -msgstr "" +msgstr "STOCK_INDENT" #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" -msgstr "" +msgstr "Ажлын урсгалын элементүүд" #. module: base #: model:res.country,name:base.vc @@ -4038,7 +4076,7 @@ msgstr "" #: wizard_field:res.partner.sms_send,init,password:0 #: field:res.users,password:0 msgid "Password" -msgstr "" +msgstr "Нууц үг" #. module: base #: model:ir.actions.act_window,name:base.action_model_fields @@ -4051,144 +4089,139 @@ msgstr "" #: field:ir.report.custom,fields_child0:0 #: model:ir.ui.menu,name:base.ir_model_model_fields msgid "Fields" -msgstr "" +msgstr "Талбарууд" #. module: base #: wizard_view:base.module.import,import:0 msgid "Module successfully imported !" -msgstr "" +msgstr "Модуль амжилттай орлоо !" #. module: base #: field:res.company,rml_header2:0 msgid "RML Internal Header" -msgstr "" +msgstr "RML дотоод толгой" #. module: base #: selection:ir.report.custom,print_format:0 msgid "a4" -msgstr "" +msgstr "a4" #. module: base #: field:ir.actions.act_window,search_view_id:0 msgid "Search View Ref." -msgstr "" - -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" +msgstr "Хайлтын дэлгэц." #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" -msgstr "" +msgstr "acc_number" #. module: base #: model:res.country,name:base.mm msgid "Myanmar" -msgstr "" +msgstr "Мянмар" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Chinese (CN) / 简体中文" -msgstr "" +msgstr "Хятад (CN) / 简体中文" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_NEXT" -msgstr "" +msgstr "STOCK_MEDIA_NEXT" #. module: base #: field:res.bank,street:0 #: field:res.partner.address,street:0 #: field:res.partner.bank,street:0 msgid "Street" -msgstr "" +msgstr "Гудамж" #. module: base #: model:res.country,name:base.yu msgid "Yugoslavia" -msgstr "" +msgstr "Югослав" #. module: base #: wizard_view:module.upgrade,next:0 msgid "Note that this operation my take a few minutes." -msgstr "" +msgstr "Энэ үйлдэл бага зэрэг хугацаа авна." #. module: base #: field:ir.model.data,name:0 msgid "XML Identifier" -msgstr "" +msgstr "XML дугаар" #. module: base #: model:res.country,name:base.ca msgid "Canada" -msgstr "" +msgstr "Канад" #. module: base #: field:ir.actions.report.xml,report_name:0 msgid "Internal Name" -msgstr "" +msgstr "Дотоод нэр" #. module: base #: selection:ir.module.module.dependency,state:0 msgid "Unknown" -msgstr "" +msgstr "Үл мэдэгдэх" #. module: base #: model:ir.actions.act_window,name:base.action_res_users_my msgid "Change My Preferences" -msgstr "" +msgstr "Өөрийн тохиргоог өөрчлөх" #. module: base #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Үйлдлийн тодорхойлолтод буруу моделийн нэр байна." #. module: base #: wizard_field:res.partner.sms_send,init,text:0 msgid "SMS Message" -msgstr "" +msgstr "SMS мессеж" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_EDIT" -msgstr "" +msgstr "STOCK_EDIT" #. module: base #: model:res.country,name:base.cm msgid "Cameroon" -msgstr "" +msgstr "Камерун" #. module: base #: model:res.country,name:base.bf msgid "Burkina Faso" -msgstr "" +msgstr "Буркина Фасо" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_FORWARD" -msgstr "" +msgstr "STOCK_MEDIA_FORWARD" #. module: base #: selection:ir.actions.todo,state:0 msgid "Skipped" -msgstr "" +msgstr "Алгассан" #. module: base #: selection:ir.model.fields,state:0 msgid "Custom Field" -msgstr "" +msgstr "Зохиомол талбар" #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" -msgstr "" +msgstr "Кокосын арлууд" #. module: base #: field:workflow.instance,uid:0 msgid "User ID" -msgstr "" +msgstr "Хэрэглэгчийн ID" #. module: base #: view:ir.actions.server:0 @@ -4200,160 +4233,160 @@ msgstr "" #. module: base #: view:res.lang:0 msgid "11. %U or %W ==> 48 (49th week)" -msgstr "" +msgstr "11. %U эсвэл %W ==> 48 (49-р долоо хоног)" #. module: base #: model:ir.model,name:base.model_res_partner_bank_type_field msgid "Bank type fields" -msgstr "" +msgstr "Банкны төрөл талбарууд" #. module: base #: wizard_view:module.lang.import,init:0 msgid "type,name,res_id,src,value" -msgstr "" +msgstr "type,name,res_id,src,value" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Dutch / Nederlands" -msgstr "" +msgstr "Нидерланд" #. module: base #: wizard_view:server.action.create,step_1:0 #: wizard_field:server.action.create,step_1,report:0 msgid "Select Report" -msgstr "" +msgstr "Тайлан сонгох" #. module: base #: field:ir.report.custom.fields,fc1_condition:0 #: field:ir.report.custom.fields,fc2_condition:0 #: field:ir.report.custom.fields,fc3_condition:0 msgid "condition" -msgstr "" +msgstr "нөхцөл" #. module: base #: rml:ir.module.reference:0 msgid "1cm 28cm 20cm 28cm" -msgstr "" +msgstr "1см 28см 20см 28см" #. module: base #: field:ir.sequence,suffix:0 msgid "Suffix" -msgstr "" +msgstr "Дагавар" #. module: base #: model:res.country,name:base.mo msgid "Macau" -msgstr "" +msgstr "Макау" #. module: base #: model:ir.actions.report.xml,name:base.res_partner_address_report msgid "Labels" -msgstr "" +msgstr "Шошго" #. module: base #: wizard_field:res.partner.spam_send,init,from:0 msgid "Sender's email" -msgstr "" +msgstr "Илгээгчийн имэйл" #. module: base #: field:ir.default,field_name:0 msgid "Object Field" -msgstr "" +msgstr "Объект талбар" #. module: base #: selection:module.lang.install,init,lang:0 msgid "French (CH) / Français (CH)" -msgstr "" +msgstr "Франц (CH) / Français (CH)" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NEW" -msgstr "" +msgstr "STOCK_NEW" #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "None" -msgstr "" +msgstr "Хоосон" #. module: base #: view:ir.report.custom.fields:0 msgid "Report Fields" -msgstr "" +msgstr "Тайлангийн талбарууд" #. module: base #: view:res.partner:0 msgid "General" -msgstr "" +msgstr "Ерөнхий" #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" -msgstr "" +msgstr "Зорилтот үйлдэл" #. module: base #: view:ir.values:0 msgid "Connect Events to Actions" -msgstr "" +msgstr "Үзэгдлүүдийг үйлдлүүдэд холбох" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_SORT_ASCENDING" -msgstr "" +msgstr "STOCK_SORT_ASCENDING" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ABOUT" -msgstr "" +msgstr "STOCK_ABOUT" #. module: base #: field:ir.module.category,parent_id:0 #: field:res.partner.category,parent_id:0 msgid "Parent Category" -msgstr "" +msgstr "Дээд ангилал" #. module: base #: model:res.country,name:base.fi msgid "Finland" -msgstr "" +msgstr "Финланд" #. module: base #: selection:res.partner.address,type:0 #: selection:res.partner.title,domain:0 msgid "Contact" -msgstr "" +msgstr "Харилцах хүн" #. module: base #: model:ir.model,name:base.model_ir_ui_menu msgid "ir.ui.menu" -msgstr "" +msgstr "ir.ui.menu" #. module: base #: view:ir.module.module:0 msgid "Cancel Uninstall" -msgstr "" +msgstr "Устгахыг болих" #. module: base #: view:res.bank:0 #: view:res.partner:0 #: view:res.partner.address:0 msgid "Communication" -msgstr "" +msgstr "Харилцаа" #. module: base #: model:ir.model,name:base.model_ir_server_object_lines msgid "ir.server.object.lines" -msgstr "" +msgstr "ir.server.object.lines" #. module: base #: code:addons/base/module/module.py:0 #, python-format msgid "Module %s: Invalid Quality Certificate" -msgstr "" +msgstr "%s модуль: Буруу чанарын сертификат" #. module: base #: model:res.country,name:base.kw msgid "Kuwait" -msgstr "" +msgstr "Кувейт" #. module: base #: field:workflow.workitem,inst_id:0 @@ -4367,46 +4400,48 @@ msgid "" "Keep empty to not save the printed reports. You can use a python expression " "with the object and time variables." msgstr "" +"Энэ бол хэвлэлтийн гаралтыг хадгалах файлын нэр. Хадгалахыг хүсэхгүй бол " +"хоосон орхино. Объект болон хугацаа оролцсон python код ашиглаж болно." #. module: base #: model:res.country,name:base.ng msgid "Nigeria" -msgstr "" +msgstr "Нигер" #. module: base #: model:ir.model,name:base.model_res_partner_event msgid "res.partner.event" -msgstr "" +msgstr "res.partner.event" #. module: base #: field:res.company,user_ids:0 msgid "Accepted Users" -msgstr "" +msgstr "Зөвшөөрөгдсөн хэрэглэгчид" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" -msgstr "" +msgstr "STOCK_UNDERLINE" #. module: base #: view:ir.values:0 msgid "Values for Event Type" -msgstr "" +msgstr "Үзэгдлийн төрлийн утгууд" #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" -msgstr "" +msgstr "Үргэлж хайгдахуйц" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CLOSE" -msgstr "" +msgstr "STOCK_CLOSE" #. module: base #: model:res.country,name:base.hk msgid "Hong Kong" -msgstr "" +msgstr "Хонг Конг" #. module: base #: help:ir.actions.server,name:0 @@ -4416,32 +4451,32 @@ msgstr "" #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" -msgstr "" +msgstr "Төлөвлөгч" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_BOLD" -msgstr "" +msgstr "STOCK_BOLD" #. module: base #: model:res.country,name:base.ph msgid "Philippines" -msgstr "" +msgstr "Флиппен" #. module: base #: model:res.country,name:base.ma msgid "Morocco" -msgstr "" +msgstr "Морокко" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-graph" -msgstr "" +msgstr "terp-graph" #. module: base #: view:res.lang:0 msgid "2. %a ,%A ==> Fri, Friday" -msgstr "" +msgstr "2. %a ,%A ==> Ба, Баасан" #. module: base #: wizard_view:module.lang.install,start:0 @@ -4449,28 +4484,30 @@ msgid "" "The selected language has been successfully installed. You must change the " "preferences of the user and open a new menu to view changes." msgstr "" +"Сонгосон хэл амжилттай суулгагдлаа. Та өөрийн тохиргоо руу ороод хэлээ солих " +"хэрэгтэй, дараа нь шинэ цэс нээхэд өөрчлөлт харагдана." #. module: base #: model:ir.model,name:base.model_ir_sequence msgid "ir.sequence" -msgstr "" +msgstr "ir.sequence" #. module: base #: model:ir.model,name:base.model_res_partner_event_type #: model:ir.ui.menu,name:base.next_id_14 #: view:res.partner.event:0 msgid "Partner Events" -msgstr "" +msgstr "Харилцагчийн үйл явдлууд" #. module: base #: model:ir.model,name:base.model_workflow_transition msgid "workflow.transition" -msgstr "" +msgstr "workflow.transition" #. module: base #: view:res.lang:0 msgid "%a - Abbreviated weekday name." -msgstr "" +msgstr "%a - Гаригийн товч нэр." #. module: base #: rml:ir.module.reference:0 @@ -4485,42 +4522,42 @@ msgstr "" #. module: base #: model:res.country,name:base.dm msgid "Dominica" -msgstr "" +msgstr "Доминик" #. module: base #: model:ir.model,name:base.model_res_currency_rate msgid "Currency Rate" -msgstr "" +msgstr "Валютын ханш" #. module: base #: model:res.country,name:base.np msgid "Nepal" -msgstr "" +msgstr "Непал" #. module: base #: field:res.partner.event,event_ical_id:0 msgid "iCal id" -msgstr "" +msgstr "iCal id" #. module: base #: wizard_view:res.partner.sms_send,init:0 msgid "Bulk SMS send" -msgstr "" +msgstr "Багц SMS илгээх" #. module: base #: view:res.lang:0 msgid "%Y - Year with century as a decimal number." -msgstr "" +msgstr "%Y - Жилийн зуун орсон тоон дугаар." #. module: base #: selection:ir.report.custom,type:0 msgid "Pie Chart" -msgstr "" +msgstr "Дугуй диаграм" #. module: base #: view:ir.sequence:0 msgid "Seconde: %(sec)s" -msgstr "" +msgstr "Секунд: %(сек)" #. module: base #: selection:ir.translation,type:0 @@ -4530,7 +4567,7 @@ msgstr "" #: field:res.partner.bank.type,code:0 #: field:res.partner.function,code:0 msgid "Code" -msgstr "" +msgstr "Код" #. module: base #: code:addons/base/module/module.py:0 @@ -4539,38 +4576,40 @@ msgid "" "Can not create the module file:\n" " %s" msgstr "" +"Модуль файлыг үүсгэж чадахгүй:\n" +" %s" #. module: base #: model:ir.actions.wizard,name:base.wizard_update #: model:ir.ui.menu,name:base.menu_module_update msgid "Update Modules List" -msgstr "" +msgstr "Модулийн жагсаалтыг шинэчлэх" #. module: base #: view:ir.actions.configuration.wizard:0 msgid "Continue" -msgstr "" +msgstr "Үргэлжлүүлэх" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Thai / ภาษาไทย" -msgstr "" +msgstr "Тай / ภาษาไทย" #. module: base #: model:ir.actions.act_window,name:base.ir_property_form #: model:ir.ui.menu,name:base.menu_ir_property_form msgid "Default Properties" -msgstr "" +msgstr "Үндсэн шинжүүд" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Slovenian / slovenščina" -msgstr "" +msgstr "Словян / slovenščina" #. module: base #: field:ir.actions.report.xml,attachment_use:0 msgid "Reload from Attachment" -msgstr "" +msgstr "Хавсралтаас ачаалах" #. module: base #: model:res.country,name:base.bv @@ -4580,45 +4619,45 @@ msgstr "" #. module: base #: field:ir.report.custom,print_orientation:0 msgid "Print orientation" -msgstr "" +msgstr "Хэвлэх чиглэл" #. module: base #: model:ir.actions.act_window,name:base.action_wizard_lang_export #: model:ir.ui.menu,name:base.menu_wizard_lang_export msgid "Export a Translation File" -msgstr "" +msgstr "Орчуулгын файл экспортлох" #. module: base #: field:ir.attachment,name:0 msgid "Attachment Name" -msgstr "" +msgstr "Хавсралтын нэр" #. module: base #: wizard_field:module.lang.import,init,data:0 #: field:wizard.module.lang.export,data:0 msgid "File" -msgstr "" +msgstr "Файл" #. module: base #: view:res.users:0 msgid "Add User" -msgstr "" +msgstr "Хэрэглэгч нэмэх" #. module: base #: model:ir.model,name:base.model_ir_actions_configuration_wizard msgid "ir.actions.configuration.wizard" -msgstr "" +msgstr "ir.actions.configuration.wizard" #. module: base #: view:res.lang:0 msgid "%b - Abbreviated month name." -msgstr "" +msgstr "%b - Сарын товчилсон нэр." #. module: base #: field:res.partner,supplier:0 #: model:res.partner.category,name:base.res_partner_category_8 msgid "Supplier" -msgstr "" +msgstr "Нийлүүлэгч" #. module: base #: view:ir.actions.server:0 @@ -4629,168 +4668,163 @@ msgstr "" #. module: base #: view:maintenance.contract.wizard:0 msgid "_Close" -msgstr "" +msgstr "_Хаах" #. module: base #: selection:maintenance.contract,kind:0 msgid "Full" -msgstr "" +msgstr "Дүүрэн" #. module: base #: model:res.country,name:base.as msgid "American Samoa" -msgstr "" +msgstr "Америкийн Самоа" #. module: base #: model:ir.actions.act_window,name:base.action_model_model #: model:ir.model,name:base.model_ir_model #: model:ir.ui.menu,name:base.ir_model_model_menu msgid "Objects" -msgstr "" +msgstr "Объектууд" #. module: base #: field:ir.model.fields,selectable:0 msgid "Selectable" -msgstr "" +msgstr "Сонгогдох" #. module: base #: view:res.request.link:0 msgid "Request Link" -msgstr "" +msgstr "Хүсэлтийн холбоос" #. module: base #: field:ir.module.module,url:0 #: field:ir.module.repository,url:0 msgid "URL" -msgstr "" +msgstr "URL" #. module: base #: help:res.country,name:0 msgid "The full name of the country." -msgstr "" +msgstr "Улсын бүтэн нэр." #. module: base #: selection:ir.actions.server,state:0 msgid "Iteration" -msgstr "" +msgstr "Давталт" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-stock" -msgstr "" +msgstr "terp-stock" #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" -msgstr "" +msgstr "Арабын Нэгдсэн Эмират" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_RECORD" -msgstr "" +msgstr "STOCK_MEDIA_RECORD" #. module: base #: model:res.country,name:base.re msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" -msgstr "" +msgstr "Чех" #. module: base #: model:res.country,name:base.sb msgid "Solomon Islands" -msgstr "" +msgstr "Соломоны арлууд" #. module: base #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "AccessError" -msgstr "" +msgstr "ХандалтынАлдаа" #. module: base #: view:res.lang:0 msgid "8. %I:%M:%S %p ==> 06:25:20 PM" -msgstr "" +msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" #. module: base #: view:ir.translation:0 #: model:ir.ui.menu,name:base.menu_translation msgid "Translations" -msgstr "" +msgstr "Орчуулгууд" #. module: base #: field:ir.sequence,padding:0 msgid "Number padding" -msgstr "" +msgstr "Тоон тэгшлэлт" #. module: base #: model:res.country,name:base.ua msgid "Ukraine" -msgstr "" +msgstr "Украйн" #. module: base #: model:res.country,name:base.to msgid "Tonga" -msgstr "" +msgstr "Тонга" #. module: base #: model:ir.model,name:base.model_ir_module_category #: view:ir.module.category:0 msgid "Module Category" -msgstr "" +msgstr "Модулийн ангилал" #. module: base #: model:res.country,name:base.us msgid "United States" -msgstr "" +msgstr "Америкын нэгдсэн улс" #. module: base #: rml:ir.module.reference:0 msgid "Reference Guide" -msgstr "" +msgstr "Ишлэл гарын авлага" #. module: base #: model:res.country,name:base.ml msgid "Mali" -msgstr "" +msgstr "Мали" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNINDENT" -msgstr "" +msgstr "STOCK_UNINDENT" #. module: base #: field:ir.cron,interval_number:0 msgid "Interval Number" -msgstr "" +msgstr "Интервал тоо" #. module: base #: selection:maintenance.contract,kind:0 msgid "Partial" -msgstr "" +msgstr "Хагас" #. module: base #: model:res.country,name:base.tk msgid "Tokelau" -msgstr "" +msgstr "Токелау" #. module: base #: field:ir.actions.report.xml,report_xsl:0 msgid "XSL path" -msgstr "" +msgstr "XSL зам" #. module: base #: model:res.country,name:base.bn msgid "Brunei Darussalam" -msgstr "" +msgstr "Бруней" #. module: base #: field:ir.actions.act_window,view_type:0 @@ -4798,32 +4832,32 @@ msgstr "" #: field:ir.ui.view,type:0 #: field:wizard.ir.model.menu.create.line,view_type:0 msgid "View Type" -msgstr "" +msgstr "Дэлгэцийн төрөл" #. module: base #: model:ir.ui.menu,name:base.next_id_2 msgid "User Interface" -msgstr "" +msgstr "Хэрэглэгчийн интерфейс" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DIALOG_INFO" -msgstr "" +msgstr "STOCK_DIALOG_INFO" #. module: base #: field:ir.attachment,create_date:0 msgid "Date Created" -msgstr "" +msgstr "Үүсгэсэн огноо" #. module: base #: model:ir.model,name:base.model_ir_actions_todo msgid "ir.actions.todo" -msgstr "" +msgstr "ir.actions.todo" #. module: base #: view:wizard.module.lang.export:0 msgid "Get file" -msgstr "" +msgstr "Файлыг авах" #. module: base #: wizard_view:module.module.update,init:0 @@ -4831,31 +4865,33 @@ msgid "" "This function will check for new modules in the 'addons' path and on module " "repositories:" msgstr "" +"Энэ функц нь модулын сайт болон 'addons' хавтас дотор шинэ модуль нэмэгдсэн " +"эсэхийг шалгана:" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GO_BACK" -msgstr "" +msgstr "STOCK_GO_BACK" #. module: base #: view:ir.actions.act_window:0 msgid "General Settings" -msgstr "" +msgstr "Ерөнхий тохируулга" #. module: base #: model:ir.ui.menu,name:base.custom_shortcuts msgid "Custom Shortcuts" -msgstr "" +msgstr "Зохиомол товчлол" #. module: base #: model:res.country,name:base.dz msgid "Algeria" -msgstr "" +msgstr "Алжир" #. module: base #: model:res.country,name:base.be msgid "Belgium" -msgstr "" +msgstr "Белги" #. module: base #: field:ir.translation,lang:0 @@ -4865,12 +4901,12 @@ msgstr "" #: field:wizard.module.lang.export,lang:0 #: field:wizard.module.update_translations,lang:0 msgid "Language" -msgstr "" +msgstr "Хэл" #. module: base #: model:res.country,name:base.gm msgid "Gambia" -msgstr "" +msgstr "Гамби" #. module: base #: model:ir.actions.act_window,name:base.action_res_company_form @@ -4878,25 +4914,25 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_res_company_global #: view:res.company:0 msgid "Companies" -msgstr "" +msgstr "Компаниуд" #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 #: selection:ir.actions.server,state:0 msgid "Python Code" -msgstr "" +msgstr "Python код" #. module: base #: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format msgid "Can not create the module file: %s !" -msgstr "" +msgstr "Модулийн файлыг үүсгэж чадахгүй: %s !" #. module: base #: model:ir.module.module,description:base.module_meta_information msgid "The kernel of OpenERP, needed for all installation." -msgstr "" +msgstr "Бүх суулгалтад хэрэгтэй OpenERP цөм." #. module: base #: wizard_button:base.module.import,init,end:0 @@ -4911,41 +4947,40 @@ msgstr "" #: view:wizard.module.lang.export:0 #: view:wizard.module.update_translations:0 msgid "Cancel" -msgstr "" +msgstr "Цуцлах" #. module: base #: code:addons/base/ir/ir_actions.py:0 #, python-format msgid "Please specify server option --smtp-from !" -msgstr "" +msgstr "Серверийн --smtp-from тохиргоог хийнэ үү !" #. module: base #: selection:wizard.module.lang.export,format:0 msgid "PO File" -msgstr "" +msgstr "PO файл" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_SPELL_CHECK" -msgstr "" +msgstr "STOCK_SPELL_CHECK" #. module: base #: model:ir.actions.act_window,name:base.action_partner_category #: model:ir.ui.menu,name:base.menu_partner_category_main msgid "Partners by Categories" -msgstr "" +msgstr "Харилцагид, ангиллаар" #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" -msgstr "" +msgstr "Эд анги нийлүүлэгч" #. module: base #: field:ir.actions.act_window,default_user_ids:0 #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -4953,150 +4988,150 @@ msgstr "" #: field:res.roles,users:0 #: view:res.users:0 msgid "Users" -msgstr "" +msgstr "Хэрэглэгчид" #. module: base #: field:ir.module.module,published_version:0 msgid "Published Version" -msgstr "" +msgstr "Нийтэлсэн хувилбар" #. module: base #: model:res.country,name:base.is msgid "Iceland" -msgstr "" +msgstr "Исланд" #. module: base #: view:res.users:0 msgid "Roles are used to defined available actions, provided by workflows." -msgstr "" +msgstr "Дүр нь ажлын урсгалын үйлдлүүдтэй холбож хэрэглэгдэнэ." #. module: base #: model:res.country,name:base.de msgid "Germany" -msgstr "" +msgstr "Герман" #. module: base #: view:ir.sequence:0 msgid "Week of the year: %(woy)s" -msgstr "" +msgstr "Жилийн долоо хоног: %(ждх)" #. module: base #: model:res.partner.category,name:base.res_partner_category_14 msgid "Bad customers" -msgstr "" +msgstr "Муу харилцагчид" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_HARDDISK" -msgstr "" +msgstr "STOCK_HARDDISK" #. module: base #: rml:ir.module.reference:0 msgid "Reports :" -msgstr "" +msgstr "Тайлангууд :" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_APPLY" -msgstr "" +msgstr "STOCK_APPLY" #. module: base #: model:ir.actions.act_window,name:base.action_maintenance_contract_form #: model:ir.ui.menu,name:base.menu_maintenance_contract msgid "Your Maintenance Contracts" -msgstr "" +msgstr "Таны үйлчилгээний гэрээнүүд" #. module: base #: view:res.users:0 msgid "" "Please note that you will have to logout and relog if you change your " "password." -msgstr "" +msgstr "Хэрэв нууц үгээ солисон бол системээс гараад орох хэрэгтэй." #. module: base #: model:res.country,name:base.gy msgid "Guyana" -msgstr "" +msgstr "Гайана" #. module: base #: selection:ir.module.module,license:0 msgid "GPL-3" -msgstr "" +msgstr "GPL-3" #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2" -msgstr "" +msgstr "GPL-2" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese (BR) / português (BR)" -msgstr "" +msgstr "Португал / português (BR)" #. module: base #: field:ir.actions.server,record_id:0 msgid "Create Id" -msgstr "" +msgstr "Үүсгэх Id" #. module: base #: model:res.country,name:base.hn msgid "Honduras" -msgstr "" +msgstr "Хондурас" #. module: base #: model:res.country,name:base.eg msgid "Egypt" -msgstr "" +msgstr "Египет" #. module: base #: help:ir.actions.server,model_id:0 msgid "" "Select the object on which the action will work (read, write, create)." -msgstr "" +msgstr "Үйлдэл (унших, бичих, үүсгэх) хийгдэх объектыг сонгох" #. module: base #: view:ir.model:0 msgid "Fields Description" -msgstr "" +msgstr "Талбарын тодорхойлолт" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CDROM" -msgstr "" +msgstr "STOCK_CDROM" #. module: base #: field:ir.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 msgid "Readonly" -msgstr "" +msgstr "Зөвхөн харах" #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" -msgstr "" +msgstr "Үйл явдлын төрөл" #. module: base #: model:ir.actions.act_window,name:base.ir_sequence_type #: model:ir.ui.menu,name:base.menu_ir_sequence_type msgid "Sequence Types" -msgstr "" +msgstr "Дугаарлалтын төрлүүд" #. module: base #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 msgid "To be installed" -msgstr "" +msgstr "Суулгагдах" #. module: base #: model:ir.module.module,shortdesc:base.module_meta_information #: field:res.currency,base:0 msgid "Base" -msgstr "" +msgstr "Суурь" #. module: base #: model:res.country,name:base.lr msgid "Liberia" -msgstr "" +msgstr "Либери" #. module: base #: view:ir.attachment:0 @@ -5106,7 +5141,7 @@ msgstr "" #: field:res.partner,comment:0 #: field:res.partner.function,ref:0 msgid "Notes" -msgstr "" +msgstr "Тэмдэглэл" #. module: base #: field:ir.property,value:0 @@ -5115,149 +5150,149 @@ msgstr "" #: field:ir.values,value:0 #: field:ir.values,value_unpickle:0 msgid "Value" -msgstr "" +msgstr "Утга" #. module: base #: view:wizard.module.update_translations:0 msgid "Update Translations" -msgstr "" +msgstr "Орчуулга шинэчлэх" #. module: base #: view:res.config.view:0 msgid "Set" -msgstr "" +msgstr "Тохируулах" #. module: base #: model:res.country,name:base.mc msgid "Monaco" -msgstr "" +msgstr "Монако" #. module: base #: selection:ir.cron,interval_type:0 msgid "Minutes" -msgstr "" +msgstr "Минут" #. module: base #: wizard_view:module.upgrade,end:0 #: wizard_view:module.upgrade,start:0 msgid "The modules have been upgraded / installed !" -msgstr "" +msgstr "Модулиуд шинэчлэгдсэн / суусан !" #. module: base #: selection:ir.translation,type:0 #: view:wizard.module.lang.export:0 msgid "Help" -msgstr "" +msgstr "Тусламж" #. module: base #: model:ir.model,name:base.model_ir_ui_view msgid "ir.ui.view" -msgstr "" +msgstr "ir.ui.view" #. module: base #: wizard_button:server.action.create,step_1,create:0 msgid "Create" -msgstr "" +msgstr "Үүсгэх" #. module: base #: field:ir.exports,export_fields:0 msgid "Export ID" -msgstr "" +msgstr "Экспорт ID" #. module: base #: model:res.country,name:base.fr msgid "France" -msgstr "" +msgstr "Франц" #. module: base #: field:workflow.activity,flow_stop:0 msgid "Flow Stop" -msgstr "" +msgstr "Урсгалын зогсолт" #. module: base #: model:res.country,name:base.ar msgid "Argentina" -msgstr "" +msgstr "Аргентин" #. module: base #: model:res.country,name:base.af msgid "Afghanistan, Islamic State of" -msgstr "" +msgstr "Афганистан, Исламын муж" #. module: base #: code:addons/base/module/wizard/wizard_module_import.py:0 #, python-format msgid "Error !" -msgstr "" +msgstr "Алдаа!" #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field_contry msgid "country_id" -msgstr "" +msgstr "country_id" #. module: base #: field:ir.cron,interval_type:0 msgid "Interval Unit" -msgstr "" +msgstr "Интервал нэгж" #. module: base #: field:maintenance.contract,kind:0 #: field:workflow.activity,kind:0 msgid "Kind" -msgstr "" +msgstr "Төрөл" #. module: base #: selection:ir.actions.todo,start_on:0 msgid "Manual" -msgstr "" +msgstr "Гараар" #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 msgid "Fax" -msgstr "" +msgstr "Факс" #. module: base #: field:res.lang,thousands_sep:0 msgid "Thousands Separator" -msgstr "" +msgstr "Мянгатын тусгаарлагч" #. module: base #: field:res.request,create_date:0 msgid "Created Date" -msgstr "" +msgstr "Үүссэн огноо" #. module: base #: selection:ir.report.custom,type:0 msgid "Line Plot" -msgstr "" +msgstr "Мөрийн утга" #. module: base #: help:ir.actions.server,loop_action:0 msgid "" "Select the action that will be executed. Loop action will not be avaliable " "inside loop." -msgstr "" +msgstr "Гүйцэтгэх үйлдлийг сонгоно. Давталт доторхи давтах үйлдэл боломжгүй." #. module: base #: selection:module.lang.install,init,lang:0 msgid "Chinese (TW) / 正體字" -msgstr "" +msgstr "Хятад (TW) / 正體字" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GO_UP" -msgstr "" +msgstr "STOCK_GO_UP" #. module: base #: model:ir.model,name:base.model_res_request msgid "res.request" -msgstr "" +msgstr "res.request" #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "pdf" -msgstr "" +msgstr "pdf" #. module: base #: field:ir.default,company_id:0 @@ -5272,12 +5307,12 @@ msgstr "" #: field:res.users,company:0 #: field:res.users,company_id:0 msgid "Company" -msgstr "" +msgstr "Компани" #. module: base #: model:res.country,name:base.pa msgid "Panama" -msgstr "" +msgstr "Панама" #. module: base #: selection:ir.report.custom,state:0 @@ -5287,45 +5322,45 @@ msgstr "" #. module: base #: view:ir.attachment:0 msgid "Preview" -msgstr "" +msgstr "Урьдчилан харах" #. module: base #: view:ir.actions.configuration.wizard:0 msgid "Skip Step" -msgstr "" +msgstr "Алхамыг алгасах" #. module: base #: model:res.country,name:base.pn msgid "Pitcairn Island" -msgstr "" +msgstr "Питкэйрн арал" #. module: base #: model:ir.actions.act_window,name:base.res_partner_event_type-act #: model:ir.ui.menu,name:base.menu_res_partner_event_type-act msgid "Active Partner Events" -msgstr "" +msgstr "Харилцагчийн үйл явдлууд" #. module: base #: model:ir.actions.act_window,name:base.action_partner_function_form #: model:ir.ui.menu,name:base.menu_partner_function_form #: view:res.partner.function:0 msgid "Contact Functions" -msgstr "" +msgstr "Харьцах хүний үүрэг" #. module: base #: view:multi_company.default:0 msgid "Multi Company" -msgstr "" +msgstr "Олон компани" #. module: base #: view:ir.sequence:0 msgid "Day of the year: %(doy)s" -msgstr "" +msgstr "Жилийн өдөр: %(doy)s" #. module: base #: model:res.country,name:base.nt msgid "Neutral Zone" -msgstr "" +msgstr "Дундын бүс" #. module: base #: view:ir.model:0 @@ -5333,27 +5368,27 @@ msgstr "" #: view:ir.property:0 #: model:ir.ui.menu,name:base.next_id_15 msgid "Properties" -msgstr "" +msgstr "Шинжүүд" #. module: base #: view:res.lang:0 msgid "%A - Full weekday name." -msgstr "" +msgstr "%A - Гаригийн бүтэн нэр." #. module: base #: selection:ir.cron,interval_type:0 msgid "Months" -msgstr "" +msgstr "Сар" #. module: base #: selection:ir.translation,type:0 msgid "Selection" -msgstr "" +msgstr "Сонголт" #. module: base #: field:ir.actions.act_window,search_view:0 msgid "Search View" -msgstr "" +msgstr "Хайлтын дэлгэц" #. module: base #: field:ir.rule,domain_force:0 @@ -5363,49 +5398,49 @@ msgstr "" #. module: base #: help:ir.sequence,weight:0 msgid "If two sequences match, the highest weight will be used." -msgstr "" +msgstr "Хэрэв хоёр эрэмбэ давхацвал өндөх жинтэйг нь ашиглана." #. module: base #: model:ir.actions.act_window,name:base.action_attachment #: view:ir.attachment:0 #: model:ir.ui.menu,name:base.menu_action_attachment msgid "Attachments" -msgstr "" +msgstr "Хавсралтууд" #. module: base #: view:maintenance.contract.wizard:0 msgid "_Validate" -msgstr "" +msgstr "_Батлах" #. module: base #: model:ir.model,name:base.model_maintenance_contract_wizard msgid "maintenance.contract.wizard" -msgstr "" +msgstr "maintenance.contract.wizard" #. module: base #: field:ir.actions.server,child_ids:0 msgid "Other Actions" -msgstr "" +msgstr "Бусад үйлдлүүд" #. module: base #: selection:ir.actions.todo,state:0 msgid "Done" -msgstr "" +msgstr "Дууссан" #. module: base #: selection:maintenance.contract.wizard,state:0 msgid "Validated" -msgstr "" +msgstr "Батлагдсан" #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" -msgstr "" +msgstr "Хатагтай" #. module: base #: field:ir.model.access,perm_write:0 msgid "Write Access" -msgstr "" +msgstr "Бичих хандалт" #. module: base #: field:res.bank,city:0 @@ -5413,142 +5448,142 @@ msgstr "" #: field:res.partner.address,city:0 #: field:res.partner.bank,city:0 msgid "City" -msgstr "" +msgstr "Хот" #. module: base #: model:res.country,name:base.qa msgid "Qatar" -msgstr "" +msgstr "Катар" #. module: base #: model:res.country,name:base.it msgid "Italy" -msgstr "" +msgstr "Итали" #. module: base #: selection:ir.rule,operator:0 msgid "<>" -msgstr "" +msgstr "<>" #. module: base #: selection:ir.rule,operator:0 msgid "<=" -msgstr "" +msgstr "<=" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Estonian / Eesti keel" -msgstr "" +msgstr "Эстони / Eesti keel" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" -msgstr "" +msgstr "Португали / português" #. module: base #: selection:ir.module.module,license:0 msgid "GPL-3 or later version" -msgstr "" +msgstr "GPL-3 эсвэл сүүлийн хувилбар" #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "HTML from HTML(Mako)" -msgstr "" +msgstr "HTML-ээс HTML(Mako)" #. module: base #: field:workflow.activity,action:0 msgid "Python Action" -msgstr "" +msgstr "Python үйлдэл" #. module: base #: selection:module.lang.install,init,lang:0 msgid "English (US)" -msgstr "" +msgstr "English (US)" #. module: base #: field:res.partner.event,probability:0 msgid "Probability (0.50)" -msgstr "" +msgstr "Магадлал (0.50)" #. module: base #: field:ir.report.custom,repeat_header:0 msgid "Repeat Header" -msgstr "" +msgstr "Толгойг давтах" #. module: base #: view:res.bank:0 #: field:res.users,address_id:0 msgid "Address" -msgstr "" +msgstr "Хаяг" #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" -msgstr "" +msgstr "Суусан хувилбар" #. module: base #: model:ir.ui.menu,name:base.menu_workflow_root msgid "Workflow Definitions" -msgstr "" +msgstr "Ажлын ургсалын тодорхойлолтууд" #. module: base #: model:res.country,name:base.mr msgid "Mauritania" -msgstr "" +msgstr "Мавритани" #. module: base #: view:workflow.activity:0 #: field:workflow.workitem,act_id:0 msgid "Activity" -msgstr "" +msgstr "Ажилбар" #. module: base #: view:res.partner:0 #: view:res.partner.address:0 msgid "Postal Address" -msgstr "" +msgstr "Шуудан хаяг" #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" -msgstr "" +msgstr "Толгой компани" #. module: base #: field:res.currency.rate,rate:0 msgid "Rate" -msgstr "" +msgstr "Харьцаа" #. module: base #: model:res.country,name:base.cg msgid "Congo" -msgstr "" +msgstr "Конго" #. module: base #: model:ir.model,name:base.model_ir_exports_line msgid "ir.exports.line" -msgstr "" +msgstr "ir.exports.line" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_PAUSE" -msgstr "" +msgstr "STOCK_MEDIA_PAUSE" #. module: base #: model:ir.model,name:base.model_res_country_state msgid "Country state" -msgstr "" +msgstr "Муж" #. module: base #: model:ir.actions.act_window,name:base.ir_property_form_all #: model:ir.ui.menu,name:base.menu_ir_property_form_all msgid "All Properties" -msgstr "" +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 "" +msgstr "Цонхны үйлдлүүд" #. module: base #: model:res.country,name:base.kn @@ -5558,7 +5593,7 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_HOME" -msgstr "" +msgstr "STOCK_HOME" #. module: base #: field:ir.model,name:0 @@ -5566,7 +5601,7 @@ msgstr "" #: field:ir.model.grid,name:0 #: field:ir.values,model:0 msgid "Object Name" -msgstr "" +msgstr "Объектын нэр" #. module: base #: help:ir.actions.server,srcmodel_id:0 @@ -5579,24 +5614,24 @@ msgstr "" #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 msgid "Not Installed" -msgstr "" +msgstr "Суугаагүй" #. module: base #: field:workflow.activity,out_transitions:0 msgid "Outgoing Transitions" -msgstr "" +msgstr "Гарах шилжилт" #. module: base #: field:ir.ui.menu,icon:0 msgid "Icon" -msgstr "" +msgstr "Тэмдэг" #. module: base #: wizard_button:module.lang.import,init,finish:0 #: wizard_button:module.lang.install,start,end:0 #: wizard_button:module.module.update,update,open_window:0 msgid "Ok" -msgstr "" +msgstr "Ok" #. module: base #: model:res.country,name:base.mq @@ -5607,32 +5642,32 @@ msgstr "" #: model:ir.ui.menu,name:base.next_id_12 #: view:res.request:0 msgid "Requests" -msgstr "" +msgstr "Хүсэлтүүд" #. module: base #: model:res.country,name:base.ye msgid "Yemen" -msgstr "" +msgstr "Иемэн" #. module: base #: selection:workflow.activity,split_mode:0 msgid "Or" -msgstr "" +msgstr "Эсвэл" #. module: base #: model:res.country,name:base.pk msgid "Pakistan" -msgstr "" +msgstr "Пакистан" #. module: base #: model:res.country,name:base.al msgid "Albania" -msgstr "" +msgstr "Албани" #. module: base #: model:res.country,name:base.ws msgid "Samoa" -msgstr "" +msgstr "Самоа" #. module: base #: field:ir.ui.menu,child_id:0 @@ -5643,56 +5678,56 @@ msgstr "" #: code:addons/base/ir/ir_actions.py:0 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" -msgstr "" +msgstr "Серверийн үйлдэлд `Record Id` тохиргооны асуудал байна!" #. module: base #: code:addons/base/maintenance/maintenance.py:0 #, python-format msgid "This error occurs on database %s" -msgstr "" +msgstr "%s өгөгдлийн сан дээр алдаа гарав" #. module: base #: wizard_button:base.module.import,init,import:0 #: model:ir.actions.wizard,name:base.wizard_base_module_import #: model:ir.ui.menu,name:base.menu_wizard_module_import msgid "Import module" -msgstr "" +msgstr "Модуль импортлох" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DISCONNECT" -msgstr "" +msgstr "STOCK_DISCONNECT" #. module: base #: model:res.country,name:base.la msgid "Laos" -msgstr "" +msgstr "Лаос" #. module: base #: selection:ir.actions.server,state:0 msgid "Email" -msgstr "" +msgstr "Имэйл" #. module: base #: model:ir.actions.act_window,name:base.action_wizard_update_translations #: model:ir.ui.menu,name:base.menu_wizard_update_translations msgid "Resynchronise Terms" -msgstr "" +msgstr "Нэр томъёог сэлгэх" #. module: base #: model:res.country,name:base.tg msgid "Togo" -msgstr "" +msgstr "Того" #. module: base #: selection:workflow.activity,kind:0 msgid "Stop All" -msgstr "" +msgstr "Бүгдийг зогсоох" #. module: base #: view:res.lang:0 msgid "3. %x ,%X ==> 12/05/08, 18:25:20" -msgstr "" +msgstr "3. %x ,%X ==> 12/05/08, 18:25:20" #. module: base #: selection:ir.model.fields,on_delete:0 @@ -5709,27 +5744,27 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_inventory_form #: model:ir.ui.menu,name:base.menu_action_inventory_form msgid "Default Company per Object" -msgstr "" +msgstr "Объект бүрийн үндсэн компани" #. module: base #: view:ir.actions.configuration.wizard:0 msgid "Next Configuration Step" -msgstr "" +msgstr "Тохиргооны дараачийн алхам" #. module: base #: field:res.groups,comment:0 msgid "Comment" -msgstr "" +msgstr "Тайлбар" #. module: base #: model:res.country,name:base.ro msgid "Romania" -msgstr "" +msgstr "Румын" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PREFERENCES" -msgstr "" +msgstr "STOCK_PREFERENCES" #. module: base #: field:res.country.state,name:0 @@ -5739,23 +5774,23 @@ msgstr "" #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" -msgstr "" +msgstr "Холбох горим" #. module: base #: field:res.users,context_tz:0 msgid "Timezone" -msgstr "" +msgstr "Цагийн бүс" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_LAST" -msgstr "" +msgstr "STOCK_GOTO_LAST" #. module: base #: model:ir.model,name:base.model_ir_actions_report_xml #: selection:ir.ui.menu,action:0 msgid "ir.actions.report.xml" -msgstr "" +msgstr "ir.actions.report.xml" #. module: base #: view:wizard.module.lang.export:0 @@ -5765,11 +5800,14 @@ msgid "" "translations for your own module, you can also publish all your translation " "at once." msgstr "" +"OpenERP-н албан ёсны орчуулгыг сайжруулахын тулд шууд launchpad сайт дээр " +"засах нь зүйтэй. Хэрэв асар их орчуулга хийгдсэн бол нэг дор бүгдийг оруулах " +"боломж бас бий." #. module: base #: wizard_button:module.lang.install,init,start:0 msgid "Start installation" -msgstr "" +msgstr "Суулгалтыг эхлүүлэх" #. module: base #: help:res.lang,code:0 @@ -5779,12 +5817,12 @@ msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_2 msgid "OpenERP Partners" -msgstr "" +msgstr "OpenERP харилцагчид" #. module: base #: model:res.country,name:base.by msgid "Belarus" -msgstr "" +msgstr "Беларус" #. module: base #: field:ir.actions.act_window,name:0 @@ -5793,18 +5831,18 @@ msgstr "" #: field:ir.actions.server,name:0 #: field:ir.actions.url,name:0 msgid "Action Name" -msgstr "" +msgstr "Үйлдлийн нэр" #. module: base #: selection:res.request,priority:0 msgid "Normal" -msgstr "" +msgstr "Хэвийн" #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 msgid "Street2" -msgstr "" +msgstr "Гудамж2" #. module: base #: field:ir.cron,user_id:0 @@ -5813,12 +5851,12 @@ msgstr "" #: field:res.partner.event,user_id:0 #: view:res.users:0 msgid "User" -msgstr "" +msgstr "Хэрэглэгч" #. module: base #: model:res.country,name:base.pr msgid "Puerto Rico" -msgstr "" +msgstr "Пуэрто Рико" #. module: base #: code:addons/base/res/res_currency.py:0 @@ -5828,58 +5866,61 @@ msgid "" "' \\n 'for the currency: %s \n" "' \\n 'at the date: %s" msgstr "" +"Ханш олдсонгүй \n" +"' \\n 'валют: %s \n" +"' \\n 'огноо: %s" #. module: base #: view:ir.actions.act_window:0 msgid "Open Window" -msgstr "" +msgstr "Цонх нээх" #. module: base #: field:ir.actions.act_window,filter:0 #: field:ir.module.repository,filter:0 msgid "Filter" -msgstr "" +msgstr "Шүүлт" #. module: base #: model:res.country,name:base.ch msgid "Switzerland" -msgstr "" +msgstr "Швейцарь" #. module: base #: model:res.country,name:base.gd msgid "Grenada" -msgstr "" +msgstr "Гренада" #. module: base #: view:ir.actions.server:0 msgid "Trigger Configuration" -msgstr "" +msgstr "Гохын тохиргоо" #. module: base #: selection:server.action.create,init,type:0 msgid "Open Report" -msgstr "" +msgstr "Тайланг нээх" #. module: base #: field:res.currency,rounding:0 msgid "Rounding factor" -msgstr "" +msgstr "Тоймлох фактор" #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" -msgstr "" +msgstr "res.company" #. module: base #: wizard_view:module.upgrade,end:0 #: wizard_view:module.upgrade,start:0 msgid "System upgrade done" -msgstr "" +msgstr "Системийн шинэчлэл дууслаа" #. module: base #: model:res.country,name:base.so msgid "Somalia" -msgstr "" +msgstr "Сомали" #. module: base #: model:ir.actions.act_window,name:base.action_config_simple_view_form @@ -5889,7 +5930,7 @@ msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" -msgstr "" +msgstr "Чухал харилцагчид" #. module: base #: field:res.request,act_to:0 @@ -5900,55 +5941,55 @@ msgstr "" #. module: base #: field:ir.cron,args:0 msgid "Arguments" -msgstr "" +msgstr "Аргумент" #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "sxw" -msgstr "" +msgstr "sxw" #. module: base #: field:ir.actions.report.xml,auto:0 msgid "Automatic XSL:RML" -msgstr "" +msgstr "Автомат XSL:RML" #. module: base #: view:ir.rule:0 msgid "Manual domain setup" -msgstr "" +msgstr "Домэйн гараар тохируулах" #. module: base #: field:res.partner,customer:0 #: model:res.partner.category,name:base.res_partner_category_0 #: selection:res.partner.event,partner_type:0 msgid "Customer" -msgstr "" +msgstr "Худалдан авагч" #. module: base #: field:ir.actions.report.custom,name:0 #: field:ir.report.custom,name:0 msgid "Report Name" -msgstr "" +msgstr "Тайлангийн нэр" #. module: base #: field:ir.module.module,shortdesc:0 msgid "Short Description" -msgstr "" +msgstr "Товч тодорхойлолт" #. module: base #: field:res.partner.event,partner_type:0 msgid "Partner Relation" -msgstr "" +msgstr "Харилцагчийн хамаарал" #. module: base #: field:ir.actions.act_window,context:0 msgid "Context Value" -msgstr "" +msgstr "Контекст утга" #. module: base #: view:ir.sequence:0 msgid "Hour 00->24: %(h24)s" -msgstr "" +msgstr "Цаг 00->24: %(h24)" #. module: base #: help:multi_company.default,field_id:0 @@ -5958,12 +5999,12 @@ msgstr "" #. module: base #: field:res.request.history,date_sent:0 msgid "Date sent" -msgstr "" +msgstr "Илгээсэн огноо" #. module: base #: view:ir.sequence:0 msgid "Month: %(month)s" -msgstr "" +msgstr "Сар: %(сар)" #. module: base #: field:ir.actions.act_window.view,sequence:0 @@ -5977,17 +6018,17 @@ msgstr "" #: field:res.partner.bank,sequence:0 #: field:wizard.ir.model.menu.create.line,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Дугаарлалт" #. module: base #: model:res.country,name:base.tn msgid "Tunisia" -msgstr "" +msgstr "Тунис" #. module: base #: field:ir.actions.wizard,name:0 msgid "Wizard Info" -msgstr "" +msgstr "Визардын мэдээлэл" #. module: base #: help:ir.cron,numbercall:0 @@ -5995,21 +6036,23 @@ msgid "" "Number of time the function is called,\n" "a negative number indicates that the function will always be called" msgstr "" +"Функц дуудагдсан тоо,\n" +"сөрөг утга нь функц байнга дуудагдахыг илэрхийлнэ" #. module: base #: view:ir.module.module:0 msgid "Cancel Install" -msgstr "" +msgstr "Суулгахыг болих" #. module: base #: view:res.lang:0 msgid "Legends for Date and Time Formats" -msgstr "" +msgstr "Огноо форматлах тэмдэглэгээнүүд" #. module: base #: selection:ir.report.custom,frequency:0 msgid "Monthly" -msgstr "" +msgstr "Сарын" #. module: base #: model:ir.actions.act_window,name:base.res_partner_som-act @@ -6021,13 +6064,13 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_country_state #: model:ir.ui.menu,name:base.menu_country_state_partner msgid "Fed. States" -msgstr "" +msgstr "Аймаг/Муж" #. module: base #: view:ir.model:0 #: view:res.groups:0 msgid "Access Rules" -msgstr "" +msgstr "Хандалтын дүрмүүд" #. module: base #: field:ir.default,ref_table:0 @@ -6037,7 +6080,7 @@ msgstr "" #. module: base #: field:res.roles,parent_id:0 msgid "Parent" -msgstr "" +msgstr "Эцэг" #. module: base #: view:multi_company.default:0 @@ -6058,7 +6101,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -6066,32 +6108,32 @@ msgstr "" #: field:wizard.ir.model.menu.create,model_id:0 #: field:workflow.triggers,model:0 msgid "Object" -msgstr "" +msgstr "Объект" #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" -msgstr "" +msgstr "ir.default" #. module: base #: view:ir.sequence:0 msgid "Minute: %(min)s" -msgstr "" +msgstr "Минут: %(мин)" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_100" -msgstr "" +msgstr "STOCK_ZOOM_100" #. module: base #: view:res.lang:0 msgid "%w - Weekday as a decimal number [0(Sunday),6]." -msgstr "" +msgstr "%w - Гаригийн тоон дугаар [0(Ням),6]." #. module: base #: view:wizard.module.lang.export:0 msgid "Export translation file" -msgstr "" +msgstr "Орчуулгын файл экспортлох" #. module: base #: field:ir.ui.view_sc,user_id:0 @@ -6103,17 +6145,17 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_config #: view:res.company:0 msgid "Configuration" -msgstr "" +msgstr "Тохиргоо" #. module: base #: field:ir.actions.server,expression:0 msgid "Loop Expression" -msgstr "" +msgstr "Давтах илэрхийлэл" #. module: base #: selection:res.partner.event,partner_type:0 msgid "Retailer" -msgstr "" +msgstr "Жижиглэн худалдагч" #. module: base #: selection:ir.report.custom,type:0 @@ -6128,7 +6170,7 @@ msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_5 msgid "Gold Partner" -msgstr "" +msgstr "Алтан харилцагч" #. module: base #: model:ir.model,name:base.model_res_partner @@ -6139,29 +6181,29 @@ msgstr "" #: selection:res.partner.title,domain:0 #: view:res.users:0 msgid "Partner" -msgstr "" +msgstr "Харилцагч" #. module: base #: model:res.country,name:base.tr msgid "Turkey" -msgstr "" +msgstr "Турк" #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" -msgstr "" +msgstr "Фолклендын арлууд" #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "odt" -msgstr "" +msgstr "odt" #. module: base #: field:ir.actions.report.custom,type:0 #: field:ir.actions.report.xml,type:0 #: field:ir.report.custom,type:0 msgid "Report Type" -msgstr "" +msgstr "Тайлангийн төрөл" #. module: base #: field:ir.actions.todo,state:0 @@ -6176,7 +6218,7 @@ msgstr "" #: field:workflow.instance,state:0 #: field:workflow.workitem,state:0 msgid "State" -msgstr "" +msgstr "Төлөв" #. module: base #: selection:ir.module.module,license:0 @@ -6186,49 +6228,49 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-administration" -msgstr "" +msgstr "terp-administration" #. module: base #: model:ir.actions.act_window,name:base.action_translation #: model:ir.ui.menu,name:base.menu_action_translation msgid "All terms" -msgstr "" +msgstr "Бүх нэр томъёо" #. module: base #: model:res.country,name:base.no msgid "Norway" -msgstr "" +msgstr "Норвеги" #. module: base #: view:res.lang:0 msgid "4. %b, %B ==> Dec, December" -msgstr "" +msgstr "4. %b, %B ==> 12, 12 сар" #. 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 "" +msgstr "Албан ёсны орчуулга ачаалах" #. module: base #: model:res.partner.category,name:base.res_partner_category_10 msgid "Open Source Service Company" -msgstr "" +msgstr "Нээлттэй эхийн үйлчилгээний компани" #. module: base #: selection:res.request,state:0 msgid "waiting" -msgstr "" +msgstr "хүлээж байна" #. module: base #: field:ir.attachment,link:0 msgid "Link" -msgstr "" +msgstr "Холбоос" #. module: base #: model:ir.model,name:base.model_workflow_triggers msgid "workflow.triggers" -msgstr "" +msgstr "workflow.triggers" #. module: base #: field:ir.report.custom.fields,report_id:0 @@ -6238,7 +6280,7 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-hr" -msgstr "" +msgstr "terp-hr" #. module: base #: help:ir.actions.wizard,multi:0 @@ -6250,7 +6292,7 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DND" -msgstr "" +msgstr "STOCK_DND" #. module: base #: model:res.country,name:base.hm @@ -6272,12 +6314,12 @@ msgstr "" #: view:ir.module.repository:0 #: model:ir.ui.menu,name:base.menu_module_repository_tree msgid "Repository list" -msgstr "" +msgstr "Агуулахын жагсаалт" #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" -msgstr "" +msgstr "Тайлангийн толгой" #. module: base #: field:ir.actions.act_window,type:0 @@ -6288,33 +6330,33 @@ msgstr "" #: field:ir.actions.url,type:0 #: field:ir.actions.wizard,type:0 msgid "Action Type" -msgstr "" +msgstr "Үйлдлийн төрөл" #. module: base #: field:res.partner.bank.type,field_ids:0 msgid "Type fields" -msgstr "" +msgstr "Төрлийн талбарууд" #. module: base #: field:ir.module.module,category_id:0 msgid "Category" -msgstr "" +msgstr "Ангилал" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FLOPPY" -msgstr "" +msgstr "STOCK_FLOPPY" #. module: base #: field:ir.actions.server,sms:0 #: selection:ir.actions.server,state:0 msgid "SMS" -msgstr "" +msgstr "SMS" #. module: base #: model:res.country,name:base.cr msgid "Costa Rica" -msgstr "" +msgstr "Коста Рика" #. module: base #: code:addons/base/maintenance/maintenance.py:0 @@ -6325,75 +6367,75 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_other_form msgid "Other Partners" -msgstr "" +msgstr "Бусад харилцагчид" #. module: base #: view:ir.model:0 #: view:res.request:0 msgid "Status" -msgstr "" +msgstr "Байдал" #. module: base #: model:ir.actions.act_window,name:base.action_currency_form #: model:ir.ui.menu,name:base.menu_action_currency_form #: view:res.currency:0 msgid "Currencies" -msgstr "" +msgstr "Валютууд" #. module: base #: view:ir.sequence:0 msgid "Hour 00->12: %(h12)s" -msgstr "" +msgstr "Цаг 00->12: %(h12)" #. module: base #: help:res.partner.address,active:0 msgid "Uncheck the active field to hide the contact." -msgstr "" +msgstr "Харьцах хүнийг нуухын тулд идэвхитэй чагтыг авч хаяна." #. module: base #: model:res.country,name:base.dk msgid "Denmark" -msgstr "" +msgstr "Дани" #. module: base #: field:res.country,code:0 msgid "Country Code" -msgstr "" +msgstr "Улсын код" #. module: base #: model:ir.model,name:base.model_workflow_instance msgid "workflow.instance" -msgstr "" +msgstr "workflow.instance" #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" -msgstr "" +msgstr "10. %S ==> 20" #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" -msgstr "" +msgstr "Хатагтай" #. module: base #: model:res.country,name:base.ee msgid "Estonia" -msgstr "" +msgstr "Эстони" #. module: base #: model:res.country,name:base.nl msgid "Netherlands" -msgstr "" +msgstr "Нидерланд" #. module: base #: model:ir.ui.menu,name:base.next_id_4 msgid "Low Level Objects" -msgstr "" +msgstr "Доод түвшний объектууд" #. module: base #: model:ir.model,name:base.model_ir_report_custom msgid "ir.report.custom" -msgstr "" +msgstr "ir.report.custom" #. module: base #: selection:res.partner.event,type:0 @@ -6403,12 +6445,12 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" -msgstr "" +msgstr "ir.values" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_FIT" -msgstr "" +msgstr "STOCK_ZOOM_FIT" #. module: base #: model:res.country,name:base.cd @@ -6420,38 +6462,38 @@ msgstr "" #: field:res.request,body:0 #: field:res.request.history,req_id:0 msgid "Request" -msgstr "" +msgstr "Хүсэлт" #. module: base #: model:res.country,name:base.jp msgid "Japan" -msgstr "" +msgstr "Япон" #. module: base #: field:ir.cron,numbercall:0 msgid "Number of Calls" -msgstr "" +msgstr "Дуудлагын тоо" #. module: base #: wizard_view:module.lang.install,start:0 msgid "Language file loaded." -msgstr "" +msgstr "Хэлний файл ачаалагдсан." #. module: base #: wizard_view:module.upgrade,next:0 #: wizard_field:module.upgrade,next,module_info:0 msgid "Modules to update" -msgstr "" +msgstr "Шинэчилэх модулиуд" #. module: base #: model:ir.actions.act_window,name:base.action2 msgid "Company Architecture" -msgstr "" +msgstr "Компанийн бүтэц" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" -msgstr "" +msgstr "STOCK_GOTO_BOTTOM" #. module: base #: help:ir.actions.server,sequence:0 @@ -6463,17 +6505,17 @@ msgstr "" #. module: base #: field:ir.actions.report.xml,header:0 msgid "Add RML header" -msgstr "" +msgstr "Бүх RML толгой" #. module: base #: model:res.country,name:base.gr msgid "Greece" -msgstr "" +msgstr "Грек" #. module: base #: field:res.request,trigger_date:0 msgid "Trigger Date" -msgstr "" +msgstr "Гогодох огноо" #. module: base #: selection:module.lang.install,init,lang:0 @@ -6483,33 +6525,33 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GO_FORWARD" -msgstr "" +msgstr "STOCK_GO_FORWARD" #. module: base #: help:ir.actions.server,code:0 msgid "Python code to be executed" -msgstr "" +msgstr "Ажиллах python код" #. module: base #: selection:ir.module.module.dependency,state:0 msgid "Uninstallable" -msgstr "" +msgstr "Устгаж боломгүй" #. module: base #: view:res.partner.category:0 msgid "Partner Category" -msgstr "" +msgstr "Харилцагчийн ангилал" #. module: base #: view:ir.actions.server:0 #: selection:ir.actions.server,state:0 msgid "Trigger" -msgstr "" +msgstr "Гох" #. module: base #: field:ir.model.fields,translate:0 msgid "Translate" -msgstr "" +msgstr "Орчуулах" #. module: base #: view:ir.actions.server:0 @@ -6517,54 +6559,56 @@ msgid "" "Access all the fields related to the current object using expression in " "double brackets, i.e. [[ object.partner_id.name ]]" msgstr "" +"Давхар хаалт бичиглэл ашиглан объектын бүх талбаруудад хандана, ө.х [[ " +"object.partner_id.name ]]" #. module: base #: field:res.request.history,body:0 msgid "Body" -msgstr "" +msgstr "Бие" #. module: base #: wizard_button:res.partner.spam_send,init,send:0 msgid "Send Email" -msgstr "" +msgstr "Мэйл Илгээх" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_SELECT_FONT" -msgstr "" +msgstr "STOCK_SELECT_FONT" #. module: base #: field:res.users,menu_id:0 msgid "Menu Action" -msgstr "" +msgstr "Цэс үйлдэл" #. module: base #: selection:wizard.module.lang.export,state:0 msgid "choose" -msgstr "" +msgstr "сонгох" #. module: base #: selection:ir.actions.act_window.view,view_mode:0 #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Graph" -msgstr "" +msgstr "Граф" #. module: base #: field:res.partner,child_ids:0 #: field:res.request,ref_partner_id:0 msgid "Partner Ref." -msgstr "" +msgstr "Харилцагч" #. module: base #: field:ir.report.custom,print_format:0 msgid "Print format" -msgstr "" +msgstr "Хэвлэх формат" #. module: base #: model:ir.ui.menu,name:base.menu_low_workflow msgid "Workflow Items" -msgstr "" +msgstr "Ажлын урсгалын элементүүд" #. module: base #: field:res.request,ref_doc2:0 @@ -6579,23 +6623,23 @@ msgstr "" #. module: base #: model:res.country,name:base.ga msgid "Gabon" -msgstr "" +msgstr "Габон" #. module: base #: model:ir.model,name:base.model_ir_model_data msgid "ir.model.data" -msgstr "" +msgstr "ir.model.data" #. module: base #: view:ir.model:0 #: view:res.groups:0 msgid "Access Rights" -msgstr "" +msgstr "Хандалтын эрхүүд" #. module: base #: model:res.country,name:base.gl msgid "Greenland" -msgstr "" +msgstr "Греенланд" #. module: base #: help:ir.actions.report.xml,report_rml:0 @@ -6606,12 +6650,12 @@ msgstr "" #. module: base #: field:res.partner.bank,acc_number:0 msgid "Account Number" -msgstr "" +msgstr "Дансны дугаар" #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" -msgstr "" +msgstr "1. %c ==> Ба 12сар 5 18:25:20 2008" #. module: base #: help:ir.ui.menu,groups_id:0 @@ -6620,6 +6664,8 @@ msgid "" "groups. If this field is empty, Open ERP will compute visibility based on " "the related object's read access." msgstr "" +"Хэрэв групп байгаа бол энэ цэсний харагдац нь групп дээр үндэслэнэ. Хэрэв " +"хоосон бол объектын унших хандалт дээр үндэслэн харагдацыг тодорхойлно." #. module: base #: model:res.country,name:base.nc @@ -6629,24 +6675,24 @@ msgstr "" #. module: base #: field:res.partner.function,name:0 msgid "Function Name" -msgstr "" +msgstr "Функцийн нэр" #. module: base #: view:maintenance.contract.wizard:0 msgid "_Cancel" -msgstr "" +msgstr "_Болих" #. module: base #: model:res.country,name:base.cy msgid "Cyprus" -msgstr "" +msgstr "Кипр" #. module: base #: field:ir.actions.server,subject:0 #: wizard_field:res.partner.spam_send,init,subject:0 #: field:res.request,name:0 msgid "Subject" -msgstr "" +msgstr "Сэдэв" #. module: base #: field:res.request,act_from:0 @@ -6657,49 +6703,49 @@ msgstr "" #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" -msgstr "" +msgstr "Дараах" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" -msgstr "" +msgstr "terp-report" #. module: base #: field:ir.actions.report.xml,report_rml_content:0 #: field:ir.actions.report.xml,report_rml_content_data:0 msgid "RML content" -msgstr "" +msgstr "RML агуулга" #. module: base #: view:workflow.activity:0 msgid "Incoming transitions" -msgstr "" +msgstr "Орох шилжилтүүд" #. module: base #: model:res.country,name:base.cn msgid "China" -msgstr "" +msgstr "Хятад" #. module: base #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "Password empty !" -msgstr "" +msgstr "Нууц үг хоосон" #. module: base #: model:res.country,name:base.eh msgid "Western Sahara" -msgstr "" +msgstr "Баруун сахар" #. module: base #: model:ir.model,name:base.model_workflow msgid "workflow" -msgstr "" +msgstr "ажлын урсгал" #. module: base #: model:res.country,name:base.id msgid "Indonesia" -msgstr "" +msgstr "Индонез" #. module: base #: selection:ir.actions.todo,start_on:0 @@ -6714,12 +6760,12 @@ msgstr "" #. module: base #: model:res.country,name:base.bg msgid "Bulgaria" -msgstr "" +msgstr "Болгар" #. module: base #: model:res.country,name:base.ao msgid "Angola" -msgstr "" +msgstr "Ангол" #. module: base #: model:res.country,name:base.tf @@ -6736,7 +6782,7 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_HELP" -msgstr "" +msgstr "STOCK_HELP" #. module: base #: model:ir.model,name:base.model_res_currency @@ -6747,28 +6793,28 @@ msgstr "" #: field:res.currency,name:0 #: field:res.currency.rate,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Валют" #. module: base #: field:res.partner.canal,name:0 msgid "Channel Name" -msgstr "" +msgstr "Сувгийн нэр" #. module: base #: view:res.lang:0 msgid "5. %y, %Y ==> 08, 2008" -msgstr "" +msgstr "5. %y, %Y ==> 08, 2008" #. module: base #: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 msgid "Object ID" -msgstr "" +msgstr "Объектын ID" #. module: base #: selection:ir.report.custom,print_orientation:0 msgid "Landscape" -msgstr "" +msgstr "Хэвтээ" #. module: base #: model:ir.actions.act_window,name:base.action_partner_form @@ -6779,82 +6825,82 @@ msgstr "" #: view:res.partner.category:0 #: field:res.partner.category,partner_ids:0 msgid "Partners" -msgstr "" +msgstr "Харилцагч" #. module: base #: model:ir.ui.menu,name:base.menu_administration msgid "Administration" -msgstr "" +msgstr "Удирдлага" #. module: base #: selection:ir.rule,operator:0 msgid "child_of" -msgstr "" +msgstr "child_of" #. module: base #: view:res.users:0 #: field:res.users,company_ids:0 msgid "Accepted Companies" -msgstr "" +msgstr "Зөвшөөрөгдсөн компаниуд" #. module: base #: field:ir.report.custom.fields,operation:0 #: field:ir.ui.menu,icon_pict:0 #: field:wizard.module.lang.export,state:0 msgid "unknown" -msgstr "" +msgstr "тодорхойгүй" #. module: base #: field:ir.ui.view_sc,res_id:0 msgid "Resource Ref." -msgstr "" +msgstr "Нөөцийн код." #. module: base #: model:res.country,name:base.ki msgid "Kiribati" -msgstr "" +msgstr "Кирибати" #. module: base #: model:res.country,name:base.iq msgid "Iraq" -msgstr "" +msgstr "Ирак" #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" -msgstr "" +msgstr "Эхлүүлэх үйлдэл" #. module: base #: wizard_view:base.module.import,import:0 #: wizard_view:base.module.import,init:0 msgid "Module import" -msgstr "" +msgstr "Модуль импортлох" #. module: base #: model:ir.model,name:base.model_ir_sequence_type msgid "ir.sequence.type" -msgstr "" +msgstr "ir.sequence.type" #. module: base #: selection:wizard.module.lang.export,format:0 msgid "CSV File" -msgstr "" +msgstr "CSV файл" #. module: base #: selection:ir.model,state:0 #: selection:ir.model.grid,state:0 msgid "Base Object" -msgstr "" +msgstr "Суурь объект" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-crm" -msgstr "" +msgstr "terp-crm" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_STRIKETHROUGH" -msgstr "" +msgstr "STOCK_STRIKETHROUGH" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -6862,32 +6908,32 @@ msgstr "" #: selection:ir.report.custom.fields,fc2_op:0 #: selection:ir.report.custom.fields,fc3_op:0 msgid "(year)=" -msgstr "" +msgstr "(year)=" #. module: base #: rml:ir.module.reference:0 msgid "Dependencies :" -msgstr "" +msgstr "Хамаарал:" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-partner" -msgstr "" +msgstr "terp-partner" #. module: base #: field:ir.model.fields,field_description:0 msgid "Field Label" -msgstr "" +msgstr "Талбарын гарчиг" #. module: base #: model:res.country,name:base.dj msgid "Djibouti" -msgstr "" +msgstr "Джибут" #. module: base #: field:ir.translation,value:0 msgid "Translation Value" -msgstr "" +msgstr "Орчуулгын утга" #. module: base #: model:res.country,name:base.ag @@ -6901,12 +6947,12 @@ msgstr "" #: view:multi_company.default:0 #: field:workflow.transition,condition:0 msgid "Condition" -msgstr "" +msgstr "Нөхцөл" #. module: base #: model:res.country,name:base.zr msgid "Zaire" -msgstr "" +msgstr "Зайрэ" #. module: base #: field:ir.attachment,res_id:0 @@ -6915,7 +6961,7 @@ msgstr "" #: field:workflow.instance,res_id:0 #: field:workflow.triggers,res_id:0 msgid "Resource ID" -msgstr "" +msgstr "Нөөц ID" #. module: base #: view:ir.cron:0 @@ -6923,7 +6969,7 @@ msgstr "" #: field:ir.model.grid,info:0 #: view:maintenance.contract:0 msgid "Information" -msgstr "" +msgstr "Мэдээлэл" #. module: base #: view:wizard.module.lang.export:0 @@ -6936,7 +6982,7 @@ msgstr "" #. module: base #: field:ir.actions.report.xml,report_rml:0 msgid "RML path" -msgstr "" +msgstr "RML зам" #. module: base #: field:ir.actions.configuration.wizard,item_id:0 @@ -6947,28 +6993,28 @@ msgstr "" #: selection:ir.actions.todo,type:0 #: selection:res.partner.address,type:0 msgid "Other" -msgstr "" +msgstr "Бусад" #. module: base #: view:res.request:0 msgid "Reply" -msgstr "" +msgstr "Хариулах" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Turkish / Türkçe" -msgstr "" +msgstr "Турк / Türkçe" #. module: base #: model:ir.actions.act_window,name:base.action_translation_untrans #: model:ir.ui.menu,name:base.menu_action_translation_untrans msgid "Untranslated terms" -msgstr "" +msgstr "Орчуулаагүй үгүүд" #. module: base #: wizard_view:module.lang.import,init:0 msgid "Import New Language" -msgstr "" +msgstr "Шинэ хэл импортлох" #. module: base #: model:ir.actions.act_window,name:base.action_workflow_activity_form @@ -6981,7 +7027,7 @@ msgstr "" #. module: base #: field:ir.actions.act_window,auto_refresh:0 msgid "Auto-Refresh" -msgstr "" +msgstr "Авто-Шинэчлэл" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -6990,7 +7036,7 @@ msgstr "" #: selection:ir.report.custom.fields,fc3_op:0 #: selection:ir.rule,operator:0 msgid "=" -msgstr "" +msgstr "=" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 @@ -7002,7 +7048,7 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_model_grid_security #: model:ir.ui.menu,name:base.menu_ir_access_grid msgid "Access Controls Grid" -msgstr "" +msgstr "Хандалтын удирдах хүснэгт" #. module: base #: model:ir.actions.act_window,name:base.ir_sequence_actions @@ -7010,17 +7056,17 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_ir_sequence_actions #: model:ir.ui.menu,name:base.next_id_6 msgid "Actions" -msgstr "" +msgstr "Үйлдлүүд" #. module: base #: selection:res.request,priority:0 msgid "High" -msgstr "" +msgstr "Өндөр" #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" -msgstr "" +msgstr "Экспорт" #. module: base #: help:res.bank,bic:0 @@ -7030,7 +7076,7 @@ msgstr "" #. module: base #: model:res.country,name:base.tm msgid "Turkmenistan" -msgstr "" +msgstr "Туркменстан" #. module: base #: model:res.country,name:base.pm @@ -7045,37 +7091,37 @@ msgstr "" #. module: base #: field:res.partner.event,document:0 msgid "Document" -msgstr "" +msgstr "Баримт" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REFRESH" -msgstr "" +msgstr "STOCK_REFRESH" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_STOP" -msgstr "" +msgstr "STOCK_STOP" #. module: base #: view:wizard.module.update_translations:0 msgid "Update" -msgstr "" +msgstr "Шинэчлэх" #. module: base #: model:ir.actions.report.xml,name:base.ir_module_reference_print msgid "Technical guide" -msgstr "" +msgstr "Техник баримт" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONVERT" -msgstr "" +msgstr "STOCK_CONVERT" #. module: base #: model:res.country,name:base.tz msgid "Tanzania" -msgstr "" +msgstr "Танзани" #. module: base #: selection:module.lang.install,init,lang:0 @@ -7085,7 +7131,7 @@ msgstr "" #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" -msgstr "" +msgstr "Зул сарын арал" #. module: base #: view:ir.actions.server:0 @@ -7095,55 +7141,55 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_EXECUTE" -msgstr "" +msgstr "STOCK_EXECUTE" #. module: base #: model:ir.actions.act_window,name:base.res_partner_canal-act #: model:ir.model,name:base.model_res_partner_canal #: model:ir.ui.menu,name:base.menu_res_partner_canal-act msgid "Channels" -msgstr "" +msgstr "Сувгууд" #. module: base #: view:ir.module.module:0 msgid "Schedule for Installation" -msgstr "" +msgstr "Суулгахаар товлох" #. module: base #: selection:ir.model.fields,select_level:0 msgid "Advanced Search" -msgstr "" +msgstr "Дэлгэрэнгүй хайлт" #. module: base #: model:ir.model,name:base.model_res_partner_bank #: view:res.partner.bank:0 msgid "Bank Accounts" -msgstr "" +msgstr "Банкны дансууд" #. module: base #: view:res.request:0 msgid "Send" -msgstr "" +msgstr "Илгээх" #. module: base #: field:ir.translation,src:0 msgid "Source" -msgstr "" +msgstr "Эх" #. module: base #: help:res.partner.address,partner_id:0 msgid "Keep empty for a private address, not related to partner." -msgstr "" +msgstr "Харилцагчтай хамааралгүй хувийн хаяг бол хоосон орхино." #. module: base #: model:res.country,name:base.vu msgid "Vanuatu" -msgstr "" +msgstr "Вануату" #. module: base #: view:res.company:0 msgid "Internal Header/Footer" -msgstr "" +msgstr "Дотоод Толгой/Хөл" #. module: base #: code:addons/base/module/wizard/wizard_export_lang.py:0 @@ -7152,12 +7198,14 @@ 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 #: wizard_button:module.upgrade,end,config:0 #: wizard_button:module.upgrade,start,config:0 msgid "Start configuration" -msgstr "" +msgstr "Тохиргоо эхлэх" #. module: base #: selection:module.lang.install,init,lang:0 @@ -7167,17 +7215,17 @@ msgstr "" #. module: base #: model:res.country,name:base.do msgid "Dominican Republic" -msgstr "" +msgstr "Доминик ард улс" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COLOR_PICKER" -msgstr "" +msgstr "STOCK_COLOR_PICKER" #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" -msgstr "" +msgstr "Саудын Араб" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 @@ -7191,6 +7239,8 @@ msgid "" "Check this box if the partner is a supplier. If it's not checked, purchase " "people will not see it when encoding a purchase order." msgstr "" +"Хэрэв нийлүүлэгч бол үүнийг чагтлана. Хэрэв чагтлахгүй бол татан авалтын " +"хүмүүст харагдахгүй." #. module: base #: field:ir.model.fields,relation_field:0 @@ -7210,27 +7260,27 @@ msgstr "" #. module: base #: view:wizard.module.lang.export:0 msgid "https://translations.launchpad.net/openobject" -msgstr "" +msgstr "https://translations.launchpad.net/openobject" #. module: base #: field:ir.actions.todo,start_date:0 msgid "Start Date" -msgstr "" +msgstr "Эхлэл огноо" #. module: base #: field:ir.actions.report.xml,report_xml:0 msgid "XML path" -msgstr "" +msgstr "XML зам" #. module: base #: model:res.country,name:base.gn msgid "Guinea" -msgstr "" +msgstr "Гвиней" #. module: base #: model:res.country,name:base.lu msgid "Luxembourg" -msgstr "" +msgstr "Люксембург" #. module: base #: model:ir.actions.todo,note:base.config_wizard_step_user @@ -7240,27 +7290,31 @@ msgid "" "of each users on the different objects of the system.\n" " " msgstr "" +"Хэрэглэгчид үүсгэх.\n" +"Хэрэглэгчийг группэд хамааруулж болно. Групп нь хэрэглэгчийн объектуудад " +"хандах эрхийг тодорхойлно.\n" +" " #. module: base #: selection:res.request,priority:0 msgid "Low" -msgstr "" +msgstr "Бага" #. module: base #: view:ir.values:0 msgid "tree_but_action, client_print_multi" -msgstr "" +msgstr "tree_but_action, client_print_multi" #. module: base #: model:res.country,name:base.sv msgid "El Salvador" -msgstr "" +msgstr "Эл салвадор" #. module: base #: field:res.bank,phone:0 #: field:res.partner.address,phone:0 msgid "Phone" -msgstr "" +msgstr "Утас" #. module: base #: field:res.groups,menu_access:0 @@ -7270,7 +7324,7 @@ msgstr "" #. module: base #: model:res.country,name:base.th msgid "Thailand" -msgstr "" +msgstr "Тайланд" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -7278,33 +7332,33 @@ msgstr "" #: selection:ir.report.custom.fields,fc2_op:0 #: selection:ir.report.custom.fields,fc3_op:0 msgid ">" -msgstr "" +msgstr ">" #. module: base #: field:ir.model.access,perm_unlink:0 msgid "Delete Permission" -msgstr "" +msgstr "Устгах эрх" #. module: base #: model:ir.model,name:base.model_multi_company_default msgid "multi_company.default" -msgstr "" +msgstr "multi_company.default" #. module: base #: selection:workflow.activity,join_mode:0 #: selection:workflow.activity,split_mode:0 msgid "And" -msgstr "" +msgstr "Ба" #. module: base #: field:ir.model.fields,relation:0 msgid "Object Relation" -msgstr "" +msgstr "Объектын хамаарал" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PRINT" -msgstr "" +msgstr "STOCK_PRINT" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -7312,18 +7366,18 @@ msgstr "" #: selection:ir.report.custom.fields,fc2_op:0 #: selection:ir.report.custom.fields,fc3_op:0 msgid "<" -msgstr "" +msgstr "<" #. module: base #: model:res.country,name:base.uz msgid "Uzbekistan" -msgstr "" +msgstr "Узбекистан" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window #: selection:ir.ui.menu,action:0 msgid "ir.actions.act_window" -msgstr "" +msgstr "ir.actions.act_window" #. module: base #: model:res.country,name:base.vi @@ -7333,7 +7387,7 @@ msgstr "" #. module: base #: model:res.country,name:base.tw msgid "Taiwan" -msgstr "" +msgstr "Тайвань" #. module: base #: view:ir.rule:0 @@ -7360,17 +7414,17 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" -msgstr "" +msgstr "workflow.workitem" #. module: base #: selection:ir.module.module,state:0 msgid "Not Installable" -msgstr "" +msgstr "Суулгах боломжгүй" #. module: base #: rml:ir.module.reference:0 msgid "View :" -msgstr "" +msgstr "Дэлгэц :" #. module: base #: field:ir.model.fields,view_load:0 @@ -7381,34 +7435,34 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_partner_supplier_form #: view:res.partner:0 msgid "Suppliers" -msgstr "" +msgstr "Нийлүүлэгчид" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_JUMP_TO" -msgstr "" +msgstr "STOCK_JUMP_TO" #. module: base #: field:ir.actions.todo,end_date:0 msgid "End Date" -msgstr "" +msgstr "Дуусах огноо" #. module: base #: field:ir.exports,resource:0 #: field:ir.property,res_id:0 msgid "Resource" -msgstr "" +msgstr "Нөөц" #. module: base #: field:maintenance.contract,name:0 #: field:maintenance.contract.wizard,name:0 msgid "Contract ID" -msgstr "" +msgstr "Гэрээний код" #. module: base #: selection:ir.report.custom.fields,alignment:0 msgid "center" -msgstr "" +msgstr "төв" #. module: base #: field:maintenance.contract.wizard,state:0 @@ -7418,7 +7472,7 @@ msgstr "" #. module: base #: view:multi_company.default:0 msgid "Matching" -msgstr "" +msgstr "Тулгалт" #. module: base #: field:ir.actions.configuration.wizard,name:0 @@ -7429,23 +7483,23 @@ msgstr "" #: field:ir.attachment,datas_fname:0 #: field:wizard.module.lang.export,name:0 msgid "Filename" -msgstr "" +msgstr "Файлын нэр" #. module: base #: field:ir.model,access_ids:0 #: field:ir.model.grid,access_ids:0 msgid "Access" -msgstr "" +msgstr "Хандалт" #. module: base #: model:res.country,name:base.sk msgid "Slovak Republic" -msgstr "" +msgstr "Словак Улс" #. module: base #: model:res.country,name:base.aw msgid "Aruba" -msgstr "" +msgstr "Аруб" #. module: base #: selection:ir.cron,interval_type:0 @@ -7455,29 +7509,29 @@ msgstr "" #. module: base #: field:res.groups,name:0 msgid "Group Name" -msgstr "" +msgstr "Бүлгийн нэр" #. module: base #: model:res.country,name:base.bh msgid "Bahrain" -msgstr "" +msgstr "Бахрейн" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 msgid "Segmentation" -msgstr "" +msgstr "Хуваагдал" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FIND" -msgstr "" +msgstr "STOCK_FIND" #. module: base #: model:ir.actions.act_window,name:base.action_maintenance_contract_add_wizard #: model:ir.ui.menu,name:base.menu_maintenance_contract_add #: view:maintenance.contract.wizard:0 msgid "Add Maintenance Contract" -msgstr "" +msgstr "Үйлчилгээний гэрээ нэмэх" #. module: base #: selection:module.lang.install,init,lang:0 @@ -7488,7 +7542,7 @@ msgstr "" #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 msgid "Limit" -msgstr "" +msgstr "Хязгаар" #. module: base #: help:ir.actions.server,wkf_model_id:0 @@ -7498,28 +7552,28 @@ msgstr "" #. module: base #: model:res.country,name:base.jm msgid "Jamaica" -msgstr "" +msgstr "Ямайка" #. module: base #: model:res.country,name:base.az msgid "Azerbaijan" -msgstr "" +msgstr "Азербайжан" #. module: base #: code:addons/base/res/partner/partner.py:0 #, python-format msgid "Warning" -msgstr "" +msgstr "Сануулга" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Arabic / الْعَرَبيّة" -msgstr "" +msgstr "Араб / الْعَرَبيّة" #. module: base #: model:res.country,name:base.gi msgid "Gibraltar" -msgstr "" +msgstr "Гибралтар" #. module: base #: model:res.country,name:base.vg @@ -7529,12 +7583,12 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_PREVIOUS" -msgstr "" +msgstr "STOCK_MEDIA_PREVIOUS" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Czech / Čeština" -msgstr "" +msgstr "Чех / Čeština" #. module: base #: model:res.country,name:base.wf @@ -7544,27 +7598,27 @@ msgstr "" #. module: base #: model:res.country,name:base.rw msgid "Rwanda" -msgstr "" +msgstr "Руанда" #. module: base #: constraint:res.partner:0 msgid "The VAT doesn't seem to be correct." -msgstr "" +msgstr "НӨАТ буруу байж магадгүй." #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Calculate Sum" -msgstr "" +msgstr "Нийлбэрийг бодох" #. module: base #: view:ir.sequence:0 msgid "Day of the week (0:Monday): %(weekday)s" -msgstr "" +msgstr "Гариг (0:Даваа): %(weekday)s" #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" -msgstr "" +msgstr "Кукийн арлууд" #. module: base #: help:ir.actions.server,mobile:0 @@ -7587,7 +7641,7 @@ msgstr "" #. module: base #: model:res.country,name:base.sg msgid "Singapore" -msgstr "" +msgstr "Сингапур" #. module: base #: selection:ir.actions.act_window,target:0 @@ -7597,12 +7651,12 @@ msgstr "" #. module: base #: view:ir.values:0 msgid "Action Source" -msgstr "" +msgstr "Үйлдлийн эх үүсвэр" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" -msgstr "" +msgstr "STOCK_NETWORK" #. module: base #: model:ir.model,name:base.model_res_country @@ -7613,13 +7667,13 @@ msgstr "" #: field:res.partner.address,country_id:0 #: field:res.partner.bank,country_id:0 msgid "Country" -msgstr "" +msgstr "Улс" #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 msgid "Complete Name" -msgstr "" +msgstr "Бүтэн нэр" #. module: base #: view:ir.report.custom:0 @@ -7634,27 +7688,27 @@ msgstr "" #. module: base #: field:res.partner.category,name:0 msgid "Category Name" -msgstr "" +msgstr "Ангиллын нэр" #. module: base #: view:ir.actions.act_window:0 msgid "Select Groups" -msgstr "" +msgstr "Групп сонгох" #. module: base #: field:ir.sequence,weight:0 msgid "Weight" -msgstr "" +msgstr "Жин" #. module: base #: view:res.lang:0 msgid "%X - Appropriate time representation." -msgstr "" +msgstr "%X - Ойролцоо хугацаа." #. module: base #: view:res.company:0 msgid "Your Logo - Use a size of about 450x150 pixels." -msgstr "" +msgstr "Танай лого - 450x150 цэгийн хэмжээтэй." #. module: base #: help:res.lang,grouping:0 @@ -7668,32 +7722,32 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_customer_form_new msgid "New Partner" -msgstr "" +msgstr "Шинэ харилцагч" #. module: base #: selection:ir.report.custom,print_orientation:0 msgid "Portrait" -msgstr "" +msgstr "Босоо" #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" -msgstr "" +msgstr "Визардын товч" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DIRECTORY" -msgstr "" +msgstr "STOCK_DIRECTORY" #. module: base #: field:ir.module.module,installed_version:0 msgid "Latest version" -msgstr "" +msgstr "Сүүлийн хувилбар" #. module: base #: model:ir.model,name:base.model_ir_actions_server msgid "ir.actions.server" -msgstr "" +msgstr "ir.actions.server" #. module: base #: model:ir.actions.act_window,name:base.action_rule @@ -7709,7 +7763,7 @@ msgstr "" #. module: base #: field:ir.actions.configuration.wizard,progress:0 msgid "Configuration Progress" -msgstr "" +msgstr "Тохиргооны явц" #. module: base #: model:ir.ui.menu,name:base.next_id_11 @@ -7724,48 +7778,48 @@ msgstr "" #. module: base #: field:workflow.activity,split_mode:0 msgid "Split Mode" -msgstr "" +msgstr "Хуваах горим" #. module: base #: model:ir.ui.menu,name:base.menu_localisation msgid "Localisation" -msgstr "" +msgstr "Локалчлах" #. module: base #: selection:res.config.view,view:0 msgid "Simplified Interface" -msgstr "" +msgstr "Хялбаршуулсан интерфэйс" #. module: base #: model:res.country,name:base.cl msgid "Chile" -msgstr "" +msgstr "Чили" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REVERT_TO_SAVED" -msgstr "" +msgstr "STOCK_REVERT_TO_SAVED" #. module: base #: model:ir.actions.wizard,name:base.wizard_lang_import #: model:ir.ui.menu,name:base.menu_wizard_lang_import msgid "Import a Translation File" -msgstr "" +msgstr "Орчуулгын файл оруулах" #. module: base #: help:ir.values,model_id:0 msgid "This field is not used, it only helps you to select a good model." -msgstr "" +msgstr "Энэ талбар ашиглагдахгүй, зөвхөн сайн загвар сонгоход л хэрэгтэй." #. module: base #: field:ir.ui.view,name:0 msgid "View Name" -msgstr "" +msgstr "Дэлгэцийн нэр" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Italian / Italiano" -msgstr "" +msgstr "Итал / Italiano" #. module: base #: field:ir.actions.report.xml,attachment:0 @@ -7775,12 +7829,12 @@ msgstr "" #. module: base #: model:res.country,name:base.hr msgid "Croatia" -msgstr "" +msgstr "Хорват" #. module: base #: field:ir.actions.server,mobile:0 msgid "Mobile No" -msgstr "" +msgstr "Гар утасны дугаар" #. module: base #: model:ir.actions.act_window,name:base.action_partner_by_category @@ -7789,7 +7843,7 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_partner_category_form #: view:res.partner.category:0 msgid "Partner Categories" -msgstr "" +msgstr "Харилцагчийн ангилал" #. module: base #: field:ir.sequence,code:0 @@ -7800,34 +7854,28 @@ msgstr "" #. module: base #: selection:ir.report.custom,print_format:0 msgid "a5" -msgstr "" +msgstr "a5" #. module: base #: model:res.country,name:base.sc msgid "Seychelles" -msgstr "" - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" +msgstr "Сейшелийн арлууд" #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" -msgstr "" +msgstr "Сьерра-Леоне" #. module: base #: view:res.company:0 #: view:res.partner:0 msgid "General Information" -msgstr "" +msgstr "Ерөнхий мэдээлэл" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" -msgstr "" +msgstr "terp-product" #. module: base #: model:res.country,name:base.tc @@ -7837,36 +7885,36 @@ msgstr "" #. module: base #: field:res.partner.bank,owner_name:0 msgid "Account Owner" -msgstr "" +msgstr "Данс эзэмшигч" #. module: base #: field:ir.attachment,res_model:0 #: field:workflow,osv:0 #: field:workflow.instance,res_type:0 msgid "Resource Object" -msgstr "" +msgstr "Нөөц объект" #. module: base #: field:ir.cron,function:0 #: field:res.partner.address,function:0 #: selection:workflow.activity,kind:0 msgid "Function" -msgstr "" +msgstr "Функц" #. module: base #: selection:res.partner.address,type:0 msgid "Delivery" -msgstr "" +msgstr "Хүргэлт" #. module: base #: field:ir.attachment,preview:0 msgid "Image Preview" -msgstr "" +msgstr "Зураг урьд.харах" #. module: base #: model:res.partner.title,name:base.res_partner_title_pvt_ltd msgid "Corp." -msgstr "" +msgstr "Корп." #. module: base #: model:res.country,name:base.gw @@ -7882,12 +7930,12 @@ msgstr "" #: code:addons/base/res/partner/partner.py:0 #, python-format msgid "Partners: " -msgstr "" +msgstr "Харилцагчид: " #. module: base #: model:res.country,name:base.kp msgid "North Korea" -msgstr "" +msgstr "Хойд солонгос" #. module: base #: view:ir.report.custom:0 @@ -7897,27 +7945,27 @@ msgstr "" #. module: base #: selection:ir.actions.server,state:0 msgid "Create Object" -msgstr "" +msgstr "Объект үүсгэх" #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" -msgstr "" +msgstr "BIC/Swift код" #. module: base #: model:res.partner.category,name:base.res_partner_category_1 msgid "Prospect" -msgstr "" +msgstr "Ирээдүйн" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Polish / Język polski" -msgstr "" +msgstr "Польш / Język polski" #. module: base #: field:ir.exports,name:0 msgid "Export Name" -msgstr "" +msgstr "Гаргах нэр" #. module: base #: help:res.partner.address,type:0 @@ -7929,14 +7977,147 @@ msgstr "" #. module: base #: wizard_view:module.lang.install,init:0 msgid "Choose a language to install:" -msgstr "" +msgstr "Суулгах хэлээ сонгоно уу:" #. module: base #: model:res.country,name:base.lk msgid "Sri Lanka" -msgstr "" +msgstr "Шриланк" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Russian / русский язык" +msgstr "Орос / орос хэл" + +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "Ижил нэвтрэх кодтой хоёр хэрэглэгч байж болохгүй!" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "" +"You cannot delete the language which is Active !\n" +"Please de-activate the language first." +msgstr "" + +#, python-format +#~ msgid "You can not have two users with the same login !" +#~ msgstr "Ижил нэвтрэх кодтой хоёр хэрэглэгч байж болохгүй!" diff --git a/bin/addons/base/i18n/nb.po b/bin/addons/base/i18n/nb.po index a1b19f3cefa..06e432cc71d 100644 --- a/bin/addons/base/i18n/nb.po +++ b/bin/addons/base/i18n/nb.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-03-12 04:50+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:44+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -249,11 +249,6 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -796,11 +791,6 @@ msgstr "" msgid "Website" msgstr "" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1327,7 +1317,6 @@ msgstr "" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1376,10 +1365,7 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." msgstr "" #. module: base @@ -1428,11 +1414,6 @@ msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2142,11 +2123,6 @@ msgstr "" msgid "Countries" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2757,11 +2733,6 @@ msgstr "" msgid "Benin" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3081,7 +3052,6 @@ msgstr "" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3196,9 +3166,7 @@ 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" +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 @@ -3741,11 +3709,6 @@ msgstr "" msgid "ir.translation" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4073,11 +4036,6 @@ msgstr "" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4694,11 +4652,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4945,7 +4898,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6058,7 +6010,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7807,12 +7758,6 @@ msgstr "" msgid "Seychelles" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7940,3 +7885,130 @@ msgstr "" #: selection:module.lang.install,init,lang:0 msgid "Russian / русский язык" msgstr "" + +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" diff --git a/bin/addons/base/i18n/nl.po b/bin/addons/base/i18n/nl.po index 3a87f0b2bde..22856b19ad6 100644 --- a/bin/addons/base/i18n/nl.po +++ b/bin/addons/base/i18n/nl.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2010-02-19 05:34+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2010-10-12 08:02+0000\n" +"Last-Translator: Anup (OpenERP) \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: 2010-02-20 04:42+0000\n" +"X-Launchpad-Export-Date: 2010-10-13 04:56+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -259,11 +259,6 @@ msgstr "%y - Jaar zonder eeuw als decimaal getal [00,99]." msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Aan deze regel is voldaan als er tenminste één test 'waar' is." - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -819,11 +814,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "Website" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Testen" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1368,7 +1358,6 @@ msgstr "Aantal bijgewerkte modules" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1475,12 +1464,6 @@ msgid "" msgstr "" "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" -"Maak de regel globaal, anders dient deze in een groep te worden geplaatst" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2196,11 +2179,6 @@ msgstr "Rollen" msgid "Countries" msgstr "Landen" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Recordregels" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2834,11 +2812,6 @@ msgstr "Loyaliteit" msgid "Benin" msgstr "Benin" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "De regel is voldaan als alle testen Waar (AND) zijn." - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3163,7 +3136,6 @@ msgstr "Kazachstan" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3281,10 +3253,10 @@ msgstr "Groeperen op" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "" -"\"%s\" contains too many dots. XML ids should not contain dots ! These are " +"'%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 teveel punten. XML-ids behoren geen punten te bevatten ! Punten " +"'%s' bevat teveel punten. XML-ids behoren geen punten te bevatten ! Punten " "worden gebruikt om te verwijzen naar gegevens in andere modules, zoals in " "module.reference_id" @@ -3366,7 +3338,7 @@ msgstr "U kunt het menu opnieuw laden met (Ctrl+t Ctrl+r)." #: view:ir.ui.view_sc:0 #: field:res.partner.title,shortcut:0 msgid "Shortcut" -msgstr "Sneltoets" +msgstr "Snelkoppeling" #. module: base #: field:ir.model.data,date_init:0 @@ -3836,11 +3808,6 @@ msgstr "Afgeleide weergave" msgid "ir.translation" msgstr "ir.translation" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4169,13 +4136,6 @@ msgstr "A4" msgid "Search View Ref." msgstr "Zoek weergave ref." -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" -"Meerdere regels voor dezelfde objecten worden samengevoegd met behulp van de " -"operator OR" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4804,11 +4764,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "Reunion (Frans)" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Algemeen" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -5057,7 +5012,6 @@ msgstr "Componenten leverancier" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6186,7 +6140,6 @@ msgstr "Terugkerend" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7971,12 +7924,6 @@ msgstr "A5" msgid "Seychelles" msgstr "Seychellen" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "U kunt niet twee gebruikers hebben met dezelfde gebruikersnaam !" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -8107,6 +8054,143 @@ msgstr "Sri Lanka" msgid "Russian / русский язык" msgstr "Russisch / русский язык" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "U kunt niet twee gebruikers hebben met dezelfde gebruikersnaam !" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "De veldlengte kan nooit kleiner dan 1 zijn !" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "Dit menu heeft al een snelkoppeling!" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" +"U kunt niet meer records hebben met dezelfde id voor dezelfde module !" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "Uw onderhoudscontract is al ingeschreven in het systeem !" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "De modulenaam moet uniek zijn !" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "Het kwaliteitscertificaat id van de module moet uniek zijn !" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "De code van de relatie functie moet uniek zijn !" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "De relatienaam moet uniek zijn !" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "De landnaam moet uniek zijn !" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "De landcode moet uniek zijn !" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "De taalnaam moet uniek zijn !" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "De taalcode moet uniek zijn !" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "De groepsnaam moet uniek zijn !" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "Voorwaarde Fout" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" +"De bewerking kan niet worden afgerond, waarschijnlijk vanwege:\n" +"- verwijdering: u probeert een record te verwijderen terwijl er nog door een " +"ander aan wordt gerefereerd\n" +"- maken/wijzigen: een verplicht veld is niet correct ingevuld" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" +"\n" +"\n" +"[object met referentie: %s - %s]" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "Integriteit Fout" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "" +"You cannot delete the language which is Active !\n" +"Please de-activate the language first." +msgstr "" + #~ msgid "Main Company" #~ msgstr "Moederorganisatie" diff --git a/bin/addons/base/i18n/nl_BE.po b/bin/addons/base/i18n/nl_BE.po index 3040e379b45..6038df85cef 100644 --- a/bin/addons/base/i18n/nl_BE.po +++ b/bin/addons/base/i18n/nl_BE.po @@ -251,11 +251,6 @@ msgstr "%y - Jaartal zonder eeuw als decimaal getal [00,99]." msgid "Validated" msgstr "Gevalideerd" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Deze regel is goed als er tenminste 1 test 'waar' is." - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -821,11 +816,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "Website" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Tests" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1358,7 +1348,6 @@ msgstr "" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1404,10 +1393,7 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." msgstr "" #. module: base @@ -1457,11 +1443,6 @@ msgid "" msgstr "" "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2166,11 +2147,6 @@ msgstr "Rollen" msgid "Countries" msgstr "Landen" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2791,11 +2767,6 @@ msgstr "Set NULL" msgid "Benin" msgstr "Benin" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3102,7 +3073,6 @@ msgstr "Kazachstan" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3223,9 +3193,7 @@ msgstr "Groeperen op" #. module: base #: code:addons/addons/base/ir/ir_model.py:0 #, python-format -msgid "" -"\"%s\" contains too many dots. XML ids should not contain dots ! These are " -"used to refer to other modules data, as in module.reference_id" +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 @@ -3797,11 +3765,6 @@ msgstr "ir.translation" msgid "Luxembourg" msgstr "Luxemburg" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4087,13 +4050,6 @@ msgstr "" msgid "a4" msgstr "a4" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" -"Meerdere regels voor dezelfde objecten worden samengevoegd met behulp van de " -"operator OR" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4767,11 +4723,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "Reunion (Frans)" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -5002,7 +4953,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6122,7 +6072,6 @@ msgstr "Bovenliggende" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -8008,6 +7957,125 @@ msgstr "Sri Lanka" msgid "Russian / русский язык" msgstr "Russisch / русский язык" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "The operation cannot be completed, probably due to the following:\n- deletion: you may be trying to delete a record while other records still reference it\n- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "\n\n[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" + #~ msgid "Make the rule global, otherwise it needs to be put on a group or user" #~ msgstr "" #~ "Maak dit een globale regel, anders moet de regel aan een groep of gebruiker " diff --git a/bin/addons/base/i18n/nl_NL.po b/bin/addons/base/i18n/nl_NL.po index f74f81ef602..704c25a9d46 100644 --- a/bin/addons/base/i18n/nl_NL.po +++ b/bin/addons/base/i18n/nl_NL.po @@ -253,11 +253,6 @@ msgstr "%y - Jaar zonder eeuw als decimaal nummer [00,99]." msgid "Validated" msgstr "Gevalideerd" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Deze regel is goed als er tenminste 1 test 'waar' is." - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -829,11 +824,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "Website" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Tests" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1374,7 +1364,6 @@ msgstr "Niet geïmplenteerde set_memory methode !" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1420,14 +1409,8 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." -msgstr "" -"Voer het veld/expressie in die de lijst retourneerd. Bijv. Kies verkooporder " -"in Object, en u kunt een loop hebben op verkooporder regel. Expressie = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." +msgstr "Voer het veld/expressie in die de lijst retourneerd. Bijv. Kies verkooporder in Object, en u kunt een loop hebben op verkooporder regel. Expressie = `object.order_line`." #. module: base #: selection:ir.translation,type:0 @@ -1476,11 +1459,6 @@ msgid "" msgstr "" "De objectnaam moet beginnen met x_ en mag geen speciale karakters bevatten !" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2187,11 +2165,6 @@ msgstr "Rollen" msgid "Countries" msgstr "Landen" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Bericht regels" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2828,11 +2801,6 @@ msgstr "Set NULL" msgid "Benin" msgstr "Benin" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "De regel is OK als alle testen True (AND) zijn." - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3143,7 +3111,6 @@ msgstr "Kazachstan" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3266,9 +3233,7 @@ msgstr "Groeperen op" #. module: base #: code:addons/addons/base/ir/ir_model.py:0 #, python-format -msgid "" -"\"%s\" contains too many dots. XML ids should not contain dots ! These are " -"used to refer to other modules data, as in module.reference_id" +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 @@ -3841,11 +3806,6 @@ msgstr "ir.translation" msgid "Luxembourg" msgstr "Luxemburg" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4132,13 +4092,6 @@ msgstr "RML Interne Koptekst" msgid "a4" msgstr "a4" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" -"Meerdere regels voor dezelfde objecten worden samengevoegd met behulp van de " -"operator OR" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4814,11 +4767,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "Reunion (Frans)" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Algemeen" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -5052,7 +5000,6 @@ msgstr "Componenten leverancier" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6182,7 +6129,6 @@ msgstr "Bovenliggende" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -8089,6 +8035,125 @@ msgstr "Sri Lanka" msgid "Russian / русский язык" msgstr "Russisch / русский язык" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "The operation cannot be completed, probably due to the following:\n- deletion: you may be trying to delete a record while other records still reference it\n- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "\n\n[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" + #~ msgid "Make the rule global, otherwise it needs to be put on a group or user" #~ msgstr "" #~ "Maak dit een globale regel, anders moet de regel aan een groep of gebruiker " diff --git a/bin/addons/base/i18n/pl.po b/bin/addons/base/i18n/pl.po index 63fd07334ec..3f980010537 100644 --- a/bin/addons/base/i18n/pl.po +++ b/bin/addons/base/i18n/pl.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2010-03-22 05:21+0000\n" -"Last-Translator: Bartosz Kaszubowski \n" +"PO-Revision-Date: 2010-10-12 07:53+0000\n" +"Last-Translator: Anup (OpenERP) \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: 2010-03-24 04:52+0000\n" +"X-Launchpad-Export-Date: 2010-10-13 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -68,7 +68,7 @@ msgstr "Aby zobaczyć oficjalne tłumaczenia, zobacz ten link: " #. module: base #: selection:module.lang.install,init,lang:0 msgid "Hungarian / Magyar" -msgstr "" +msgstr "Węgierski" #. module: base #: field:ir.actions.server,wkf_model_id:0 @@ -149,7 +149,7 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CANCEL" -msgstr "" +msgstr "Anuluj" #. module: base #: field:ir.report.custom,sortby:0 @@ -257,11 +257,6 @@ msgstr "%y - Rok dwucyfrowo jako liczba dziesiętna [00,99]." msgid "STOCK_GOTO_FIRST" msgstr "" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Reguła jest spełniona, jeśli co najmniej jeden test jest pozytywny" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -316,7 +311,7 @@ msgstr "Moduły niezainstalowanie" #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "txt" -msgstr "" +msgstr "txt" #. module: base #: wizard_view:server.action.create,init:0 @@ -332,7 +327,7 @@ msgstr "Konfiguruj" #. module: base #: model:res.country,name:base.tv msgid "Tuvalu" -msgstr "" +msgstr "Tuvalu" #. module: base #: selection:ir.model,state:0 @@ -349,7 +344,7 @@ msgstr "Format daty" #: field:res.bank,email:0 #: field:res.partner.address,email:0 msgid "E-Mail" -msgstr "" +msgstr "E-mail" #. module: base #: model:res.country,name:base.an @@ -369,7 +364,7 @@ msgstr "" #. module: base #: model:res.country,name:base.gf msgid "French Guyana" -msgstr "" +msgstr "Gujana Francuska" #. module: base #: field:ir.ui.view.custom,ref_id:0 @@ -379,7 +374,7 @@ msgstr "Pierwotny widok" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Bosnian / bosanski jezik" -msgstr "" +msgstr "Bośniacki / bosanski jezik" #. module: base #: help:ir.actions.report.xml,attachment_use:0 @@ -438,7 +433,7 @@ msgstr "" #: selection:workflow.activity,join_mode:0 #: selection:workflow.activity,split_mode:0 msgid "Xor" -msgstr "" +msgstr "XOR" #. module: base #: view:res.partner:0 @@ -518,7 +513,7 @@ msgstr "Konfiguruj prosty widok" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Bulgarian / български" -msgstr "" +msgstr "Bułgarski / български" #. module: base #: model:ir.model,name:base.model_ir_actions_actions @@ -814,11 +809,6 @@ msgstr "" msgid "Website" msgstr "Strona WWW" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Testy" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -873,7 +863,7 @@ msgstr "Aby eksportować nowy język, nie wybieraj języka." #. module: base #: model:res.country,name:base.md msgid "Moldavia" -msgstr "" +msgstr "Mołdawia" #. module: base #: view:ir.module.module:0 @@ -1364,7 +1354,6 @@ msgstr "Liczba zaktualizowanych modułów" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1472,13 +1461,6 @@ msgstr "" "Nazwa obiektu musi zaczynać się od x_ oraz nie może zawierać znaków " "specjalnych !" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" -"Zdefiniuj regułę jak globalną, w przeciwnym przypadku musi ona być wstawiona " -"do grupy" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2194,11 +2176,6 @@ msgstr "Role" msgid "Countries" msgstr "Kraje" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Reguły rekordów" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2256,7 +2233,7 @@ msgstr "GPL-2 lub wersja późniejsza" #. module: base #: selection:res.partner.event,type:0 msgid "Prospect Contact" -msgstr "" +msgstr "Potencjalny Kontakt" #. module: base #: model:ir.model,name:base.model_ir_actions_wizard @@ -2831,11 +2808,6 @@ msgstr "Stan emocji" msgid "Benin" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "Reguła będzie spełniona, jeśli wszystkie testy będą pozytywne (AND)" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3157,7 +3129,6 @@ msgstr "Kazachstan" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3275,11 +3246,11 @@ msgstr "Pogrupuj wg" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "" -"\"%s\" contains too many dots. XML ids should not contain dots ! These are " +"'%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\" zawiera zbyt dużo kropek. XML ids nie powinno zawierać kropek ! " -"Kropki są stosowane di budowania odnośników do innych modułów jak " +"'%s' zawiera zbyt dużo kropek. XML ids nie powinno zawierać kropek ! Kropki " +"są stosowane di budowania odnośników do innych modułów jak " "module.reference_id" #. module: base @@ -3827,11 +3798,6 @@ msgstr "Widok dziedziczony" msgid "ir.translation" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4159,11 +4125,6 @@ msgstr "" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "Reguły dla tego samego obiektu są łączone operatorem LUB (OR)" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4791,11 +4752,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Globalna" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -5043,7 +4999,6 @@ msgstr "Dostawca komponentów" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6174,7 +6129,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7960,12 +7914,6 @@ msgstr "" msgid "Seychelles" msgstr "Seszele" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "Nie może być dwóch użytkowników o tym samym loginie !" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -8060,7 +8008,7 @@ msgstr "Kod BIC/Swift" #. module: base #: model:res.partner.category,name:base.res_partner_category_1 msgid "Prospect" -msgstr "" +msgstr "Potencjalny Klient" #. module: base #: selection:module.lang.install,init,lang:0 @@ -8096,6 +8044,135 @@ msgstr "Sri Lanka" msgid "Russian / русский язык" msgstr "" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "Nie może być dwóch użytkowników o tym samym loginie !" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "" +"You cannot delete the language which is Active !\n" +"Please de-activate the language first." +msgstr "" + #, python-format #~ msgid "Product quantity" #~ msgstr "Ilość produktu" diff --git a/bin/addons/base/i18n/pt.po b/bin/addons/base/i18n/pt.po index 6859a40b7c8..9dda7254c18 100644 --- a/bin/addons/base/i18n/pt.po +++ b/bin/addons/base/i18n/pt.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2010-02-08 05:18+0000\n" +"PO-Revision-Date: 2010-10-12 08:03+0000\n" "Last-Translator: Fabien (Open ERP) \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: 2010-02-09 05:10+0000\n" +"X-Launchpad-Export-Date: 2010-10-13 04:57+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -258,11 +258,6 @@ msgstr "%y - Ano sem o século como um numero decimal [00,99]." msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "A regra é valida se pelo menos um teste for verdadeiro" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -815,11 +810,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "Página Web" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Testes" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1364,7 +1354,6 @@ msgstr "Numero de módulos actualizados" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1471,12 +1460,6 @@ msgid "" msgstr "" "O nome do objecto deve começar com x_ e não pode conter um carácter especial!" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" -"Estabeleça a regra como global, de outro modo terá de ser colocada num grupo" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2192,11 +2175,6 @@ msgstr "Perfis" msgid "Countries" msgstr "Países" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Regras de gravação" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2827,11 +2805,6 @@ msgstr "Estado da mente" msgid "Benin" msgstr "Benim" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "A regra é satisfeita se todos os testes forem verdadeiras (AND)" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3155,7 +3128,6 @@ msgstr "Cazaquistão" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3273,10 +3245,10 @@ msgstr "Agrupar por" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "" -"\"%s\" contains too many dots. XML ids should not contain dots ! These are " +"'%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 demasiados pontos. Ids XML não devem conter pontos! Pontos são " +"'%s' contem demasiados pontos. Ids XML não devem conter pontos! Pontos são " "usados para referir dados de outros módulos, como em module.reference_id" #. module: base @@ -3824,11 +3796,6 @@ msgstr "Vista herdada" msgid "ir.translation" msgstr "ir.translation" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4156,11 +4123,6 @@ msgstr "a4" msgid "Search View Ref." msgstr "Ref. da vista de pesquisa" -#. module: base -#: view:ir.rule.group:0 -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 #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4787,11 +4749,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "Reunião (França)" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Global" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -5040,7 +4997,6 @@ msgstr "Fornecedor de componentes" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6172,7 +6128,6 @@ msgstr "A retornar" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7954,12 +7909,6 @@ msgstr "a5" msgid "Seychelles" msgstr "Seychelles" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "Não pode ter dois utilizadores com o mesmo código de acesso!" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -8090,6 +8039,135 @@ msgstr "Sri Lanka" msgid "Russian / русский язык" msgstr "Russo / русский язык" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "Não pode ter dois utilizadores com o mesmo código de acesso!" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "" +"You cannot delete the language which is Active !\n" +"Please de-activate the language first." +msgstr "" + #~ msgid "Attached ID" #~ msgstr "Id ligado" diff --git a/bin/addons/base/i18n/pt_BR.po b/bin/addons/base/i18n/pt_BR.po index 2be3d5f5ac0..90c7aebf8cc 100644 --- a/bin/addons/base/i18n/pt_BR.po +++ b/bin/addons/base/i18n/pt_BR.po @@ -4,16 +4,16 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.4\n" +"Project-Id-Version: pt_BR\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2010-03-24 05:43+0000\n" -"Last-Translator: OpenERP Administrators \n" -"Language-Team: \n" +"PO-Revision-Date: 2010-10-12 07:48+0000\n" +"Last-Translator: Anup (OpenERP) \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: 2010-03-26 04:48+0000\n" +"X-Launchpad-Export-Date: 2010-10-13 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -73,17 +73,17 @@ msgstr "Hungarian / Magyar" #. module: base #: field:ir.actions.server,wkf_model_id:0 msgid "Workflow On" -msgstr "" +msgstr "Workflow Em" #. module: base #: view:ir.module.module:0 msgid "Created Views" -msgstr "Views criadas" +msgstr "Views Criadas" #. module: base #: view:workflow.activity:0 msgid "Outgoing transitions" -msgstr "Transições saída" +msgstr "Transições de saída" #. module: base #: selection:ir.report.custom,frequency:0 @@ -139,7 +139,7 @@ msgstr "ir.ui.view.custom" #. module: base #: model:res.country,name:base.sz msgid "Swaziland" -msgstr "" +msgstr "Suíça" #. module: base #: model:ir.model,name:base.model_ir_actions_report_custom @@ -176,7 +176,7 @@ msgstr "ir.report.custom.fields" #. module: base #: view:res.partner:0 msgid "Search Partner" -msgstr "Pesquisar Parceiro" +msgstr "Buscar Parceiro" #. module: base #: code:addons/base/module/wizard/wizard_export_lang.py:0 @@ -241,12 +241,12 @@ msgstr "" #. module: base #: selection:res.request,state:0 msgid "active" -msgstr "ativocria" +msgstr "ativo" #. module: base #: field:ir.actions.wizard,wiz_name:0 msgid "Wizard Name" -msgstr "Nome do assistente" +msgstr "Nome do Assistente" #. module: base #: view:res.lang:0 @@ -258,11 +258,6 @@ msgstr "%y - Ano com 2 decimais [00,99]." msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "A regra será satisfeita se pelo menos um teste for verdadeiro" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -306,7 +301,7 @@ msgstr "Grupo" #: field:ir.translation,name:0 #: field:res.partner.bank.type.field,name:0 msgid "Field Name" -msgstr "Nome do campo" +msgstr "Nome do Campo" #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_uninstall @@ -323,7 +318,7 @@ msgstr "txt" #: wizard_view:server.action.create,init:0 #: wizard_field:server.action.create,init,type:0 msgid "Select Action Type" -msgstr "Selecionar tipo de ação" +msgstr "Selecionar Tipo de Ação" #. module: base #: selection:ir.actions.todo,type:0 @@ -339,7 +334,7 @@ msgstr "" #: selection:ir.model,state:0 #: selection:ir.model.grid,state:0 msgid "Custom Object" -msgstr "Configurar objeto" +msgstr "Configurar Objeto" #. module: base #: field:res.lang,date_format:0 @@ -420,12 +415,12 @@ msgstr "Colômbia" #. module: base #: view:ir.module.module:0 msgid "Schedule Upgrade" -msgstr "Agendar atualização" +msgstr "Agendar Atualização" #. module: base #: field:ir.actions.report.custom,report_id:0 msgid "Report Ref." -msgstr "Ref. do relatório" +msgstr "Ref. do Relatório" #. module: base #: help:res.country,code:0 @@ -445,7 +440,7 @@ msgstr "Xor" #. module: base #: view:res.partner:0 msgid "Sales & Purchases" -msgstr "Vendas & Compras" +msgstr "Compras & Vendas" #. module: base #: view:ir.actions.wizard:0 @@ -463,7 +458,7 @@ msgstr "STOCK_CUT" #: view:ir.actions.wizard:0 #: model:ir.ui.menu,name:base.menu_ir_action_wizard msgid "Wizards" -msgstr "Wizards" +msgstr "Assistentes" #. module: base #: selection:res.config.view,view:0 @@ -520,7 +515,7 @@ msgstr "Configurar uma view simples" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Bulgarian / български" -msgstr "Bulgarian / български" +msgstr "Búlgaro / български" #. module: base #: model:ir.model,name:base.model_ir_actions_actions @@ -725,17 +720,17 @@ msgstr "STOCK_OK" #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 msgid "Dummy" -msgstr "" +msgstr "Imitação" #. module: base #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" -msgstr "Invalido XML para Arquitetura da View" +msgstr "XML inválido para Arquitetura da View" #. module: base #: model:res.country,name:base.ky msgid "Cayman Islands" -msgstr "Ilhas Caimã" +msgstr "Ilhas Cayman" #. module: base #: model:res.country,name:base.ir @@ -746,7 +741,7 @@ msgstr "Irã" #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act msgid "My Requests" -msgstr "Minhas mensagens" +msgstr "Minhas Mensagens" #. module: base #: field:ir.sequence,name:0 @@ -816,11 +811,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "Página da Web" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Testes" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -923,7 +913,7 @@ msgstr "STOCK_REMOVE" #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "raw" -msgstr "" +msgstr "não processado" #. module: base #: help:ir.actions.server,email:0 @@ -1019,8 +1009,8 @@ msgid "" "You try to install the module '%s' that depends on the module:'%s'.\n" "But this module is not available in your system." msgstr "" -"Tentativa de instalar o modulo '%s' que depende do modulo:'%s'.\n" -"Porém este módulo não está presente no sistema (servidor)." +"Você está tentando instalar o módulo '%s' que depende do módulo: '%s'.\n" +"Mas este módulo não está disponivel em seu sistema." #. module: base #: model:ir.model,name:base.model_res_request_link @@ -1190,7 +1180,7 @@ msgstr "Prioridade" #. module: base #: field:workflow.transition,act_from:0 msgid "Source Activity" -msgstr "Aividade fonte" +msgstr "Atividade de Origem" #. module: base #: view:ir.sequence:0 @@ -1296,7 +1286,7 @@ msgstr "Modo de visão" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Spanish / Español" -msgstr "Spanish / Español" +msgstr "Espanhol / Español" #. module: base #: field:res.company,logo:0 @@ -1311,7 +1301,7 @@ msgstr "STOCK_PROPERTIES" #. module: base #: view:res.partner.address:0 msgid "Search Contact" -msgstr "Pesquisar contatos" +msgstr "Buscar contatos" #. module: base #: view:ir.module.module:0 @@ -1364,7 +1354,6 @@ msgstr "Número de módulos atualizados" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1397,7 +1386,7 @@ msgstr "Polônia" #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 msgid "To be removed" -msgstr "A ser removido" +msgstr "Para ser removido" #. module: base #: field:ir.values,meta:0 @@ -1427,7 +1416,7 @@ msgstr "" #. module: base #: selection:ir.translation,type:0 msgid "Wizard Field" -msgstr "Campo do assistente" +msgstr "Campo do Assistente" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1469,14 +1458,9 @@ msgstr "Madadascar" 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 " +"O nome do Objeto deve começar com x_ e não deve conter nenhum caracter " "especial!" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -1488,17 +1472,17 @@ msgstr "Menu" #. module: base #: field:res.currency,rate:0 msgid "Current Rate" -msgstr "" +msgstr "Taxa atual" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Greek / Ελληνικά" -msgstr "" +msgstr "Grego / Ελληνικά" #. module: base #: view:ir.values:0 msgid "Action To Launch" -msgstr "Ação para lançar" +msgstr "Ação para Executar" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -1538,7 +1522,7 @@ msgstr "Nome do atalho" #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" -msgstr "Limite de crédito" +msgstr "Limite de Crédito" #. module: base #: help:ir.actions.server,write_id:0 @@ -1765,7 +1749,7 @@ msgstr "%S - Segundos como um numero decimal[00,61]." #. module: base #: model:res.country,name:base.am msgid "Armenia" -msgstr "" +msgstr "Armênia" #. module: base #: view:ir.sequence:0 @@ -1780,7 +1764,7 @@ msgstr "Diariamente" #. module: base #: model:res.country,name:base.se msgid "Sweden" -msgstr "" +msgstr "Suécia" #. module: base #: selection:ir.actions.act_window.view,view_mode:0 @@ -1813,7 +1797,7 @@ msgstr "Configuração da ação de iteração" #. module: base #: model:res.country,name:base.at msgid "Austria" -msgstr "" +msgstr "Austria" #. module: base #: selection:ir.actions.act_window.view,view_mode:0 @@ -1914,12 +1898,12 @@ msgstr "Pesquisável" #. module: base #: model:res.country,name:base.uy msgid "Uruguay" -msgstr "" +msgstr "Uruguai" #. module: base #: view:res.partner.event:0 msgid "Document Link" -msgstr "" +msgstr "Link do documento" #. module: base #: model:ir.model,name:base.model_res_partner_title @@ -1934,12 +1918,12 @@ msgstr "Prefixo" #. module: base #: field:ir.actions.server,loop_action:0 msgid "Loop Action" -msgstr "" +msgstr "Ação de repetição" #. module: base #: selection:module.lang.install,init,lang:0 msgid "German / Deutsch" -msgstr "German / Deutsch" +msgstr "Alemanha / Deutsch" #. module: base #: help:ir.actions.server,trigger_name:0 @@ -1964,17 +1948,17 @@ msgstr "Iniciar atualização" #. module: base #: field:ir.default,ref_id:0 msgid "ID Ref." -msgstr "" +msgstr "Ref. de ID" #. module: base #: selection:module.lang.install,init,lang:0 msgid "French / Français" -msgstr "French / Français" +msgstr "Francês / Français" #. module: base #: model:res.country,name:base.mt msgid "Malta" -msgstr "" +msgstr "Malta" #. module: base #: field:ir.actions.server,fields_lines:0 @@ -1994,7 +1978,7 @@ msgstr "Módulo" #: model:ir.actions.act_window,name:base.action_res_bank_form #: model:ir.ui.menu,name:base.menu_action_res_bank_form msgid "Bank List" -msgstr "Relação de Bancos" +msgstr "Lista de Bancos" #. module: base #: field:ir.attachment,description:0 @@ -2021,7 +2005,7 @@ msgstr "ir.attachment" #. module: base #: field:res.users,action_id:0 msgid "Home Action" -msgstr "Ação inicial" +msgstr "Ação Inicial" #. module: base #: field:res.lang,grouping:0 @@ -2041,13 +2025,13 @@ msgstr "Inválido" #. module: base #: model:ir.ui.menu,name:base.next_id_9 msgid "Database Structure" -msgstr "Estrutura da base de dados" +msgstr "Estrutura de Dados" #. module: base #: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard #: wizard_view:res.partner.spam_send,init:0 msgid "Mass Mailing" -msgstr "Email em massa" +msgstr "Email em Massa" #. module: base #: model:res.country,name:base.yt @@ -2063,7 +2047,7 @@ msgstr "Voce tambem pode importar arquivos .po ." #: code:addons/base/maintenance/maintenance.py:0 #, python-format msgid "Unable to find a valid contract" -msgstr "" +msgstr "Não foi possível encontrar um contrato válido." #. module: base #: code:addons/base/ir/ir_actions.py:0 @@ -2192,11 +2176,6 @@ msgstr "Papéis" msgid "Countries" msgstr "Países" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Registro de Regras" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2488,6 +2467,8 @@ msgid "" "Specify the subject. You can use fields from the object, e.g. `Hello [[ " "object.partner_id.name ]]`" msgstr "" +"Informe o assunto. Voce pode usar campos de um objeto. Ex.: `Olá [[ " +"object.partner_id.name ]]`" #. module: base #: view:res.company:0 @@ -2502,7 +2483,7 @@ msgstr "Líbano" #. module: base #: wizard_field:module.lang.import,init,name:0 msgid "Language name" -msgstr "Idioma" +msgstr "Nome do Idioma" #. module: base #: model:res.country,name:base.va @@ -2547,7 +2528,7 @@ msgstr "Atualização de Sistema" #. module: base #: field:workflow.activity,in_transitions:0 msgid "Incoming Transitions" -msgstr "Transações de Entrada" +msgstr "Transições de Entrada" #. module: base #: model:res.country,name:base.sr @@ -2579,8 +2560,8 @@ msgid "" "You try to upgrade a module that depends on the module: %s.\n" "But this module is not available in your system." msgstr "" -"Voce tentou atualizar um módulo que depende do módulo: %s. \n" -"Mas este módulo não está disponível no sistema." +"Voce tenta atualizar um módulo que depende do módulo: %s. \n" +"Mas este módulo não está disponível em seu sistema." #. module: base #: view:res.partner.address:0 @@ -2826,11 +2807,6 @@ msgstr "Estado emocional" msgid "Benin" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "A regra será satisfeita se todos os testes forem verdadeiros (AND)" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3155,7 +3131,6 @@ msgstr "Cazaquistão" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3274,12 +3249,12 @@ msgstr "Agrupar Por" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "" -"\"%s\" contains too many dots. XML ids should not contain dots ! These are " +"'%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 muitos pontos. Identificações XML não devem conter ponto " -"final! Estes devem ser utilizados para referência a dados de outros módulos " -"como em: module.reference_id" +"'%s' contem muitos pontos. Identificações XML não devem conter ponto final! " +"Estes devem ser utilizados para referência a dados de outros módulos como " +"em: module.reference_id" #. module: base #: selection:ir.ui.menu,icon:0 @@ -3479,7 +3454,7 @@ msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" " %s" msgstr "" -"Existe(m) módulos dependentes do módulo que você pretende desinstalar:\n" +"Alguns módulos instalados dependem do módulo que voce deseja desinstalar:\n" " %s" #. module: base @@ -3575,7 +3550,7 @@ msgstr "terp-mrp" #. module: base #: field:ir.actions.server,trigger_obj_id:0 msgid "Trigger On" -msgstr "" +msgstr "Ligar gatilho" #. module: base #: model:res.country,name:base.fj @@ -3799,7 +3774,7 @@ msgstr "Itens de trabalho" #. module: base #: field:wizard.module.lang.export,advice:0 msgid "Advice" -msgstr "" +msgstr "Advertência" #. module: base #: selection:module.lang.install,init,lang:0 @@ -3825,11 +3800,6 @@ msgstr "View herdada" msgid "ir.translation" msgstr "ir.translation" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -3898,7 +3868,7 @@ msgstr "Tipo do campo" #. module: base #: field:res.country.state,code:0 msgid "State Code" -msgstr "Código do estado" +msgstr "Código do Estado" #. module: base #: field:ir.model.fields,on_delete:0 @@ -4113,7 +4083,7 @@ msgstr "Itens de trabalho do workflow" #. module: base #: model:res.country,name:base.vc msgid "Saint Vincent & Grenadines" -msgstr "" +msgstr "Saint Vincent & Grenadines" #. module: base #: field:ir.model.config,password:0 @@ -4157,11 +4127,6 @@ msgstr "a4" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "Multiplas regras em um mesmo objeto são unidas usando o operador OR" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4227,7 +4192,7 @@ msgstr "Alterar Preferências" #. module: base #: constraint:ir.actions.act_window:0 msgid "Invalid model name in the action definition." -msgstr "Nome de modelo inválido na definição da ação" +msgstr "Nome do modelo inválido na definição da ação." #. module: base #: wizard_field:res.partner.sms_send,init,text:0 @@ -4301,7 +4266,7 @@ msgstr "tipo, nome, recurso_id, original, tradução" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Dutch / Nederlands" -msgstr "Dutch / Nederlands" +msgstr "Holandês / Nederlands" #. module: base #: wizard_view:server.action.create,step_1:0 @@ -4344,7 +4309,7 @@ msgstr "E-mail do Remetente" #. module: base #: field:ir.default,field_name:0 msgid "Object Field" -msgstr "" +msgstr "Campo de objeto" #. module: base #: selection:module.lang.install,init,lang:0 @@ -4359,7 +4324,7 @@ msgstr "STOCK_NEW" #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "None" -msgstr "Nada" +msgstr "Nenhum" #. module: base #: view:ir.report.custom.fields:0 @@ -4598,7 +4563,7 @@ msgstr "iCal id" #. module: base #: wizard_view:res.partner.sms_send,init:0 msgid "Bulk SMS send" -msgstr "Enviar SMS em lote" +msgstr "Enviar SMS em massa" #. module: base #: view:res.lang:0 @@ -4632,7 +4597,7 @@ msgid "" "Can not create the module file:\n" " %s" msgstr "" -"Impossível criar o arquivo de módulo:\n" +"Não posso criar o arquivo de módulo:\n" " %s" #. module: base @@ -4789,11 +4754,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "Reunião" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Global" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4898,7 +4858,7 @@ msgstr "Tipo de visão" #. module: base #: model:ir.ui.menu,name:base.next_id_2 msgid "User Interface" -msgstr "Interface de usuário" +msgstr "Interface de Usuário" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4942,7 +4902,7 @@ msgstr "Configurações Gerais" #. module: base #: model:ir.ui.menu,name:base.custom_shortcuts msgid "Custom Shortcuts" -msgstr "Atalhos personalizados" +msgstr "Atalhos Customizados" #. module: base #: model:res.country,name:base.dz @@ -4982,7 +4942,7 @@ msgstr "Empresas" #: field:ir.actions.server,code:0 #: selection:ir.actions.server,state:0 msgid "Python Code" -msgstr "Codigo Python" +msgstr "Código Python" #. module: base #: code:addons/base/module/wizard/wizard_module_import.py:0 @@ -5042,7 +5002,6 @@ msgstr "Fornecedor de componentes" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -5343,7 +5302,7 @@ msgstr "" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Chinese (TW) / 正體字" -msgstr "Chines (TW) / 正體字" +msgstr "Chinês (TW) / 正體字" #. module: base #: selection:ir.ui.menu,icon:0 @@ -5421,7 +5380,7 @@ msgstr "Multi-Companhia" #. module: base #: view:ir.sequence:0 msgid "Day of the year: %(doy)s" -msgstr "Dias do ano: %(doy)s" +msgstr "Dia(s) do ano: %(doy)s" #. module: base #: model:res.country,name:base.nt @@ -5454,7 +5413,7 @@ msgstr "Seleção" #. module: base #: field:ir.actions.act_window,search_view:0 msgid "Search View" -msgstr "Visão de Pesquisa" +msgstr "Visão de Busca" #. module: base #: field:ir.rule,domain_force:0 @@ -5935,9 +5894,9 @@ msgid "" "' \\n 'for the currency: %s \n" "' \\n 'at the date: %s" msgstr "" -"Cotação não encontrada\n" -"' \\n 'para a moeda: %s\n" -"' \\n 'no dia: %s" +"Nenhuma valor encontrado \n" +"'\\n 'para a taxa escolhida: %s \n" +"'\\n 'na data: %s" #. module: base #: view:ir.actions.act_window:0 @@ -6087,7 +6046,7 @@ msgstr "Mes: %(month)s" #: field:res.partner.bank,sequence:0 #: field:wizard.ir.model.menu.create.line,sequence:0 msgid "Sequence" -msgstr "Seqüência" +msgstr "Sequência" #. module: base #: model:res.country,name:base.tn @@ -6127,13 +6086,13 @@ msgstr "Mensalmente" #: model:ir.actions.act_window,name:base.res_partner_som-act #: model:ir.ui.menu,name:base.menu_res_partner_som-act msgid "States of mind" -msgstr "Estado emocional" +msgstr "Estado Emocional" #. module: base #: model:ir.actions.act_window,name:base.action_country_state #: model:ir.ui.menu,name:base.menu_country_state_partner msgid "Fed. States" -msgstr "Estados da Federação" +msgstr "Estados" #. module: base #: view:ir.model:0 @@ -6170,7 +6129,6 @@ msgstr "Retornando" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -6330,7 +6288,7 @@ msgstr "Empresa de serviço Open Source" #. module: base #: selection:res.request,state:0 msgid "waiting" -msgstr "esperando" +msgstr "Aguardando" #. module: base #: field:ir.attachment,link:0 @@ -6933,7 +6891,7 @@ msgstr "desconhecido" #. module: base #: field:ir.ui.view_sc,res_id:0 msgid "Resource Ref." -msgstr "Ref.do recurso" +msgstr "Ref.do Recurso" #. module: base #: model:res.country,name:base.ki @@ -6970,7 +6928,7 @@ msgstr "Arquivos CSV" #: selection:ir.model,state:0 #: selection:ir.model.grid,state:0 msgid "Base Object" -msgstr "Objeto base" +msgstr "Objeto Base" #. module: base #: selection:ir.ui.menu,icon:0 @@ -7551,7 +7509,7 @@ msgstr "Centralizar" #. module: base #: field:maintenance.contract.wizard,state:0 msgid "States" -msgstr "Estados" +msgstr "Status" #. module: base #: view:multi_company.default:0 @@ -7567,7 +7525,7 @@ msgstr "Próximo assistente" #: field:ir.attachment,datas_fname:0 #: field:wizard.module.lang.export,name:0 msgid "Filename" -msgstr "Nome do arquivo" +msgstr "Nome do Arquivo" #. module: base #: field:ir.model,access_ids:0 @@ -7692,7 +7650,7 @@ msgstr "O imposto não parece estar correto." #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Calculate Sum" -msgstr "Calcular a soma" +msgstr "Calcular a Soma" #. module: base #: view:ir.sequence:0 @@ -7770,7 +7728,7 @@ msgstr "Subscreva relatório" #. module: base #: field:ir.values,object:0 msgid "Is Object" -msgstr "é objeto" +msgstr "É objeto" #. module: base #: field:res.partner.category,name:0 @@ -7953,12 +7911,6 @@ msgstr "a5" msgid "Seychelles" msgstr "Seicheles" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "Não é permitido criar dois usuários com o mesmo login!" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -8087,7 +8039,136 @@ msgstr "Sri Lanka" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Russian / русский язык" -msgstr "Russian / русский язык" +msgstr "Russo / русский язык" + +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "Não é permitido criar dois usuários com o mesmo login!" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "Não é permitido criar dois usuários com o mesmo login!" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "" +"You cannot delete the language which is Active !\n" +"Please de-activate the language first." +msgstr "" #~ msgid "Attached Model" #~ msgstr "Modelo anexado" @@ -8095,9 +8176,6 @@ msgstr "Russian / русский язык" #~ msgid "Others Partners" #~ msgstr "Outros parceiros" -#~ msgid "Main Company" -#~ msgstr "Empresa principal" - #~ msgid "Partner Functions" #~ msgstr "Função" @@ -8112,6 +8190,3 @@ msgstr "Russian / русский язык" #~ msgid "Titles" #~ msgstr "Títulos" - -#~ msgid "Company to store the current record" -#~ msgstr "Empresa para guardar o registro atual" diff --git a/bin/addons/base/i18n/ro.po b/bin/addons/base/i18n/ro.po index 12bd218dcb8..830eb654b1d 100644 --- a/bin/addons/base/i18n/ro.po +++ b/bin/addons/base/i18n/ro.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2010-03-17 05:16+0000\n" -"Last-Translator: Valentin Caragea \n" +"PO-Revision-Date: 2010-06-07 04:16+0000\n" +"Last-Translator: filsys \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: 2010-03-18 04:34+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:45+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -259,11 +259,6 @@ msgstr "%y - An fara secol ca numar zecimal [00,99]." msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Regula este satisfacuta daca cel putin un test este Adevarat" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -774,12 +769,12 @@ msgstr "Uganda" #. module: base #: model:res.country,name:base.ne msgid "Niger" -msgstr "" +msgstr "Niger" #. module: base #: model:res.country,name:base.ba msgid "Bosnia-Herzegovina" -msgstr "" +msgstr "Bosnia-Herțegovina" #. module: base #: field:ir.report.custom.fields,alignment:0 @@ -789,7 +784,7 @@ msgstr "Aliniere" #. module: base #: selection:ir.rule,operator:0 msgid ">=" -msgstr "" +msgstr ">=" #. module: base #: view:res.lang:0 @@ -813,12 +808,7 @@ msgstr "" #: field:ir.module.module,website:0 #: field:res.partner,website:0 msgid "Website" -msgstr "" - -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "" +msgstr "Website" #. module: base #: view:ir.module.repository:0 @@ -1346,7 +1336,6 @@ msgstr "" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1395,10 +1384,7 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." msgstr "" #. module: base @@ -1447,11 +1433,6 @@ msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2161,11 +2142,6 @@ msgstr "" msgid "Countries" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2776,11 +2752,6 @@ msgstr "Stare spirit" msgid "Benin" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3100,7 +3071,6 @@ msgstr "" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3215,9 +3185,7 @@ 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" +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 @@ -3760,11 +3728,6 @@ msgstr "" msgid "ir.translation" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4092,11 +4055,6 @@ msgstr "" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4713,11 +4671,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4964,7 +4917,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6079,7 +6031,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7828,12 +7779,6 @@ msgstr "" msgid "Seychelles" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7962,6 +7907,133 @@ msgstr "" msgid "Russian / русский язык" msgstr "" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" + #~ msgid "Main Company" #~ msgstr "Compania mama" diff --git a/bin/addons/base/i18n/ru.po b/bin/addons/base/i18n/ru.po index c8d85bdf6b9..fc796723507 100644 --- a/bin/addons/base/i18n/ru.po +++ b/bin/addons/base/i18n/ru.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2010-02-09 06:20+0000\n" -"Last-Translator: Nikolay Chesnokov \n" +"PO-Revision-Date: 2010-10-17 17:15+0000\n" +"Last-Translator: Chertykov Denis \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: 2010-02-10 04:43+0000\n" +"X-Launchpad-Export-Date: 2010-10-18 04:55+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -257,11 +257,6 @@ msgstr "%y - Год без указания века как десятичное msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Удовлетворяет правилу, если результат хотя бы одной из проверок True" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -703,10 +698,7 @@ msgstr "STOCK_FILE" #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" -msgstr "" -"Территория Гуам (США)\r\n" -"С 1 июня 2009 года взамен территории Гуам появится Марианский архипелаг, " -"территория США." +msgstr "Территория Гуам (США)" #. module: base #: model:ir.model,name:base.model_ir_model_grid @@ -818,11 +810,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "Сайт" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Тесты" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1367,7 +1354,6 @@ msgstr "Количество обновленных модулей" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1475,11 +1461,6 @@ msgstr "" "Название объекта должно начинаться с x_ и не должно содержать специальных " "символов !" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "Задайте правило глобально или для определенной группы" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2195,11 +2176,6 @@ msgstr "Роли" msgid "Countries" msgstr "Страны" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Правила записи" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2820,7 +2796,7 @@ msgstr "Перу" #. module: base #: selection:ir.model.fields,on_delete:0 msgid "Set NULL" -msgstr "Устоновить в BULL" +msgstr "Установить в NULL" #. module: base #: field:res.partner.event,som:0 @@ -2833,11 +2809,6 @@ msgstr "Мнение" msgid "Benin" msgstr "Бенин" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "Удовлетворяет правилу, если все условия 'True' (Логическое И)" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3162,7 +3133,6 @@ msgstr "Казахстан" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3185,7 +3155,7 @@ msgstr "Монсеррат" #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" -msgstr "Условия приложения" +msgstr "Выражения" #. module: base #: selection:ir.report.custom.fields,operation:0 @@ -3280,7 +3250,7 @@ msgstr "Группировать по" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "" -"\"%s\" contains too many dots. XML ids should not contain dots ! These are " +"'%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 идентификаторы не должны содержать " @@ -3832,11 +3802,6 @@ msgstr "Унаследованный вид" msgid "ir.translation" msgstr "ir.translation" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4164,13 +4129,6 @@ msgstr "A4" msgid "Search View Ref." msgstr "Поиск ссылки на обзор" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" -"Монжественные правила для того же объекта объединены с использованием " -"оператора ИЛИ" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4305,7 +4263,7 @@ msgstr "Поля банковского типа" #. module: base #: wizard_view:module.lang.import,init:0 msgid "type,name,res_id,src,value" -msgstr "" +msgstr "тип, имяб ид ресурса, Источник, Значение" #. module: base #: selection:module.lang.install,init,lang:0 @@ -4420,7 +4378,7 @@ msgstr "Контакт" #. module: base #: model:ir.model,name:base.model_ir_ui_menu msgid "ir.ui.menu" -msgstr "" +msgstr "Меню" #. module: base #: view:ir.module.module:0 @@ -4437,18 +4395,18 @@ msgstr "Коммуникация" #. module: base #: model:ir.model,name:base.model_ir_server_object_lines msgid "ir.server.object.lines" -msgstr "" +msgstr "События сервера" #. module: base #: code:addons/base/module/module.py:0 #, python-format msgid "Module %s: Invalid Quality Certificate" -msgstr "" +msgstr "Модуль %s: Недействительный сертификат качества" #. module: base #: model:res.country,name:base.kw msgid "Kuwait" -msgstr "" +msgstr "Кувейт" #. module: base #: field:workflow.workitem,inst_id:0 @@ -4462,6 +4420,9 @@ msgid "" "Keep empty to not save the printed reports. You can use a python expression " "with the object and time variables." msgstr "" +"Это имя прикрепленного файла, используемого для хранения результата печати. " +"Оставьте пустым, чтобы не сохранять напечатанные отчеты. Вы можете " +"использовать Python выражения с объектом и временным переменным." #. module: base #: model:res.country,name:base.ng @@ -4471,12 +4432,12 @@ msgstr "Нигерия" #. module: base #: model:ir.model,name:base.model_res_partner_event msgid "res.partner.event" -msgstr "" +msgstr "События партнера" #. module: base #: field:res.company,user_ids:0 msgid "Accepted Users" -msgstr "" +msgstr "Акцептованные пользователи" #. module: base #: selection:ir.ui.menu,icon:0 @@ -4551,7 +4512,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_sequence msgid "ir.sequence" -msgstr "" +msgstr "Последовательность" #. module: base #: model:ir.model,name:base.model_res_partner_event_type @@ -4563,7 +4524,7 @@ msgstr "События партнера" #. module: base #: model:ir.model,name:base.model_workflow_transition msgid "workflow.transition" -msgstr "" +msgstr "Рабочий процесс перехода" #. module: base #: view:res.lang:0 @@ -4654,7 +4615,7 @@ msgstr "Далее" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Thai / ภาษาไทย" -msgstr "" +msgstr "Тайский" #. module: base #: model:ir.actions.act_window,name:base.ir_property_form @@ -4707,7 +4668,7 @@ msgstr "Добавить пользователя" #. module: base #: model:ir.model,name:base.model_ir_actions_configuration_wizard msgid "ir.actions.configuration.wizard" -msgstr "" +msgstr "Диалог конфигурировая события" #. module: base #: view:res.lang:0 @@ -4794,11 +4755,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "Реюньон (заморский регион Франции)" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Глобальный" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4818,7 +4774,7 @@ msgstr "Ошибка доступа" #. module: base #: view:res.lang:0 msgid "8. %I:%M:%S %p ==> 06:25:20 PM" -msgstr "" +msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" #. module: base #: view:ir.translation:0 @@ -4918,7 +4874,7 @@ msgstr "Дата создания" #. module: base #: model:ir.model,name:base.model_ir_actions_todo msgid "ir.actions.todo" -msgstr "" +msgstr "ТОДО" #. module: base #: view:wizard.module.lang.export:0 @@ -5047,7 +5003,6 @@ msgstr "Поставщик компонентов" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -5259,7 +5214,7 @@ msgstr "Справка" #. module: base #: model:ir.model,name:base.model_ir_ui_view msgid "ir.ui.view" -msgstr "" +msgstr "Обзор" #. module: base #: wizard_button:server.action.create,step_1,create:0 @@ -5361,7 +5316,7 @@ msgstr "STOCK_GO_UP" #. module: base #: model:ir.model,name:base.model_res_request msgid "res.request" -msgstr "" +msgstr "Запрос" #. module: base #: selection:ir.actions.report.xml,report_type:0 @@ -5472,7 +5427,7 @@ msgstr "Установить домен" #. module: base #: help:ir.sequence,weight:0 msgid "If two sequences match, the highest weight will be used." -msgstr "" +msgstr "Если две последовательности совпадают, старшия будет использоваться." #. module: base #: model:ir.actions.act_window,name:base.action_attachment @@ -5489,7 +5444,7 @@ msgstr "_Проверить" #. module: base #: model:ir.model,name:base.model_maintenance_contract_wizard msgid "maintenance.contract.wizard" -msgstr "" +msgstr "Диалог контракта обслуживания" #. module: base #: field:ir.actions.server,child_ids:0 @@ -5635,7 +5590,7 @@ msgstr "Конго" #. module: base #: model:ir.model,name:base.model_ir_exports_line msgid "ir.exports.line" -msgstr "" +msgstr "Строки экспорта" #. module: base #: selection:ir.ui.menu,icon:0 @@ -5788,7 +5743,7 @@ msgstr "Эл. почта" #: 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 "Повторно синхронизируйте определения" +msgstr "Повторная синхронизация выражений" #. module: base #: model:res.country,name:base.tg @@ -5866,7 +5821,7 @@ msgstr "STOCK_GOTO_LAST" #: model:ir.model,name:base.model_ir_actions_report_xml #: selection:ir.ui.menu,action:0 msgid "ir.actions.report.xml" -msgstr "" +msgstr "События отчетов" #. module: base #: view:wizard.module.lang.export:0 @@ -5876,8 +5831,9 @@ msgid "" "translations for your own module, you can also publish all your translation " "at once." msgstr "" -"Если вы сделали много переводов для собственного модуля, вы можете " -"опубликовать все ваши переводом сразу" +"Для улучшения официального перевода выражений в Open ERP, вы должны " +"переводить выражения на сервисе launchpad. Если вы сделали много переводов " +"для собственного модуля, вы можете опубликовать все ваши переводы сразу." #. module: base #: wizard_button:module.lang.install,init,start:0 @@ -5887,7 +5843,7 @@ msgstr "Начать установку" #. module: base #: help:res.lang,code:0 msgid "This field is used to set/get locales for user" -msgstr "" +msgstr "Это поле используется для установки / получения локали пользователя" #. module: base #: model:res.partner.category,name:base.res_partner_category_2 @@ -5981,7 +5937,7 @@ msgstr "Фактор округления" #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" -msgstr "" +msgstr "Компания" #. module: base #: wizard_view:module.upgrade,end:0 @@ -6173,7 +6129,6 @@ msgstr "Возвращаемое" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -6269,7 +6224,7 @@ msgstr "Фолклендские (Мальвинские) острова" #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "odt" -msgstr "" +msgstr "Открытый формат текстового документа" #. module: base #: field:ir.actions.report.custom,type:0 @@ -6307,7 +6262,7 @@ msgstr "terp-administration" #: model:ir.actions.act_window,name:base.action_translation #: model:ir.ui.menu,name:base.menu_action_translation msgid "All terms" -msgstr "Все термины" +msgstr "Все выражения" #. module: base #: model:res.country,name:base.no @@ -6438,11 +6393,12 @@ msgstr "Коста-Рика" #, python-format msgid "Your can't submit bug reports due to uncovered modules: %s" msgstr "" +"Вы не можете отправить сообщение об ошибке из-за открытых модулей: %s" #. module: base #: model:ir.actions.act_window,name:base.action_partner_other_form msgid "Other Partners" -msgstr "" +msgstr "Другие партнеры" #. module: base #: view:ir.model:0 @@ -6460,17 +6416,17 @@ msgstr "Валюты" #. module: base #: view:ir.sequence:0 msgid "Hour 00->12: %(h12)s" -msgstr "" +msgstr "Час 00->12: %(h12)s" #. module: base #: help:res.partner.address,active:0 msgid "Uncheck the active field to hide the contact." -msgstr "" +msgstr "Снимите флажок, чтобы скрыть контакт." #. module: base #: model:res.country,name:base.dk msgid "Denmark" -msgstr "" +msgstr "Дания" #. module: base #: field:res.country,code:0 @@ -6480,12 +6436,12 @@ msgstr "Код страны" #. module: base #: model:ir.model,name:base.model_workflow_instance msgid "workflow.instance" -msgstr "" +msgstr "workflow.instance" #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" -msgstr "" +msgstr "10. %S ==> 20" #. module: base #: model:res.partner.title,name:base.res_partner_title_madam @@ -6495,22 +6451,22 @@ msgstr "Госпожа" #. module: base #: model:res.country,name:base.ee msgid "Estonia" -msgstr "" +msgstr "Эстония" #. module: base #: model:res.country,name:base.nl msgid "Netherlands" -msgstr "" +msgstr "Нидерланды" #. module: base #: model:ir.ui.menu,name:base.next_id_4 msgid "Low Level Objects" -msgstr "" +msgstr "Объекты нижнего уровня" #. module: base #: model:ir.model,name:base.model_ir_report_custom msgid "ir.report.custom" -msgstr "" +msgstr "Пользовательский отчет" #. module: base #: selection:res.partner.event,type:0 @@ -6520,7 +6476,7 @@ msgstr "Предложение закупки" #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" -msgstr "" +msgstr "Значения" #. module: base #: selection:ir.ui.menu,icon:0 @@ -6530,7 +6486,7 @@ msgstr "STOCK_ZOOM_FIT" #. module: base #: model:res.country,name:base.cd msgid "Congo, The Democratic Republic of the" -msgstr "" +msgstr "Демократическая республика Конго" #. module: base #: view:res.request:0 @@ -6542,12 +6498,12 @@ msgstr "Запрос" #. module: base #: model:res.country,name:base.jp msgid "Japan" -msgstr "" +msgstr "Япония" #. module: base #: field:ir.cron,numbercall:0 msgid "Number of Calls" -msgstr "" +msgstr "Количество звонков" #. module: base #: wizard_view:module.lang.install,start:0 @@ -6576,6 +6532,8 @@ msgid "" "Important when you deal with multiple actions, the execution order will be " "decided based on this, low number is higher priority." msgstr "" +"Важно, когда вы имеете дело с несколькими действиями, выполнение заказа " +"будет решено на этой основе, наименьшее число является более приоритетным." #. module: base #: field:ir.actions.report.xml,header:0 @@ -6585,7 +6543,7 @@ msgstr "Добавить заголовок RML" #. module: base #: model:res.country,name:base.gr msgid "Greece" -msgstr "" +msgstr "Греция" #. module: base #: field:res.request,trigger_date:0 @@ -6595,7 +6553,7 @@ msgstr "Дата триггера" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Croatian / hrvatski jezik" -msgstr "" +msgstr "Хорватский / hrvatski jezik" #. module: base #: selection:ir.ui.menu,icon:0 @@ -6605,7 +6563,7 @@ msgstr "STOCK_GO_FORWARD" #. module: base #: help:ir.actions.server,code:0 msgid "Python code to be executed" -msgstr "" +msgstr "Код на Python для выполнения" #. module: base #: selection:ir.module.module.dependency,state:0 @@ -6615,7 +6573,7 @@ msgstr "Не устанавливаемый" #. module: base #: view:res.partner.category:0 msgid "Partner Category" -msgstr "" +msgstr "Категория партнера" #. module: base #: view:ir.actions.server:0 @@ -6634,6 +6592,8 @@ msgid "" "Access all the fields related to the current object using expression in " "double brackets, i.e. [[ object.partner_id.name ]]" msgstr "" +"Доступ ко всем полям, связанным с текущим объектом, используя выражение в " +"двойные скобки, например [[object.partner_id.name]]" #. module: base #: field:res.request.history,body:0 @@ -6681,7 +6641,7 @@ msgstr "Формат печати" #. module: base #: model:ir.ui.menu,name:base.menu_low_workflow msgid "Workflow Items" -msgstr "" +msgstr "Участки рабочего процесса" #. module: base #: field:res.request,ref_doc2:0 @@ -6696,12 +6656,12 @@ msgstr "Ссылка на документ 1" #. module: base #: model:res.country,name:base.ga msgid "Gabon" -msgstr "" +msgstr "Габон" #. module: base #: model:ir.model,name:base.model_ir_model_data msgid "ir.model.data" -msgstr "" +msgstr "Данные" #. module: base #: view:ir.model:0 @@ -6712,7 +6672,7 @@ msgstr "Права доступа" #. module: base #: model:res.country,name:base.gl msgid "Greenland" -msgstr "" +msgstr "Гренландия" #. module: base #: help:ir.actions.report.xml,report_rml:0 @@ -6724,12 +6684,12 @@ msgstr "" #. module: base #: field:res.partner.bank,acc_number:0 msgid "Account Number" -msgstr "" +msgstr "Номер счета" #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" -msgstr "" +msgstr "1. %c ==> Пт Дек 5 18:25:20 2008" #. module: base #: help:ir.ui.menu,groups_id:0 @@ -6738,26 +6698,29 @@ msgid "" "groups. If this field is empty, Open ERP will compute visibility based on " "the related object's read access." msgstr "" +"Если у Вас будут группы, то видимость этого меню будет основана на этих " +"группах. Если это поле не заполнено, система Open ERP вычислит видимость, " +"основанную на прочитанном доступе связанного объекта." #. module: base #: model:res.country,name:base.nc msgid "New Caledonia (French)" -msgstr "" +msgstr "Новая Каледония (заморская территория Франции)" #. module: base #: field:res.partner.function,name:0 msgid "Function Name" -msgstr "" +msgstr "Имя функции" #. module: base #: view:maintenance.contract.wizard:0 msgid "_Cancel" -msgstr "" +msgstr "_Отмена" #. module: base #: model:res.country,name:base.cy msgid "Cyprus" -msgstr "" +msgstr "Кипр" #. module: base #: field:ir.actions.server,subject:0 @@ -6775,7 +6738,7 @@ msgstr "От" #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" -msgstr "" +msgstr "Далее" #. module: base #: selection:ir.ui.menu,icon:0 @@ -6791,38 +6754,38 @@ msgstr "Контент RML" #. module: base #: view:workflow.activity:0 msgid "Incoming transitions" -msgstr "" +msgstr "Входящие перемещения" #. module: base #: model:res.country,name:base.cn msgid "China" -msgstr "" +msgstr "Китай" #. module: base #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "Password empty !" -msgstr "" +msgstr "Пустой пароль!" #. module: base #: model:res.country,name:base.eh msgid "Western Sahara" -msgstr "" +msgstr "Западная Сахара" #. module: base #: model:ir.model,name:base.model_workflow msgid "workflow" -msgstr "" +msgstr "рабочий процесс" #. module: base #: model:res.country,name:base.id msgid "Indonesia" -msgstr "" +msgstr "Индонезия" #. module: base #: selection:ir.actions.todo,start_on:0 msgid "At Once" -msgstr "" +msgstr "Сразу" #. module: base #: selection:ir.actions.server,state:0 @@ -6832,17 +6795,17 @@ msgstr "Записать объект" #. module: base #: model:res.country,name:base.bg msgid "Bulgaria" -msgstr "" +msgstr "Болгария" #. module: base #: model:res.country,name:base.ao msgid "Angola" -msgstr "" +msgstr "Ангола" #. module: base #: model:res.country,name:base.tf msgid "French Southern Territories" -msgstr "" +msgstr "Францизкие Южные Территории" #. module: base #: view:ir.actions.server:0 @@ -6850,6 +6813,8 @@ msgid "" "Only one client action will be execute, last " "clinent action will be consider in case of multiples clients actions" msgstr "" +"Только один клиентское действие будет выполняться, последние клиентское " +"действие будет рассмотреть в случае кратных клиентов действия" #. module: base #: selection:ir.ui.menu,icon:0 @@ -6875,13 +6840,13 @@ msgstr "Название канала" #. module: base #: view:res.lang:0 msgid "5. %y, %Y ==> 08, 2008" -msgstr "" +msgstr "5. %y, %Y ==> 08, 2008" #. module: base #: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 msgid "Object ID" -msgstr "" +msgstr "Идентификатор объекта" #. module: base #: selection:ir.report.custom,print_orientation:0 @@ -6907,13 +6872,13 @@ msgstr "Администрирование" #. module: base #: selection:ir.rule,operator:0 msgid "child_of" -msgstr "" +msgstr "Порожденный" #. module: base #: view:res.users:0 #: field:res.users,company_ids:0 msgid "Accepted Companies" -msgstr "" +msgstr "Акцептованные компании" #. module: base #: field:ir.report.custom.fields,operation:0 @@ -6930,17 +6895,17 @@ msgstr "Ссылка на объект" #. module: base #: model:res.country,name:base.ki msgid "Kiribati" -msgstr "" +msgstr "Кирибати" #. module: base #: model:res.country,name:base.iq msgid "Iraq" -msgstr "" +msgstr "Ирак" #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" -msgstr "" +msgstr "Запустить действие" #. module: base #: wizard_view:base.module.import,import:0 @@ -6951,7 +6916,7 @@ msgstr "Модуль импорта" #. module: base #: model:ir.model,name:base.model_ir_sequence_type msgid "ir.sequence.type" -msgstr "" +msgstr "Тип последовательности" #. module: base #: selection:wizard.module.lang.export,format:0 @@ -6962,7 +6927,7 @@ msgstr "Файл .CSV" #: selection:ir.model,state:0 #: selection:ir.model.grid,state:0 msgid "Base Object" -msgstr "" +msgstr "Основной объект" #. module: base #: selection:ir.ui.menu,icon:0 @@ -6985,7 +6950,7 @@ msgstr "(год)=" #. module: base #: rml:ir.module.reference:0 msgid "Dependencies :" -msgstr "" +msgstr "Зависимости :" #. module: base #: selection:ir.ui.menu,icon:0 @@ -7000,17 +6965,17 @@ msgstr "Метка поля" #. module: base #: model:res.country,name:base.dj msgid "Djibouti" -msgstr "" +msgstr "Джибути" #. module: base #: field:ir.translation,value:0 msgid "Translation Value" -msgstr "" +msgstr "Значение перевода" #. module: base #: model:res.country,name:base.ag msgid "Antigua and Barbuda" -msgstr "" +msgstr "Антигуа и Барбуда" #. module: base #: field:ir.actions.server,condition:0 @@ -7024,7 +6989,7 @@ msgstr "Условие" #. module: base #: model:res.country,name:base.zr msgid "Zaire" -msgstr "" +msgstr "Заир" #. module: base #: field:ir.attachment,res_id:0 @@ -7050,6 +7015,9 @@ msgid "" "through launchpad. We use their online interface to synchronize all " "translations efforts." msgstr "" +"Официальный пакет переводов всех модулей OpenERP/OpenObjects управляется " +"через launchpad.net. Мы используем его интерфейс для синхронизации всех " +"переводов он-лайн." #. module: base #: field:ir.actions.report.xml,report_rml:0 @@ -7075,18 +7043,18 @@ msgstr "Ответить" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Turkish / Türkçe" -msgstr "" +msgstr "Турецкий / Türkçe" #. module: base #: model:ir.actions.act_window,name:base.action_translation_untrans #: model:ir.ui.menu,name:base.menu_action_translation_untrans msgid "Untranslated terms" -msgstr "Непереведенные термины" +msgstr "Непереведенные выражения" #. module: base #: wizard_view:module.lang.import,init:0 msgid "Import New Language" -msgstr "" +msgstr "Импорт нового языка" #. module: base #: model:ir.actions.act_window,name:base.action_workflow_activity_form @@ -7114,7 +7082,7 @@ msgstr "=" #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Second field should be figures" -msgstr "" +msgstr "Второе поле должно быть числовое" #. module: base #: model:ir.actions.act_window,name:base.action_model_grid_security @@ -7138,7 +7106,7 @@ msgstr "Высокий" #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" -msgstr "" +msgstr "Экспорт" #. module: base #: help:res.bank,bic:0 @@ -7148,12 +7116,12 @@ msgstr "БИК" #. module: base #: model:res.country,name:base.tm msgid "Turkmenistan" -msgstr "" +msgstr "Туркменистан" #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" -msgstr "" +msgstr "Сен-Пьер и Микелон" #. module: base #: help:ir.actions.report.xml,header:0 @@ -7193,17 +7161,17 @@ msgstr "STOCK_CONVERT" #. module: base #: model:res.country,name:base.tz msgid "Tanzania" -msgstr "" +msgstr "Танзания" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Danish / Dansk" -msgstr "" +msgstr "Датский/Данск" #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" -msgstr "" +msgstr "Остров Рождества" #. module: base #: view:ir.actions.server:0 @@ -7251,12 +7219,12 @@ msgstr "Источник" #. module: base #: help:res.partner.address,partner_id:0 msgid "Keep empty for a private address, not related to partner." -msgstr "" +msgstr "Оставьте пустым для частного адреса, не связанного с партнером." #. module: base #: model:res.country,name:base.vu msgid "Vanuatu" -msgstr "" +msgstr "Вануату" #. module: base #: view:res.company:0 @@ -7270,6 +7238,8 @@ 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 #: wizard_button:module.upgrade,end,config:0 @@ -7280,12 +7250,12 @@ msgstr "Начать настройку" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" -msgstr "" +msgstr "Каталонский / Català" #. module: base #: model:res.country,name:base.do msgid "Dominican Republic" -msgstr "" +msgstr "Доминиканская республика" #. module: base #: selection:ir.ui.menu,icon:0 @@ -7295,13 +7265,13 @@ msgstr "STOCK_COLOR_PICKER" #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" -msgstr "" +msgstr "Саудовская Аравия" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Bar charts need at least two fields" -msgstr "" +msgstr "Столбцовые диаграммы требуют как минимум два поля" #. module: base #: help:res.partner,supplier:0 @@ -7309,11 +7279,13 @@ msgid "" "Check this box if the partner is a supplier. If it's not checked, purchase " "people will not see it when encoding a purchase order." msgstr "" +"Установите флажок, если партнер является поставщиком. Если он не установлен, " +"партнера не будет видно при выборке, составлении заказ на покупку." #. module: base #: field:ir.model.fields,relation_field:0 msgid "Relation Field" -msgstr "" +msgstr "Связанное поле" #. module: base #: field:workflow.triggers,instance_id:0 @@ -7328,12 +7300,12 @@ msgstr "" #. module: base #: view:wizard.module.lang.export:0 msgid "https://translations.launchpad.net/openobject" -msgstr "" +msgstr "https://translations.launchpad.net/openobject" #. module: base #: field:ir.actions.todo,start_date:0 msgid "Start Date" -msgstr "" +msgstr "Начальная дата" #. module: base #: field:ir.actions.report.xml,report_xml:0 @@ -7343,12 +7315,12 @@ msgstr "Директория XML" #. module: base #: model:res.country,name:base.gn msgid "Guinea" -msgstr "" +msgstr "Гвинея" #. module: base #: model:res.country,name:base.lu msgid "Luxembourg" -msgstr "" +msgstr "Люксембург" #. module: base #: model:ir.actions.todo,note:base.config_wizard_step_user @@ -7358,6 +7330,10 @@ msgid "" "of each users on the different objects of the system.\n" " " msgstr "" +"Создайте пользователей.\n" +"Вы сможете назначить группам пользователей. Группы определяют права доступа " +"каждого пользователя на различные объекты в системе.\n" +" " #. module: base #: selection:res.request,priority:0 @@ -7372,7 +7348,7 @@ msgstr "" #. module: base #: model:res.country,name:base.sv msgid "El Salvador" -msgstr "" +msgstr "Эль Сальвадор" #. module: base #: field:res.bank,phone:0 @@ -7388,7 +7364,7 @@ msgstr "Меню доступа" #. module: base #: model:res.country,name:base.th msgid "Thailand" -msgstr "" +msgstr "Таиланд" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -7435,7 +7411,7 @@ msgstr "<" #. module: base #: model:res.country,name:base.uz msgid "Uzbekistan" -msgstr "" +msgstr "Узбекистан" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window @@ -7446,12 +7422,12 @@ msgstr "" #. module: base #: model:res.country,name:base.vi msgid "Virgin Islands (USA)" -msgstr "" +msgstr "Виргинские острова (США)" #. module: base #: model:res.country,name:base.tw msgid "Taiwan" -msgstr "" +msgstr "Тайвань" #. module: base #: view:ir.rule:0 @@ -7463,7 +7439,7 @@ msgstr "" #: field:ir.report.custom,field_parent:0 #: field:ir.ui.view,field_parent:0 msgid "Child Field" -msgstr "" +msgstr "Подчиненной поле" #. module: base #: field:ir.actions.act_window,usage:0 @@ -7489,7 +7465,7 @@ msgstr "Не устанавливается" #. module: base #: rml:ir.module.reference:0 msgid "View :" -msgstr "" +msgstr "Вид :" #. module: base #: field:ir.model.fields,view_load:0 @@ -7500,7 +7476,7 @@ msgstr "Автозагрузка вида" #: model:ir.actions.act_window,name:base.action_partner_supplier_form #: view:res.partner:0 msgid "Suppliers" -msgstr "" +msgstr "Поставщики" #. module: base #: selection:ir.ui.menu,icon:0 @@ -7510,7 +7486,7 @@ msgstr "STOCK_JUMP_TO" #. module: base #: field:ir.actions.todo,end_date:0 msgid "End Date" -msgstr "" +msgstr "Дата окончания" #. module: base #: field:ir.exports,resource:0 @@ -7522,7 +7498,7 @@ msgstr "Объект" #: field:maintenance.contract,name:0 #: field:maintenance.contract.wizard,name:0 msgid "Contract ID" -msgstr "" +msgstr "Ид контракта" #. module: base #: selection:ir.report.custom.fields,alignment:0 @@ -7537,7 +7513,7 @@ msgstr "Cостояния" #. module: base #: view:multi_company.default:0 msgid "Matching" -msgstr "" +msgstr "Сопоставление" #. module: base #: field:ir.actions.configuration.wizard,name:0 @@ -7559,12 +7535,12 @@ msgstr "Доступ" #. module: base #: model:res.country,name:base.sk msgid "Slovak Republic" -msgstr "" +msgstr "Словацкая Республика" #. module: base #: model:res.country,name:base.aw msgid "Aruba" -msgstr "" +msgstr "Аруба" #. module: base #: selection:ir.cron,interval_type:0 @@ -7579,12 +7555,12 @@ msgstr "Название группы" #. module: base #: model:res.country,name:base.bh msgid "Bahrain" -msgstr "" +msgstr "Бахрейн" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 msgid "Segmentation" -msgstr "" +msgstr "Сегментация" #. module: base #: selection:ir.ui.menu,icon:0 @@ -7596,7 +7572,7 @@ msgstr "STOCK_FIND" #: model:ir.ui.menu,name:base.menu_maintenance_contract_add #: view:maintenance.contract.wizard:0 msgid "Add Maintenance Contract" -msgstr "" +msgstr "Добавить контракт на обслуживание" #. module: base #: selection:module.lang.install,init,lang:0 @@ -7612,38 +7588,38 @@ msgstr "Лимит" #. module: base #: help:ir.actions.server,wkf_model_id:0 msgid "Workflow to be executed on this model." -msgstr "" +msgstr "Рабочий процесс будет выполняться на этой модели." #. module: base #: model:res.country,name:base.jm msgid "Jamaica" -msgstr "" +msgstr "Ямайка" #. module: base #: model:res.country,name:base.az msgid "Azerbaijan" -msgstr "" +msgstr "Азербайджан" #. module: base #: code:addons/base/res/partner/partner.py:0 #, python-format msgid "Warning" -msgstr "" +msgstr "Внимание" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Arabic / الْعَرَبيّة" -msgstr "" +msgstr "Арабский / الْعَرَبيّة" #. module: base #: model:res.country,name:base.gi msgid "Gibraltar" -msgstr "" +msgstr "Гибралтар" #. module: base #: model:res.country,name:base.vg msgid "Virgin Islands (British)" -msgstr "" +msgstr "Виргинские острова (Великобритания)" #. module: base #: selection:ir.ui.menu,icon:0 @@ -7653,17 +7629,17 @@ msgstr "STOCK_MEDIA_PREVIOUS" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Czech / Čeština" -msgstr "" +msgstr "Чешский / Čeština" #. module: base #: model:res.country,name:base.wf msgid "Wallis and Futuna Islands" -msgstr "" +msgstr "Острова Уоллис и Футуна" #. module: base #: model:res.country,name:base.rw msgid "Rwanda" -msgstr "" +msgstr "Руанда" #. module: base #: constraint:res.partner:0 @@ -7678,12 +7654,12 @@ msgstr "Вычислить сумму" #. module: base #: view:ir.sequence:0 msgid "Day of the week (0:Monday): %(weekday)s" -msgstr "" +msgstr "День недели (0:Понедельник): %(weekday)" #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" -msgstr "" +msgstr "Острова Кука" #. module: base #: help:ir.actions.server,mobile:0 @@ -7692,6 +7668,9 @@ msgid "" "invoice, then `object.invoice_address_id.mobile` is the field which gives " "the correct mobile number" msgstr "" +"Обеспечивает поля, которые будут использоваться для извлечения мобильного " +"номера, например, выбрать счет, то `object.invoice_address_id.mobile` " +"является полем, которое дает правильный номер мобильного номера" #. module: base #: field:ir.model.data,noupdate:0 @@ -7706,7 +7685,7 @@ msgstr "" #. module: base #: model:res.country,name:base.sg msgid "Singapore" -msgstr "" +msgstr "Сингапур" #. module: base #: selection:ir.actions.act_window,target:0 @@ -7716,7 +7695,7 @@ msgstr "Текущее окно" #. module: base #: view:ir.values:0 msgid "Action Source" -msgstr "" +msgstr "Источник Действия" #. module: base #: selection:ir.ui.menu,icon:0 @@ -7758,17 +7737,17 @@ msgstr "Название категории" #. module: base #: view:ir.actions.act_window:0 msgid "Select Groups" -msgstr "" +msgstr "Выбор групп" #. module: base #: field:ir.sequence,weight:0 msgid "Weight" -msgstr "" +msgstr "Вес" #. module: base #: view:res.lang:0 msgid "%X - Appropriate time representation." -msgstr "" +msgstr "%X - Комбинированный формат времени." #. module: base #: view:res.company:0 @@ -7787,7 +7766,7 @@ msgstr "" #. module: base #: model:ir.actions.act_window,name:base.action_partner_customer_form_new msgid "New Partner" -msgstr "" +msgstr "Новый партнёр" #. module: base #: selection:ir.report.custom,print_orientation:0 @@ -7858,7 +7837,7 @@ msgstr "Упрощенный интерфейс" #. module: base #: model:res.country,name:base.cl msgid "Chile" -msgstr "" +msgstr "Чили" #. module: base #: selection:ir.ui.menu,icon:0 @@ -7884,22 +7863,22 @@ msgstr "Название вида" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Italian / Italiano" -msgstr "" +msgstr "Итальянский / Italiano" #. module: base #: field:ir.actions.report.xml,attachment:0 msgid "Save As Attachment Prefix" -msgstr "" +msgstr "Сохранить вложение с расширением" #. module: base #: model:res.country,name:base.hr msgid "Croatia" -msgstr "" +msgstr "Хорватия" #. module: base #: field:ir.actions.server,mobile:0 msgid "Mobile No" -msgstr "" +msgstr "Номер мобильного телефона" #. module: base #: model:ir.actions.act_window,name:base.action_partner_by_category @@ -7924,18 +7903,12 @@ msgstr "A5" #. module: base #: model:res.country,name:base.sc msgid "Seychelles" -msgstr "" - -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" +msgstr "Сейшельские острова" #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" -msgstr "" +msgstr "Сьерра-Леоне" #. module: base #: view:res.company:0 @@ -7951,12 +7924,12 @@ msgstr "terp-product" #. module: base #: model:res.country,name:base.tc msgid "Turks and Caicos Islands" -msgstr "" +msgstr "Острова Тёркс и Кайкос" #. module: base #: field:res.partner.bank,owner_name:0 msgid "Account Owner" -msgstr "" +msgstr "Владелец счёта" #. module: base #: field:ir.attachment,res_model:0 @@ -7980,17 +7953,17 @@ msgstr "Доставка" #. module: base #: field:ir.attachment,preview:0 msgid "Image Preview" -msgstr "" +msgstr "Предпросмотр изображения" #. module: base #: model:res.partner.title,name:base.res_partner_title_pvt_ltd msgid "Corp." -msgstr "" +msgstr "Корпорация" #. module: base #: model:res.country,name:base.gw msgid "Guinea Bissau" -msgstr "" +msgstr "Гвинея-Бисау" #. module: base #: view:workflow.instance:0 @@ -8001,12 +7974,12 @@ msgstr "" #: code:addons/base/res/partner/partner.py:0 #, python-format msgid "Partners: " -msgstr "" +msgstr "Партнеры: " #. module: base #: model:res.country,name:base.kp msgid "North Korea" -msgstr "" +msgstr "Северная Корея" #. module: base #: view:ir.report.custom:0 @@ -8031,12 +8004,12 @@ msgstr "" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Polish / Język polski" -msgstr "" +msgstr "Польский / Język polski" #. module: base #: field:ir.exports,name:0 msgid "Export Name" -msgstr "" +msgstr "Имя для экспорта" #. module: base #: help:res.partner.address,type:0 @@ -8053,11 +8026,140 @@ msgstr "Выберите устанавливаемый язык" #. module: base #: model:res.country,name:base.lk msgid "Sri Lanka" -msgstr "" +msgstr "Шри-Ланка" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Russian / русский язык" +msgstr "Русский / русский язык" + +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "" +"You cannot delete the language which is Active !\n" +"Please de-activate the language first." msgstr "" #~ msgid "Others Partners" diff --git a/bin/addons/base/i18n/sk.po b/bin/addons/base/i18n/sk.po index 7bf4bdc7dc6..112480d8c72 100644 --- a/bin/addons/base/i18n/sk.po +++ b/bin/addons/base/i18n/sk.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-03-12 04:50+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:45+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -259,11 +259,6 @@ msgstr "%y - Rok bez storočia ako desatinné číslo [00,99]." msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Pravidlo je splnené ak platí aspoň jedna z podmienok." - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -813,11 +808,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "Webová stránka" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Testy" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1361,7 +1351,6 @@ msgstr "Počet aktualizovaných modulov" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1412,14 +1401,8 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." -msgstr "" -"Zadajte pole / výraz, ktorý vráti zoznam. Napr.: vyberte objednávku v " -"objekte a môžete si vytvoriť slučku na riadky objednávky. Expression = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." +msgstr "Zadajte pole / výraz, ktorý vráti zoznam. Napr.: vyberte objednávku v objekte a môžete si vytvoriť slučku na riadky objednávky. Expression = `object.order_line`." #. module: base #: selection:ir.translation,type:0 @@ -1468,11 +1451,6 @@ msgid "" msgstr "" "Názov objektu musí začínať x_ a nesmie obsahovať žiadne špeciálne znaky!" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "Spraviť pravidlo globálnym, inak je ho nutné pridať do skupiny" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2185,11 +2163,6 @@ msgstr "Role" msgid "Countries" msgstr "Krajiny" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2805,11 +2778,6 @@ msgstr "Stav mysle" msgid "Benin" msgstr "Benin" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "Podmienka je splená ak platia všetky podmienky (AND)." - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3129,7 +3097,6 @@ msgstr "" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3244,9 +3211,7 @@ 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" +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 @@ -3789,11 +3754,6 @@ msgstr "" msgid "ir.translation" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4121,11 +4081,6 @@ msgstr "" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4742,11 +4697,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4993,7 +4943,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6106,7 +6055,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7855,12 +7803,6 @@ msgstr "" msgid "Seychelles" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7989,6 +7931,133 @@ msgstr "" msgid "Russian / русский язык" msgstr "" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" + #, python-format #~ msgid "The read method is not implemented on this object !" #~ msgstr "Metóda nie je implementovaná na tento objekt!" diff --git a/bin/addons/base/i18n/sl.po b/bin/addons/base/i18n/sl.po index debca94c116..afabce32ddd 100644 --- a/bin/addons/base/i18n/sl.po +++ b/bin/addons/base/i18n/sl.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-01-14 04:47+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:45+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -250,11 +250,6 @@ msgstr "%y - Leto brez stoletij predstavljeno kot decimalno število [00,99]." msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Pravilo je izpolnjeno, če je vsaj en test resničen" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -801,11 +796,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "Spletno mesto" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Kriteriji" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1334,7 +1324,6 @@ msgstr "Število osveženih modulov" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1384,10 +1373,7 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." msgstr "" #. module: base @@ -1437,11 +1423,6 @@ msgid "" msgstr "" "Naziv objekta se mora začeti z 'x_' in ne sme vsebovati posebnih znakov." -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2151,11 +2132,6 @@ msgstr "Vloge" msgid "Countries" msgstr "Države" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Posnemi pravila" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2776,11 +2752,6 @@ msgstr "Razpoloženje partnerja" msgid "Benin" msgstr "Benin" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "Pravilo je izpolnjeno, če so vsi testi resnični (IN)" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3101,7 +3072,6 @@ msgstr "Kazahstan" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3216,9 +3186,7 @@ msgstr "Združi po" #. 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" +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 @@ -3761,11 +3729,6 @@ msgstr "Podedovan pogled" msgid "ir.translation" msgstr "ir.translation" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4093,11 +4056,6 @@ msgstr "a4" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -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 #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4718,11 +4676,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Globalno" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4971,7 +4924,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6091,7 +6043,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7845,12 +7796,6 @@ msgstr "a5" msgid "Seychelles" msgstr "Sejšeli" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7981,6 +7926,133 @@ msgstr "Šrilanka" msgid "Russian / русский язык" msgstr "rusko" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" + #~ msgid "Others Partners" #~ msgstr "Ostali partnerji" diff --git a/bin/addons/base/i18n/sq.po b/bin/addons/base/i18n/sq.po index b38730bfd88..7b5c9cc61aa 100644 --- a/bin/addons/base/i18n/sq.po +++ b/bin/addons/base/i18n/sq.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-01-14 04:45+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:41+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -254,11 +254,6 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -801,11 +796,6 @@ msgstr "" msgid "Website" msgstr "" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1332,7 +1322,6 @@ msgstr "" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1381,10 +1370,7 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." msgstr "" #. module: base @@ -1433,11 +1419,6 @@ msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2147,11 +2128,6 @@ msgstr "" msgid "Countries" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2762,11 +2738,6 @@ msgstr "" msgid "Benin" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3086,7 +3057,6 @@ msgstr "" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3201,9 +3171,7 @@ 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" +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 @@ -3746,11 +3714,6 @@ msgstr "" msgid "ir.translation" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4078,11 +4041,6 @@ msgstr "" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4699,11 +4657,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4950,7 +4903,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6063,7 +6015,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7812,12 +7763,6 @@ msgstr "" msgid "Seychelles" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7945,3 +7890,130 @@ msgstr "" #: selection:module.lang.install,init,lang:0 msgid "Russian / русский язык" msgstr "" + +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" diff --git a/bin/addons/base/i18n/sr.po b/bin/addons/base/i18n/sr.po index 5268df4105f..41d758b3bde 100644 --- a/bin/addons/base/i18n/sr.po +++ b/bin/addons/base/i18n/sr.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-01-14 04:47+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:45+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -258,11 +258,6 @@ msgstr "%y - Godina bez veka kao decimalni broj [00,99]" msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Pravilo je zadovoljeno ako je bar jedan test tačan" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -816,11 +811,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "Web stranica" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Testovi" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1358,7 +1348,6 @@ msgstr "Broj ažuriranih modula" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1409,14 +1398,8 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." -msgstr "" -"Unesite polje/izraz koji će da vrati listu. Npr. odaberite nalog za prodaju " -"u objektu, pa možete da imate petlju na redovima naloga za prodaju. Izraz = " -"'object.order_line'" +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." +msgstr "Unesite polje/izraz koji će da vrati listu. Npr. odaberite nalog za prodaju u objektu, pa možete da imate petlju na redovima naloga za prodaju. Izraz = 'object.order_line'" #. module: base #: selection:ir.translation,type:0 @@ -1465,11 +1448,6 @@ msgid "" msgstr "" "Ime objekta mora da počinje sa x_ i ne sme da sadrži specijalne znake!" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2185,11 +2163,6 @@ msgstr "Uloge" msgid "Countries" msgstr "Zemlje" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Pravila zapisa" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2822,11 +2795,6 @@ msgstr "Stanje uma" msgid "Benin" msgstr "Benin" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "Pravilo je zadovoljeno ako su svi testovi istina (logičko I (AND))" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3150,7 +3118,6 @@ msgstr "Kazahstan" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3267,9 +3234,7 @@ msgstr "Grupiši po" #. 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" +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 @@ -3815,11 +3780,6 @@ msgstr "Nasleđeni pregled" msgid "ir.translation" msgstr "ir.translation" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4147,13 +4107,6 @@ msgstr "a4" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" -"Više pravila nad istim objektom se priključuju korišćenjem operatora " -"logičkog ILI (OR)" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4781,11 +4734,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "Reunion (Franciska)" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Globalno" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -5032,7 +4980,6 @@ msgstr "Dobavljač komponenti" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6158,7 +6105,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7936,12 +7882,6 @@ msgstr "a5" msgid "Seychelles" msgstr "Sejšeli" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -8072,6 +8012,133 @@ msgstr "Šri Lanka" msgid "Russian / русский язык" msgstr "Ruski / русский язык" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" + #, python-format #~ msgid "The unlink method is not implemented on this object !" #~ msgstr "Metoda za prekid veze nije implementirana u ovaj objekat !" diff --git a/bin/addons/base/i18n/sv.po b/bin/addons/base/i18n/sv.po index 0b550763688..ccef6132d96 100644 --- a/bin/addons/base/i18n/sv.po +++ b/bin/addons/base/i18n/sv.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2010-03-28 04:27+0000\n" -"Last-Translator: Anders Wallenquist \n" +"PO-Revision-Date: 2010-09-29 08:22+0000\n" +"Last-Translator: OpenERP Administrators \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: 2010-03-29 03:45+0000\n" +"X-Launchpad-Export-Date: 2010-09-30 04:37+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -259,11 +259,6 @@ msgstr "%y - År utan århundrade i två siffror [00,99]." msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Regeln är uppfyllt om minst ett test är sant" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -530,7 +525,7 @@ msgstr "Skräddarsydd rapport" #. module: base #: selection:ir.report.custom,type:0 msgid "Bar Chart" -msgstr "" +msgstr "Stapeldiagram" #. module: base #: selection:ir.ui.menu,icon:0 @@ -806,11 +801,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "Webbplats" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1337,7 +1327,6 @@ msgstr "" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1386,10 +1375,7 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." msgstr "" #. module: base @@ -1439,11 +1425,6 @@ msgid "" msgstr "" "Objektnamnet måste börja med x_ och får inte innehålla några specialtecken!" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2153,11 +2134,6 @@ msgstr "" msgid "Countries" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2770,11 +2746,6 @@ msgstr "" msgid "Benin" msgstr "Benin" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3094,7 +3065,6 @@ msgstr "Kazakhstan" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3209,9 +3179,7 @@ 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" +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 @@ -3754,11 +3722,6 @@ msgstr "" msgid "ir.translation" msgstr "ir.translation" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4086,11 +4049,6 @@ msgstr "A4" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4709,11 +4667,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4960,7 +4913,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6075,7 +6027,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7828,12 +7779,6 @@ msgstr "A5" msgid "Seychelles" msgstr "Seychelles" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7961,3 +7906,130 @@ msgstr "Sri Lanka" #: selection:module.lang.install,init,lang:0 msgid "Russian / русский язык" msgstr "Russian / русский язык" + +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" diff --git a/bin/addons/base/i18n/th.po b/bin/addons/base/i18n/th.po index cea9ad23fa8..10450913054 100644 --- a/bin/addons/base/i18n/th.po +++ b/bin/addons/base/i18n/th.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-01-14 04:48+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:46+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -249,11 +249,6 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -796,11 +791,6 @@ msgstr "" msgid "Website" msgstr "" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1327,7 +1317,6 @@ msgstr "" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1376,10 +1365,7 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." msgstr "" #. module: base @@ -1428,11 +1414,6 @@ msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2142,11 +2123,6 @@ msgstr "" msgid "Countries" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2757,11 +2733,6 @@ msgstr "" msgid "Benin" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3081,7 +3052,6 @@ msgstr "" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3196,9 +3166,7 @@ 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" +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 @@ -3741,11 +3709,6 @@ msgstr "" msgid "ir.translation" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4073,11 +4036,6 @@ msgstr "" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4694,11 +4652,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4945,7 +4898,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6058,7 +6010,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7807,12 +7758,6 @@ msgstr "" msgid "Seychelles" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7940,3 +7885,130 @@ msgstr "" #: selection:module.lang.install,init,lang:0 msgid "Russian / русский язык" msgstr "" + +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" diff --git a/bin/addons/base/i18n/tlh.po b/bin/addons/base/i18n/tlh.po index a17185b9edc..a9179aa7262 100644 --- a/bin/addons/base/i18n/tlh.po +++ b/bin/addons/base/i18n/tlh.po @@ -13,7 +13,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-01-14 04:48+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:46+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -248,11 +248,6 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -795,11 +790,6 @@ msgstr "" msgid "Website" msgstr "" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1326,7 +1316,6 @@ msgstr "" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1375,10 +1364,7 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." msgstr "" #. module: base @@ -1427,11 +1413,6 @@ msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2141,11 +2122,6 @@ msgstr "" msgid "Countries" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2756,11 +2732,6 @@ msgstr "" msgid "Benin" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3080,7 +3051,6 @@ msgstr "" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3195,9 +3165,7 @@ 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" +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 @@ -3740,11 +3708,6 @@ msgstr "" msgid "ir.translation" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4072,11 +4035,6 @@ msgstr "" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4693,11 +4651,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4944,7 +4897,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6057,7 +6009,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7806,12 +7757,6 @@ msgstr "" msgid "Seychelles" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7939,3 +7884,130 @@ msgstr "" #: selection:module.lang.install,init,lang:0 msgid "Russian / русский язык" msgstr "" + +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" diff --git a/bin/addons/base/i18n/tr.po b/bin/addons/base/i18n/tr.po index 2e3bd449ed1..07a33dbf62c 100644 --- a/bin/addons/base/i18n/tr.po +++ b/bin/addons/base/i18n/tr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2010-02-07 05:12+0000\n" +"PO-Revision-Date: 2010-10-12 07:49+0000\n" "Last-Translator: Fabien (Open ERP) \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: 2010-02-08 04:45+0000\n" +"X-Launchpad-Export-Date: 2010-10-13 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -257,11 +257,6 @@ msgstr "%y - Yıl, yüzyıl olmadan onluk sistemde [00,99]." msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Testlerden en az biri Doğru ise kural sağlanır." - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -815,11 +810,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "Web sitesi" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Sınamalar" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1362,7 +1352,6 @@ msgstr "Bir kaç modül güncllendi" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1467,11 +1456,6 @@ msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "Nesne adı x_ ile başlamalı ve özel karakterler içermemelidir!" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "Kuralı genel geçer yapın yoksa bir gruba eklenmesi gerekir." - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2187,11 +2171,6 @@ msgstr "Roller" msgid "Countries" msgstr "Ülkeler" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Kayıt kuralları" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2822,11 +2801,6 @@ msgstr "Ruh Hali" msgid "Benin" msgstr "Benin" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "Bu kural bütün sınamalar doğru (True) sonuçlanırsa sağlanır (AND)" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3149,7 +3123,6 @@ msgstr "Kazakistan" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3267,10 +3240,10 @@ msgstr "Gruplama Anahtarı" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "" -"\"%s\" contains too many dots. XML ids should not contain dots ! These are " +"'%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\" çok fazla nokta içermektedir. XML belirteçlerinde nokta bulunmaz ! " +"'%s' çok fazla nokta içermektedir. XML belirteçlerinde nokta bulunmaz ! " "Nokta diğer modüllerin verilerine atıfta bulunmak için kullanılır. Örneğin, " "module.reference_id ." @@ -3818,11 +3791,6 @@ msgstr "Devralınan Görünüm" msgid "ir.translation" msgstr "ir.translation" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4150,13 +4118,6 @@ msgstr "a4" msgid "Search View Ref." msgstr "Arama Görüntüsü Referansı" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" -"Aynı nesne üzerindeki birden fazla kural OR operatörü kullanılarak " -"birleştirilir" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4782,11 +4743,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "Reunion (Fransız)" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Evrensel" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -5034,7 +4990,6 @@ msgstr "Parça Tedarikçisi" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6164,7 +6119,6 @@ msgstr "Ger Dönen" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7943,12 +7897,6 @@ msgstr "a5" msgid "Seychelles" msgstr "Seyşeller" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "Aynı kullanıcı adı ile iki kullanıcı oluşturamazsınız !" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -8079,6 +8027,135 @@ msgstr "Sri Lanka" msgid "Russian / русский язык" msgstr "Rusça / русский язык" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "Aynı kullanıcı adı ile iki kullanıcı oluşturamazsınız !" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "" +"You cannot delete the language which is Active !\n" +"Please de-activate the language first." +msgstr "" + #, python-format #~ msgid "" #~ "The sum of the data (2nd field) is null.\n" diff --git a/bin/addons/base/i18n/uk.po b/bin/addons/base/i18n/uk.po index 6b492ef857f..f19050aa194 100644 --- a/bin/addons/base/i18n/uk.po +++ b/bin/addons/base/i18n/uk.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2010-03-28 04:33+0000\n" +"PO-Revision-Date: 2010-09-09 06:59+0000\n" "Last-Translator: Fabien (Open ERP) \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: 2010-03-29 03:45+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:46+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -256,11 +256,6 @@ msgstr "%y - Рік без століття цифрами [00,99]." msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Правило задовольняється, якщо принаймні один тест є 'істина'" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -813,11 +808,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "Веб-сайт" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Тести" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1359,7 +1349,6 @@ msgstr "Кількість обновлених модулів" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1409,10 +1398,7 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." msgstr "" #. module: base @@ -1462,11 +1448,6 @@ msgid "" msgstr "" "Назва об'єкту має починатися з x_ і не містити ніяких спеціальних символів!" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "Зробіть правило загальним чи призначте його групі" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2178,11 +2159,6 @@ msgstr "Ролі" msgid "Countries" msgstr "Країни" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Правила запису" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2808,11 +2784,6 @@ msgstr "Настрій" msgid "Benin" msgstr "Бенін" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "Правило задовольняється, якщо всі тести є True (AND)" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3136,7 +3107,6 @@ msgstr "Казахстан" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3253,9 +3223,7 @@ 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" +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 @@ -3798,11 +3766,6 @@ msgstr "Успадкований вид" msgid "ir.translation" msgstr "ir.translation" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4130,11 +4093,6 @@ msgstr "А4" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "Декілька правил для однакових об'єктів об'єднуються оператором OR" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4755,11 +4713,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Глобальне" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -5008,7 +4961,6 @@ msgstr "Постачальник Компонентів" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6124,7 +6076,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7890,12 +7841,6 @@ msgstr "А5" msgid "Seychelles" msgstr "Сейшельські Острови" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -8024,6 +7969,133 @@ msgstr "Шрі-Ланка" msgid "Russian / русский язык" msgstr "Російська / Russian" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" + #, python-format #~ msgid "The unlink method is not implemented on this object !" #~ msgstr "Метод unlink не реалізований у цьому об'єкті!" diff --git a/bin/addons/base/i18n/uk_UA.po b/bin/addons/base/i18n/uk_UA.po index d7199d5d3de..c1923fd44a9 100644 --- a/bin/addons/base/i18n/uk_UA.po +++ b/bin/addons/base/i18n/uk_UA.po @@ -242,11 +242,6 @@ msgstr "" msgid "Validated" msgstr "" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "Правило задовольняється, якщо принаймні один тест є 'істина'" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -796,11 +791,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "Веб-сайт" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "Тести" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1319,7 +1309,6 @@ msgstr "" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1409,11 +1398,6 @@ msgstr "Мадагаскар" msgid "The Object name must start with x_ and not contain any special character !" msgstr "Назва об'єкту має починатися з x_ і не містити ніяких спеціальних символів!" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2108,11 +2092,6 @@ msgstr "Ролі" msgid "Countries" msgstr "Країни" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "Правила запису" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2708,11 +2687,6 @@ msgstr "Set NULL" msgid "Benin" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "Правило задовольняється, якщо всі тести є True (AND)" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3014,7 +2988,6 @@ msgstr "" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3078,8 +3051,7 @@ msgstr "" #. module: base #: code:addons/osv/orm.py:0 #, python-format -msgid "You try to write on an record that doesn\'t exist ' \\n" -" '(Document type: %s)." +msgid "You try to write on an record that doesn't exist.\n(Document type: %s)." msgstr "" #. module: base @@ -3132,7 +3104,7 @@ msgstr "" #. module: base #: code:addons/addons/base/ir/ir_model.py:0 #, python-format -msgid "\"%s\" contains too many dots. XML ids should not contain dots ! These are used to refer to other modules data, as in module.reference_id" +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 @@ -3696,11 +3668,6 @@ msgstr "ir.translation" msgid "Luxembourg" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -3986,11 +3953,6 @@ msgstr "Внутрішній заголовок RML" msgid "a4" msgstr "А4" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "Декілька правил для однакових об'єктів об'єднуються оператором OR" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4645,11 +4607,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "Глобальне" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4878,7 +4835,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -5979,7 +5935,6 @@ msgstr "Батьківська" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7812,3 +7767,121 @@ msgstr "" msgid "Russian / русский язык" msgstr "" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "The operation cannot be completed, probably due to the following:\n- deletion: you may be trying to delete a record while other records still reference it\n- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "\n\n[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" diff --git a/bin/addons/base/i18n/vi.po b/bin/addons/base/i18n/vi.po index c2dd2eccbd3..19998e865db 100644 --- a/bin/addons/base/i18n/vi.po +++ b/bin/addons/base/i18n/vi.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-01-14 04:48+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:46+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -249,11 +249,6 @@ msgstr "" msgid "STOCK_GOTO_FIRST" msgstr "" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -796,11 +791,6 @@ msgstr "" msgid "Website" msgstr "" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1327,7 +1317,6 @@ msgstr "" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1376,10 +1365,7 @@ msgstr "" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." msgstr "" #. module: base @@ -1428,11 +1414,6 @@ msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2142,11 +2123,6 @@ msgstr "" msgid "Countries" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2757,11 +2733,6 @@ msgstr "" msgid "Benin" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3081,7 +3052,6 @@ msgstr "" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3196,9 +3166,7 @@ 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" +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 @@ -3741,11 +3709,6 @@ msgstr "" msgid "ir.translation" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4073,11 +4036,6 @@ msgstr "" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4694,11 +4652,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4945,7 +4898,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6058,7 +6010,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7807,12 +7758,6 @@ msgstr "" msgid "Seychelles" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7940,3 +7885,130 @@ msgstr "" #: selection:module.lang.install,init,lang:0 msgid "Russian / русский язык" msgstr "" + +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" diff --git a/bin/addons/base/i18n/zh_CN.po b/bin/addons/base/i18n/zh_CN.po index 17a98775903..da9fef6cc4e 100644 --- a/bin/addons/base/i18n/zh_CN.po +++ b/bin/addons/base/i18n/zh_CN.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2010-03-28 04:32+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2010-10-12 07:39+0000\n" +"Last-Translator: Anup (OpenERP) \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: 2010-03-29 03:45+0000\n" +"X-Launchpad-Export-Date: 2010-10-13 04:58+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -199,7 +199,7 @@ msgstr "模块数" #. module: base #: field:res.partner.bank.type.field,size:0 msgid "Max. Size" -msgstr "" +msgstr "字段长度" #. module: base #: field:res.partner.address,name:0 @@ -229,7 +229,7 @@ msgstr "密码不符合!" #: code:addons/base/module/module.py:0 #, python-format msgid "This url '%s' must provide an html file with links to zip modules" -msgstr "" +msgstr "这个 URL '%s' 必须提供一个链接到 zip 模块文件的 HTML 页面" #. module: base #: selection:res.request,state:0 @@ -251,11 +251,6 @@ msgstr "%y - 不包含世纪的十进制年份数 [00,99]。" msgid "STOCK_GOTO_FIRST" msgstr "STOCK_GOTO_FIRST" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "只要一个条件判断为真,该规则即满足" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" @@ -800,11 +795,6 @@ msgstr "ir.model.config" msgid "Website" msgstr "网站" -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "测试" - #. module: base #: view:ir.module.repository:0 msgid "Repository" @@ -1232,7 +1222,7 @@ msgstr "提示:这个操作会花费一些时间" msgid "" "If set, sequence will only be used in case this python expression matches, " "and will precede other sequences." -msgstr "" +msgstr "当设置后, 系统会优先使用这个python表达式来做为序号." #. module: base #: selection:ir.actions.act_window,view_type:0 @@ -1334,7 +1324,6 @@ msgstr "已更新的模块数" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 @@ -1436,11 +1425,6 @@ msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "对象名必须以“x_”开始且不能包含任何特殊字符!" -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "让规则的作用范围为全局,否则需要将其指定给用户组" - #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: field:ir.report.custom,menu_id:0 @@ -2150,11 +2134,6 @@ msgstr "角色" msgid "Countries" msgstr "国家" -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "记录规则" - #. module: base #: field:res.partner,vat:0 msgid "VAT" @@ -2606,7 +2585,7 @@ msgstr "作者" #. module: base #: model:res.country,name:base.mk msgid "FYROM" -msgstr "" +msgstr "马其顿共和国" #. module: base #: selection:ir.ui.menu,icon:0 @@ -2769,11 +2748,6 @@ msgstr "满意度" msgid "Benin" msgstr "贝宁" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "如果所有测试都为真的话该规则将满足条件(“与”运算)" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -3093,7 +3067,6 @@ msgstr "哈萨克斯坦" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3156,7 +3129,7 @@ msgstr "网页" #. module: base #: selection:module.lang.install,init,lang:0 msgid "English (CA)" -msgstr "英语(加拿大)" +msgstr "英语(加拿大)" #. module: base #: field:res.partner.event,planned_revenue:0 @@ -3209,11 +3182,9 @@ msgstr "分组方式" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "" -"\"%s\" contains too many dots. XML ids should not contain dots ! These are " +"'%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 标识符不应该包括点!\r\n" -"其作用是引用到其他模块数据,如module.reference_id" +msgstr "'%s'包含太多点。XML 标识符不应该包括点!其作用是引用到其他模块数据,如module.reference_id" #. module: base #: selection:ir.ui.menu,icon:0 @@ -3757,11 +3728,6 @@ msgstr "继承视图" msgid "ir.translation" msgstr "ir.translation" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "ir.rule.group" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4089,11 +4055,6 @@ msgstr "a4" msgid "Search View Ref." msgstr "搜索视图引用" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "同一对象上的多条规则使用“或”(OR)操作符连接。" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4712,11 +4673,6 @@ msgstr "STOCK_MEDIA_RECORD" msgid "Reunion (French)" msgstr "法属留尼旺岛" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "全局" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4963,7 +4919,6 @@ msgstr "零件供应商" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -5381,7 +5336,7 @@ msgstr "强制域" #. module: base #: help:ir.sequence,weight:0 msgid "If two sequences match, the highest weight will be used." -msgstr "" +msgstr "如果有两种设置, 则采用优先级最高的一个." #. module: base #: model:ir.actions.act_window,name:base.action_attachment @@ -6064,7 +6019,7 @@ msgstr "上级" #. module: base #: view:multi_company.default:0 msgid "Returning" -msgstr "" +msgstr "所属公司" #. module: base #: field:ir.actions.act_window,res_model:0 @@ -6080,7 +6035,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -6656,7 +6610,7 @@ msgstr "职能名称" #. module: base #: view:maintenance.contract.wizard:0 msgid "_Cancel" -msgstr "取消(_C)" +msgstr "取消(_C)" #. module: base #: model:res.country,name:base.cy @@ -7835,12 +7789,6 @@ msgstr "a5" msgid "Seychelles" msgstr "塞舌尔" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "用户名必须唯一!" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7969,6 +7917,135 @@ msgstr "斯里兰卡" msgid "Russian / русский язык" msgstr "俄语 / русский язык" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "用户名必须唯一!" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "用户错误" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "" +"You cannot delete the language which is Active !\n" +"Please de-activate the language first." +msgstr "" + #~ msgid "Main Company" #~ msgstr "母公司" @@ -9027,10 +9104,6 @@ msgstr "俄语 / русский язык" #~ "defined !" #~ msgstr "该供应商的 付款方式未定义(计算)付款方式明细!" -#, python-format -#~ msgid "User Error" -#~ msgstr "用户错误" - #, python-format #~ msgid "not implemented" #~ msgstr "尚未实现" diff --git a/bin/addons/base/i18n/zh_TW.po b/bin/addons/base/i18n/zh_TW.po index bdc82ef531c..da90f77a409 100644 --- a/bin/addons/base/i18n/zh_TW.po +++ b/bin/addons/base/i18n/zh_TW.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2009-12-18 08:39+0000\n" -"PO-Revision-Date: 2010-02-24 06:09+0000\n" +"PO-Revision-Date: 2010-08-20 04:54+0000\n" "Last-Translator: OpenERP Administrators \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: 2010-02-25 04:50+0000\n" +"X-Launchpad-Export-Date: 2010-09-29 04:47+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -24,17 +24,17 @@ msgstr "" #. module: base #: wizard_view:res.partner.sms_send,init:0 msgid "SMS - Gateway: clickatell" -msgstr "" +msgstr "短信網關:clickatell" #. module: base #: view:res.lang:0 msgid "%j - Day of the year as a decimal number [001,366]." -msgstr "" +msgstr "%j - 十進製表示的該年中的天數 [001,366]." #. module: base #: field:ir.values,meta_unpickle:0 msgid "Metadata" -msgstr "" +msgstr "其他相關資料" #. module: base #: field:ir.ui.view,arch:0 @@ -46,12 +46,12 @@ msgstr "視圖結構" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "You can not create this kind of document! (%s)" -msgstr "" +msgstr "您無法建立這種文件! (%s)" #. module: base #: wizard_field:module.lang.import,init,code:0 msgid "Code (eg:en__US)" -msgstr "" +msgstr "語言代碼(如:en__US)" #. module: base #: view:workflow:0 @@ -63,7 +63,7 @@ msgstr "工作流程" #. module: base #: view:wizard.module.lang.export:0 msgid "To browse official translations, you can visit this link: " -msgstr "" +msgstr "要瀏覽官方翻譯,請訪問此連接: " #. module: base #: selection:module.lang.install,init,lang:0 @@ -73,27 +73,27 @@ msgstr "" #. module: base #: field:ir.actions.server,wkf_model_id:0 msgid "Workflow On" -msgstr "" +msgstr "工作流程作用於" #. module: base #: view:ir.module.module:0 msgid "Created Views" -msgstr "" +msgstr "已建立的視圖" #. module: base #: view:workflow.activity:0 msgid "Outgoing transitions" -msgstr "" +msgstr "傳出轉換" #. module: base #: selection:ir.report.custom,frequency:0 msgid "Yearly" -msgstr "" +msgstr "每年" #. module: base #: field:ir.actions.act_window,target:0 msgid "Target Window" -msgstr "" +msgstr "目標視窗" #. module: base #: model:ir.actions.todo,note:base.config_wizard_simple_view @@ -106,11 +106,16 @@ msgid "" "understand. You will be able to switch to the extended view later.\n" " " msgstr "" +"請在「簡化界面」和擴展界面之間選擇。\n" +"如果您是第一次測試或使用 OpenERP,我們建議您使用簡化界面,\n" +"它的選項和欄位更少更容易理解。\n" +"以後您可以切換到擴展視圖方式。\n" +" " #. module: base #: field:ir.rule,operand:0 msgid "Operand" -msgstr "" +msgstr "運算元素" #. module: base #: model:res.country,name:base.kr @@ -122,7 +127,7 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_workflow_transition #: view:workflow.activity:0 msgid "Transitions" -msgstr "" +msgstr "轉換" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -159,7 +164,7 @@ msgstr "编号增量" #: model:ir.actions.act_window,name:base.action_res_company_tree #: model:ir.ui.menu,name:base.menu_action_res_company_tree msgid "Company's Structure" -msgstr "" +msgstr "公司結構" #. module: base #: model:ir.model,name:base.model_ir_report_custom_fields @@ -186,17 +191,17 @@ msgstr "" #: field:ir.actions.report.custom,multi:0 #: field:ir.actions.report.xml,multi:0 msgid "On multiple doc." -msgstr "" +msgstr "作用於多個文檔。" #. module: base #: field:ir.module.category,module_nr:0 msgid "Number of Modules" -msgstr "" +msgstr "模組數" #. module: base #: field:res.partner.bank.type.field,size:0 msgid "Max. Size" -msgstr "" +msgstr "最大尺寸" #. module: base #: field:res.partner.address,name:0 @@ -209,7 +214,7 @@ msgstr "联系人名称" msgid "" "Save this document to a %s file and edit it with a specific software or a " "text editor. The file encoding is UTF-8." -msgstr "" +msgstr "把此檔案保存為%s檔案之後可以用編輯器或對應的軟體修改它. 該檔案的格式是 UTF-8." #. module: base #: selection:ir.ui.menu,icon:0 @@ -220,65 +225,60 @@ msgstr "" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "Password mismatch !" -msgstr "" +msgstr "密碼錯誤 !" #. module: base #: code:addons/base/module/module.py:0 #, python-format msgid "This url '%s' must provide an html file with links to zip modules" -msgstr "" +msgstr "這個URL '%s' 必須提供一個連結到zip模組的HTML檔案" #. module: base #: selection:res.request,state:0 msgid "active" -msgstr "" +msgstr "啟用" #. module: base #: field:ir.actions.wizard,wiz_name:0 msgid "Wizard Name" -msgstr "" +msgstr "嚮導名稱" #. module: base #: view:res.lang:0 msgid "%y - Year without century as a decimal number [00,99]." -msgstr "" +msgstr "%y - 不包含世紀的十進制年份數 [00,99]。" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_FIRST" msgstr "" -#. module: base -#: help:ir.rule.group,rules:0 -msgid "The rule is satisfied if at least one test is True" -msgstr "" - #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Get Max" -msgstr "" +msgstr "獲取最大值" #. module: base #: help:ir.actions.act_window,limit:0 msgid "Default limit for the list view" -msgstr "" +msgstr "列表視圖的預設數目限制" #. module: base #: field:ir.model.data,date_update:0 msgid "Update Date" -msgstr "" +msgstr "更新日期" #. module: base #: field:ir.actions.act_window,src_model:0 msgid "Source Object" -msgstr "" +msgstr "來源對象" #. module: base #: model:ir.actions.act_window,name:base.act_ir_actions_todo_form #: view:ir.actions.todo:0 #: model:ir.ui.menu,name:base.menu_ir_actions_todo_form msgid "Config Wizard Steps" -msgstr "" +msgstr "配置嚮導步驟" #. module: base #: model:ir.model,name:base.model_ir_ui_view_sc @@ -289,7 +289,7 @@ msgstr "" #: field:ir.model.access,group_id:0 #: field:ir.rule,rule_group:0 msgid "Group" -msgstr "" +msgstr "群組" #. module: base #: field:ir.exports.line,name:0 @@ -302,7 +302,7 @@ msgstr "名称字段" #: model:ir.actions.act_window,name:base.open_module_tree_uninstall #: model:ir.ui.menu,name:base.menu_module_tree_uninstall msgid "Uninstalled modules" -msgstr "" +msgstr "未安裝的模組" #. module: base #: selection:ir.actions.report.xml,report_type:0 @@ -313,12 +313,12 @@ msgstr "" #: wizard_view:server.action.create,init:0 #: wizard_field:server.action.create,init,type:0 msgid "Select Action Type" -msgstr "" +msgstr "選擇動作類型" #. module: base #: selection:ir.actions.todo,type:0 msgid "Configure" -msgstr "" +msgstr "組態" #. module: base #: model:res.country,name:base.tv @@ -329,18 +329,18 @@ msgstr "" #: selection:ir.model,state:0 #: selection:ir.model.grid,state:0 msgid "Custom Object" -msgstr "" +msgstr "自定義對象" #. module: base #: field:res.lang,date_format:0 msgid "Date Format" -msgstr "" +msgstr "日期格式" #. module: base #: field:res.bank,email:0 #: field:res.partner.address,email:0 msgid "E-Mail" -msgstr "" +msgstr "電子郵件" #. module: base #: model:res.country,name:base.an @@ -353,7 +353,7 @@ msgstr "" msgid "" "You can not remove the admin user as it is used internally for resources " "created by OpenERP (updates, module installation, ...)" -msgstr "" +msgstr "您無法移除admin帳號,它必須要操作內部資源!例如升級,模組安裝,...等" #. module: base #: model:res.country,name:base.gf @@ -363,7 +363,7 @@ msgstr "" #. module: base #: field:ir.ui.view.custom,ref_id:0 msgid "Original View" -msgstr "" +msgstr "原始視圖" #. module: base #: selection:module.lang.install,init,lang:0 @@ -375,12 +375,12 @@ msgstr "" msgid "" "If you check this, then the second time the user prints with same attachment " "name, it returns the previous report." -msgstr "" +msgstr "如果您選中此處,當下次用戶使用相同的附件名稱列印時將返回以前的報表。" #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" -msgstr "" +msgstr "ISO代碼即為 po 翻譯檔的名稱" #. module: base #: selection:ir.ui.menu,icon:0 @@ -418,6 +418,8 @@ msgid "" "The ISO country code in two chars.\n" "You can use this field for quick search." msgstr "" +"ISO 國家代碼使用兩個字符。\n" +"您可以使用該欄位來快速搜索。" #. module: base #: selection:workflow.activity,join_mode:0 @@ -428,13 +430,13 @@ msgstr "" #. module: base #: view:res.partner:0 msgid "Sales & Purchases" -msgstr "" +msgstr "銷售&採購" #. module: base #: view:ir.actions.wizard:0 #: field:wizard.ir.model.menu.create.line,wizard_id:0 msgid "Wizard" -msgstr "" +msgstr "嚮導" #. module: base #: selection:ir.ui.menu,icon:0 @@ -446,38 +448,38 @@ msgstr "" #: view:ir.actions.wizard:0 #: model:ir.ui.menu,name:base.menu_ir_action_wizard msgid "Wizards" -msgstr "" +msgstr "嚮導" #. module: base #: selection:res.config.view,view:0 msgid "Extended Interface" -msgstr "" +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 "" +msgstr "自製的欄位名稱開頭必須是 'x_' !" #. module: base #: help:ir.actions.server,action_id:0 msgid "Select the Action Window, Report, Wizard to be executed." -msgstr "" +msgstr "選擇要執行的動作視窗、報表或嚮導。" #. module: base #: view:wizard.module.lang.export:0 msgid "Export done" -msgstr "" +msgstr "匯出完成" #. module: base #: view:ir.model:0 msgid "Model Description" -msgstr "" +msgstr "區域說明" #. module: base #: field:workflow.transition,trigger_expr_id:0 msgid "Trigger Expression" -msgstr "" +msgstr "觸發器表達式" #. module: base #: model:res.country,name:base.jo @@ -488,7 +490,7 @@ msgstr "" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "You can not remove the model '%s' !" -msgstr "" +msgstr "您無法移除 '%s' 這個區域" #. module: base #: model:res.country,name:base.er @@ -498,7 +500,7 @@ msgstr "" #. module: base #: view:res.config.view:0 msgid "Configure simple view" -msgstr "" +msgstr "配置為簡單視圖" #. module: base #: selection:module.lang.install,init,lang:0 @@ -514,12 +516,12 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_report_custom #: view:ir.report.custom:0 msgid "Custom Report" -msgstr "" +msgstr "自定義報表" #. module: base #: selection:ir.report.custom,type:0 msgid "Bar Chart" -msgstr "" +msgstr "柱狀圖表" #. module: base #: selection:ir.ui.menu,icon:0 @@ -539,7 +541,7 @@ msgstr "" #. module: base #: selection:ir.translation,type:0 msgid "Wizard View" -msgstr "" +msgstr "嚮導視圖" #. module: base #: model:res.country,name:base.kh @@ -552,7 +554,7 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_ir_sequence_form #: model:ir.ui.menu,name:base.next_id_5 msgid "Sequences" -msgstr "" +msgstr "序列" #. module: base #: selection:ir.ui.menu,icon:0 @@ -588,7 +590,7 @@ msgstr "" #: wizard_view:module.upgrade,end:0 #: wizard_view:module.upgrade,start:0 msgid "You may have to reinstall some language pack." -msgstr "" +msgstr "你可能需要重新安裝一些語言包" #. module: base #: field:res.partner.address,mobile:0 @@ -604,7 +606,7 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_payterm_form #: model:ir.model,name:base.model_res_payterm msgid "Payment term" -msgstr "" +msgstr "付款條件" #. module: base #: model:res.country,name:base.nu @@ -614,18 +616,18 @@ msgstr "" #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" -msgstr "" +msgstr "工作日" #. module: base #: help:ir.values,action_id:0 msgid "This field is not used, it only helps you to select the right action." -msgstr "" +msgstr "該欄位並未使用,只是為了幫您選擇正確的動作。" #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 msgid "Create Menu" -msgstr "" +msgstr "建立選單" #. module: base #: model:res.country,name:base.in @@ -635,7 +637,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_maintenance_contract_module msgid "maintenance contract modules" -msgstr "" +msgstr "維護合約模組" #. module: base #: view:ir.values:0 @@ -651,12 +653,12 @@ msgstr "" #: field:ir.module.category,child_ids:0 #: field:res.partner.category,child_ids:0 msgid "Child Categories" -msgstr "" +msgstr "子類別" #. module: base #: selection:wizard.module.lang.export,format:0 msgid "TGZ Archive" -msgstr "" +msgstr "TGZ 壓縮包" #. module: base #: field:res.partner.som,factor:0 @@ -666,7 +668,7 @@ msgstr "因素" #. module: base #: view:res.lang:0 msgid "%B - Full month name." -msgstr "" +msgstr "%B——月份全稱" #. module: base #: field:ir.actions.report.xml,report_type:0 @@ -676,22 +678,22 @@ msgstr "" #: field:ir.values,key:0 #: view:res.partner:0 msgid "Type" -msgstr "" +msgstr "類型" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" -msgstr "" +msgstr "STOCK_FILE" #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" -msgstr "" +msgstr "關島(Guam (USA))" #. module: base #: model:ir.model,name:base.model_ir_model_grid msgid "Objects Security Grid" -msgstr "" +msgstr "對象安全配置參照表" #. module: base #: selection:ir.ui.menu,icon:0 @@ -707,12 +709,12 @@ msgstr "" #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 msgid "Dummy" -msgstr "" +msgstr "虛假" #. module: base #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" -msgstr "" +msgstr "無效的XML視圖結構!" #. module: base #: model:res.country,name:base.ky @@ -777,7 +779,7 @@ msgid "" "%W - Week number of the year (Monday as the first day of the week) as a " "decimal number [00,53]. All days in a new year preceding the first Monday " "are considered to be in week 0." -msgstr "" +msgstr "%W - 一年中的周數(週一為一周的開始)[00,53]。在新年的第一個星期一前的所有天數將歸入周0." #. module: base #: field:res.partner.event,planned_cost:0 @@ -793,17 +795,12 @@ msgstr "" #: field:ir.module.module,website:0 #: field:res.partner,website:0 msgid "Website" -msgstr "" - -#. module: base -#: field:ir.rule.group,rules:0 -msgid "Tests" -msgstr "" +msgstr "網站" #. module: base #: view:ir.module.repository:0 msgid "Repository" -msgstr "" +msgstr "模組庫" #. module: base #: model:res.country,name:base.gs @@ -813,7 +810,7 @@ msgstr "" #. module: base #: field:ir.actions.url,url:0 msgid "Action URL" -msgstr "" +msgstr "動作 URL" #. module: base #: selection:ir.ui.menu,icon:0 @@ -838,18 +835,18 @@ msgstr "" #. module: base #: selection:ir.ui.view,type:0 msgid "Search" -msgstr "" +msgstr "搜尋" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Pie charts need exactly two fields" -msgstr "" +msgstr "圓形統計圖需要2個正確的欄位值" #. module: base #: help:wizard.module.lang.export,lang:0 msgid "To export a new language, do not select a language." -msgstr "" +msgstr "如果要匯出新語言,這裡請不要選擇語言" #. module: base #: model:res.country,name:base.md @@ -859,12 +856,12 @@ msgstr "" #. module: base #: view:ir.module.module:0 msgid "Features" -msgstr "" +msgstr "功能" #. module: base #: field:ir.report.custom,frequency:0 msgid "Frequency" -msgstr "" +msgstr "頻率" #. module: base #: field:ir.report.custom.fields,fc0_op:0 @@ -872,12 +869,12 @@ msgstr "" #: field:ir.report.custom.fields,fc2_op:0 #: field:ir.report.custom.fields,fc3_op:0 msgid "Relation" -msgstr "" +msgstr "關聯" #. module: base #: field:ir.model.access,perm_read:0 msgid "Read Access" -msgstr "" +msgstr "閱讀權限" #. module: base #: model:ir.model,name:base.model_ir_exports @@ -892,7 +889,7 @@ msgstr "" #. module: base #: view:res.users:0 msgid "Define New Users" -msgstr "" +msgstr "定義新用戶" #. module: base #: selection:ir.ui.menu,icon:0 @@ -902,7 +899,7 @@ msgstr "" #. module: base #: selection:ir.actions.report.xml,report_type:0 msgid "raw" -msgstr "" +msgstr "原始格式" #. module: base #: help:ir.actions.server,email:0 @@ -911,6 +908,7 @@ msgid "" "you select the invoice, then `object.invoice_address_id.email` is the field " "which gives the correct address" msgstr "" +"指定用於獲取電子郵件的欄位,比如您選擇了發票,那麼「object.invoice_address_id.email」就是提供電子郵件的欄位。" #. module: base #: field:res.roles,name:0 @@ -920,7 +918,7 @@ msgstr "角色名称" #. module: base #: field:res.partner,user_id:0 msgid "Dedicated Salesman" -msgstr "" +msgstr "業務專員" #. module: base #: rml:ir.module.reference:0 @@ -930,24 +928,24 @@ msgstr "" #. module: base #: field:res.payterm,name:0 msgid "Payment Term (short name)" -msgstr "" +msgstr "付款條件(縮寫)" #. module: base #: model:ir.model,name:base.model_res_bank #: view:res.bank:0 #: field:res.partner.bank,bank:0 msgid "Bank" -msgstr "" +msgstr "銀行" #. module: base #: view:res.lang:0 msgid "Examples" -msgstr "" +msgstr "範例" #. module: base #: field:ir.module.module,reports_by_module:0 msgid "Reports" -msgstr "" +msgstr "報表" #. module: base #: field:workflow,on_create:0 @@ -957,7 +955,7 @@ msgstr "On创建" #. module: base #: wizard_view:base.module.import,init:0 msgid "Please give your module .ZIP file to import." -msgstr "" +msgstr "請指定要匯入的模組文件" #. module: base #: field:ir.default,value:0 @@ -968,13 +966,13 @@ msgstr "默认价值" #: wizard_field:res.partner.sms_send,init,user:0 #: field:res.users,login:0 msgid "Login" -msgstr "" +msgstr "登入" #. module: base #: view:maintenance.contract:0 #: field:maintenance.contract,module_ids:0 msgid "Covered Modules" -msgstr "" +msgstr "涉及的模組" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1003,7 +1001,7 @@ msgstr "" #. module: base #: wizard_button:module.module.update,init,update:0 msgid "Check new modules" -msgstr "" +msgstr "檢查新模組" #. module: base #: model:res.country,name:base.km @@ -1015,7 +1013,7 @@ msgstr "" #: view:ir.actions.server:0 #: model:ir.ui.menu,name:base.menu_server_action msgid "Server Actions" -msgstr "" +msgstr "伺服器動作" #. module: base #: model:res.country,name:base.tp @@ -1025,12 +1023,12 @@ msgstr "" #. module: base #: view:ir.rule:0 msgid "Simple domain setup" -msgstr "" +msgstr "簡單域設置" #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" -msgstr "" +msgstr "計算精度" #. module: base #: model:res.country,name:base.kg @@ -1045,13 +1043,13 @@ msgstr "" #. module: base #: view:ir.sequence:0 msgid "Day: %(day)s" -msgstr "" +msgstr "天: %天" #. module: base #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "You can not read this document! (%s)" -msgstr "" +msgstr "您無法讀取這份文件! (%s)" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1066,7 +1064,7 @@ msgstr "" #. module: base #: help:ir.values,res_id:0 msgid "Keep 0 if the action must appear on all resources." -msgstr "" +msgstr "如果該動作要顯示於所有資源上的話請保持為「0」。" #. module: base #: model:ir.model,name:base.model_ir_rule @@ -1076,7 +1074,7 @@ msgstr "" #. module: base #: selection:ir.cron,interval_type:0 msgid "Days" -msgstr "" +msgstr "日" #. module: base #: field:ir.report.custom.fields,width:0 @@ -1105,7 +1103,7 @@ msgstr "" #: model:ir.actions.act_window,name:base.ir_action_report_custom #: model:ir.ui.menu,name:base.menu_ir_action_report_custom msgid "Report Custom" -msgstr "" +msgstr "自定義報表" #. module: base #: code:addons/base/res/partner/partner.py:0 @@ -1135,12 +1133,12 @@ msgstr "" msgid "" "Specify the message. You can use the fields from the object. e.g. `Dear [[ " "object.partner_id.name ]]`" -msgstr "" +msgstr "請指定該消息。您可以使用對象的欄位,如: `親愛的 [[ object.partner_id.name ]]`" #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" -msgstr "" +msgstr "觸發器名稱" #. module: base #: model:ir.model,name:base.model_ir_model_access @@ -1163,18 +1161,18 @@ msgstr "源活动" #. module: base #: view:ir.sequence:0 msgid "Legend (for prefix, suffix)" -msgstr "" +msgstr "圖例(前綴,後綴)" #. module: base #: selection:ir.server.object.lines,type:0 msgid "Formula" -msgstr "" +msgstr "公式" #. module: base #: code:addons/base/res/res_user.py:0 #, python-format msgid "Can not remove root user!" -msgstr "" +msgstr "無法移除root使用者" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1194,17 +1192,17 @@ msgstr "地址类型" #. module: base #: selection:ir.actions.todo,start_on:0 msgid "Auto" -msgstr "" +msgstr "自動" #. module: base #: view:res.request:0 msgid "End of Request" -msgstr "" +msgstr "請求結束" #. module: base #: view:res.request:0 msgid "References" -msgstr "" +msgstr "參考" #. module: base #: view:res.lang:0 @@ -1212,12 +1210,12 @@ msgid "" "%U - Week number of the year (Sunday as the first day of the week) as a " "decimal number [00,53]. All days in a new year preceding the first Sunday " "are considered to be in week 0." -msgstr "" +msgstr "%U - 一年中的周數(週日是每週的第一天)[00,53]。在新年的第一個星期日之前的日子歸於周0." #. module: base #: wizard_view:module.lang.install,init:0 msgid "Note that this operation may take a few minutes." -msgstr "" +msgstr "提示:這個操作會花費一些時間" #. module: base #: help:ir.sequence,condition:0 @@ -1237,7 +1235,7 @@ msgstr "" #. module: base #: view:maintenance.contract.wizard:0 msgid "Could you check your contract information ?" -msgstr "" +msgstr "您能否檢查一下合約訊息?" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1248,13 +1246,13 @@ 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 "" +msgstr "如果您不想讓該用戶連接到本系統的話請保持為空。" #. module: base #: field:ir.actions.act_window,view_mode:0 #: field:res.config.view,view:0 msgid "View Mode" -msgstr "" +msgstr "視圖模式" #. module: base #: selection:module.lang.install,init,lang:0 @@ -1264,7 +1262,7 @@ msgstr "" #. module: base #: field:res.company,logo:0 msgid "Logo" -msgstr "" +msgstr "公司Logo" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1279,13 +1277,13 @@ msgstr "" #. module: base #: view:ir.module.module:0 msgid "Uninstall (beta)" -msgstr "" +msgstr "卸載" #. module: base #: selection:ir.actions.act_window,target:0 #: selection:ir.actions.url,target:0 msgid "New Window" -msgstr "" +msgstr "新視窗" #. module: base #: model:res.country,name:base.bs @@ -1295,19 +1293,19 @@ msgstr "" #. module: base #: selection:res.partner.event,partner_type:0 msgid "Commercial Prospect" -msgstr "" +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 "" +msgstr "無法產生下一個ID,因為有些業務夥伴已有一個按照次序的ID" #. module: base #: view:ir.attachment:0 msgid "Attachment" -msgstr "" +msgstr "附件" #. module: base #: model:res.country,name:base.ie @@ -1317,7 +1315,7 @@ msgstr "" #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" -msgstr "" +msgstr "已更新的模組數" #. module: base #: field:ir.actions.act_window,groups_id:0 @@ -1326,14 +1324,13 @@ msgstr "" #: field:ir.actions.todo,groups_id:0 #: field:ir.actions.wizard,groups_id:0 #: field:ir.model.fields,groups:0 -#: field:ir.rule.group,groups:0 #: field:ir.ui.menu,groups_id:0 #: model:ir.ui.menu,name:base.menu_action_res_groups #: view:res.groups:0 #: view:res.users:0 #: field:res.users,groups_id:0 msgid "Groups" -msgstr "" +msgstr "群組" #. module: base #: constraint:res.users:0 @@ -1359,7 +1356,7 @@ msgstr "" #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 msgid "To be removed" -msgstr "" +msgstr "將要移除的模組" #. module: base #: field:ir.values,meta:0 @@ -1371,20 +1368,17 @@ msgstr "元数据" msgid "" "This wizard will detect new terms in the application so that you can update " "them manually." -msgstr "" +msgstr "本項倒將自動偵測程式中的新的詞彙,您可在稍後手動更新這些詞彙。" #. module: base #: help:ir.actions.server,expression:0 -msgid "" -"Enter the field/expression that will return the list. E.g. select the sale " -"order in Object, and you can have loop on the sales order line. Expression = " -"`object.order_line`." -msgstr "" +msgid "Enter the field/expression that will return the list. E.g. select the sale order in Object, and you can have loop on the sales order line. Expression = `object.order_line`." +msgstr "輸入返回列表的欄位/表達式。比如當選擇的對象是銷售訂單,那麼您可以在銷售訂單明細中使用循環,表達式:`object.order_line`。" #. module: base #: selection:ir.translation,type:0 msgid "Wizard Field" -msgstr "" +msgstr "嚮導欄位" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1404,7 +1398,7 @@ msgstr "" #. module: base #: selection:res.partner.address,type:0 msgid "Invoice" -msgstr "" +msgstr "發票" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1425,12 +1419,7 @@ msgstr "" #: constraint:ir.model:0 msgid "" "The Object name must start with x_ and not contain any special character !" -msgstr "" - -#. module: base -#: help:ir.rule.group,global:0 -msgid "Make the rule global, otherwise it needs to be put on a group" -msgstr "" +msgstr "對象名稱必須以「x_」開頭且不能包含任何特殊字符!" #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin @@ -1438,12 +1427,12 @@ msgstr "" #: view:ir.ui.menu:0 #: field:ir.ui.menu,name:0 msgid "Menu" -msgstr "" +msgstr "功能列表" #. module: base #: field:res.currency,rate:0 msgid "Current Rate" -msgstr "" +msgstr "目前匯率" #. module: base #: selection:module.lang.install,init,lang:0 @@ -1453,7 +1442,7 @@ msgstr "" #. module: base #: view:ir.values:0 msgid "Action To Launch" -msgstr "" +msgstr "要啟動的動作" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -1462,12 +1451,12 @@ msgstr "" #: selection:ir.report.custom.fields,fc3_op:0 #: selection:ir.rule,operator:0 msgid "in" -msgstr "" +msgstr "包含" #. module: base #: field:ir.actions.url,target:0 msgid "Action Target" -msgstr "" +msgstr "動作目標" #. module: base #: model:res.country,name:base.ai @@ -1483,7 +1472,7 @@ msgstr "" #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Enter at least one field !" -msgstr "" +msgstr "輸入下一個欄位" #. module: base #: field:ir.ui.view_sc,name:0 @@ -1493,14 +1482,14 @@ msgstr "快捷键名称" #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" -msgstr "" +msgstr "信用額度" #. module: base #: help:ir.actions.server,write_id:0 msgid "" "Provide the field name that the record id refers to for the write operation. " "If it is empty it will refer to the active id of the object." -msgstr "" +msgstr "提供記錄ID所指定的欄位名稱作寫入操作,如果為空,則使用對象的活動ID" #. module: base #: model:res.country,name:base.zw @@ -1510,18 +1499,18 @@ msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_translation_export msgid "Import / Export" -msgstr "" +msgstr "匯入/匯出" #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form #: view:res.users:0 msgid "Configure User" -msgstr "" +msgstr "用戶設置" #. module: base #: field:ir.actions.server,email:0 msgid "Email Address" -msgstr "" +msgstr "電子郵件地址" #. module: base #: selection:module.lang.install,init,lang:0 @@ -1532,13 +1521,13 @@ msgstr "" #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "You can not write in this document! (%s)" -msgstr "" +msgstr "您無法編寫這個文件! (%s)" #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 msgid "Server Action" -msgstr "" +msgstr "伺服器動作" #. module: base #: model:res.country,name:base.tt @@ -1553,12 +1542,12 @@ msgstr "" #. module: base #: view:ir.values:0 msgid "Values" -msgstr "" +msgstr "?" #. module: base #: view:ir.actions.server:0 msgid "Field Mappings" -msgstr "" +msgstr "欄位地圖" #. module: base #: model:ir.actions.act_window,name:base.res_request-closed @@ -1569,7 +1558,7 @@ msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_custom msgid "Customization" -msgstr "" +msgstr "自定義" #. module: base #: model:res.country,name:base.py @@ -1579,7 +1568,7 @@ msgstr "" #. module: base #: selection:ir.report.custom.fields,alignment:0 msgid "left" -msgstr "" +msgstr "左對齊" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_close @@ -1589,7 +1578,7 @@ msgstr "" #. module: base #: field:ir.server.object.lines,col1:0 msgid "Destination" -msgstr "" +msgstr "目標" #. module: base #: model:res.country,name:base.lt @@ -1615,17 +1604,17 @@ msgstr "销售渠道" #. module: base #: view:res.lang:0 msgid "%p - Equivalent of either AM or PM." -msgstr "" +msgstr "%p - 等價於 AM 或 PM" #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" -msgstr "" +msgstr "遍歷動作" #. module: base #: field:maintenance.contract,date_stop:0 msgid "Ending Date" -msgstr "" +msgstr "結束日期" #. module: base #: model:res.country,name:base.nz @@ -1650,12 +1639,12 @@ msgstr "" #. module: base #: field:ir.rule,operator:0 msgid "Operator" -msgstr "" +msgstr "操作符" #. module: base #: wizard_view:module.lang.install,start:0 msgid "Installation Done" -msgstr "" +msgstr "安裝完成" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1666,12 +1655,12 @@ msgstr "" #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 msgid "Client Action" -msgstr "" +msgstr "客戶端動作" #. module: base #: selection:ir.report.custom.fields,alignment:0 msgid "right" -msgstr "" +msgstr "右對齊" #. module: base #: model:res.country,name:base.bd @@ -1681,18 +1670,18 @@ msgstr "" #. module: base #: constraint:res.company:0 msgid "Error! You can not create recursive companies." -msgstr "" +msgstr "錯誤!您不能建立循環的公司。" #. module: base #: selection:maintenance.contract,state:0 msgid "Valid" -msgstr "" +msgstr "有效" #. module: base #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "You can not delete this document! (%s)" -msgstr "" +msgstr "您無法移除此文件! (%s)" #. module: base #: selection:ir.translation,type:0 @@ -1703,7 +1692,7 @@ msgstr "" #: code:addons/base/module/module.py:0 #, python-format msgid "Can not upgrade module '%s'. It is not installed." -msgstr "" +msgstr "無法升級此模組 '%s'. 它並沒有安裝!" #. module: base #: model:res.country,name:base.cu @@ -1713,7 +1702,7 @@ msgstr "" #. module: base #: view:res.lang:0 msgid "%S - Second as a decimal number [00,61]." -msgstr "" +msgstr "%S - 十進制的秒數 [00,61]." #. module: base #: model:res.country,name:base.am @@ -1728,7 +1717,7 @@ msgstr "" #. module: base #: selection:ir.report.custom,frequency:0 msgid "Daily" -msgstr "" +msgstr "每日" #. module: base #: model:res.country,name:base.se @@ -1740,18 +1729,18 @@ msgstr "" #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Gantt" -msgstr "" +msgstr "甘特圖" #. module: base #: view:ir.property:0 msgid "Property" -msgstr "" +msgstr "屬性" #. module: base #: model:ir.model,name:base.model_res_partner_bank_type #: view:res.partner.bank.type:0 msgid "Bank Account Type" -msgstr "" +msgstr "銀行帳戶類型" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1761,7 +1750,7 @@ msgstr "" #. module: base #: view:ir.actions.server:0 msgid "Iteration Action Configuration" -msgstr "" +msgstr "重複活動配置" #. module: base #: model:res.country,name:base.at @@ -1773,22 +1762,22 @@ msgstr "" #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Calendar" -msgstr "" +msgstr "日曆" #. module: base #: field:workflow.activity,signal_send:0 msgid "Signal (subflow.*)" -msgstr "" +msgstr "信號(subflow.*)" #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" -msgstr "" +msgstr "模組相依性" #. module: base #: selection:maintenance.contract.wizard,state:0 msgid "Draft" -msgstr "" +msgstr "草稿" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1798,17 +1787,17 @@ msgstr "" #. module: base #: view:res.config.view:0 msgid "Choose Your Mode" -msgstr "" +msgstr "選擇您的模式" #. module: base #: field:res.company,rml_footer1:0 msgid "Report Footer 1" -msgstr "" +msgstr "報表頁尾1" #. module: base #: field:res.company,rml_footer2:0 msgid "Report Footer 2" -msgstr "" +msgstr "報表頁尾2" #. module: base #: view:ir.model.access:0 @@ -1816,13 +1805,13 @@ msgstr "" #: view:res.groups:0 #: field:res.groups,model_access:0 msgid "Access Controls" -msgstr "" +msgstr "權限控制" #. module: base #: view:ir.module.module:0 #: field:ir.module.module,dependencies_id:0 msgid "Dependencies" -msgstr "" +msgstr "相依性" #. module: base #: field:ir.report.custom.fields,bgcolor:0 @@ -1834,18 +1823,18 @@ msgstr "背景色" msgid "" "If you use a formula type, use a python expression using the variable " "'object'." -msgstr "" +msgstr "如果是公式類型,請在 Python 語言表達式中使用變數「object」。" #. module: base #: field:res.partner.address,birthdate:0 msgid "Birthdate" -msgstr "" +msgstr "生日" #. module: base #: model:ir.actions.act_window,name:base.action_partner_title_contact #: model:ir.ui.menu,name:base.menu_partner_title_contact msgid "Contact Titles" -msgstr "" +msgstr "聯絡人稱謂" #. module: base #: model:ir.model,name:base.model_res_partner_som @@ -1860,7 +1849,7 @@ msgstr "" #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" -msgstr "" +msgstr "可搜尋" #. module: base #: model:res.country,name:base.uy @@ -1885,7 +1874,7 @@ msgstr "前缀" #. module: base #: field:ir.actions.server,loop_action:0 msgid "Loop Action" -msgstr "" +msgstr "循環動作" #. module: base #: selection:module.lang.install,init,lang:0 @@ -1895,22 +1884,22 @@ msgstr "" #. module: base #: help:ir.actions.server,trigger_name:0 msgid "Select the Signal name that is to be used as the trigger." -msgstr "" +msgstr "選擇要作為觸發器的信號名稱" #. module: base #: view:ir.actions.server:0 msgid "Fields Mapping" -msgstr "" +msgstr "欄位地圖" #. module: base #: model:res.partner.title,name:base.res_partner_title_sir msgid "Sir" -msgstr "" +msgstr "先生" #. module: base #: wizard_button:module.upgrade,next,start:0 msgid "Start Upgrade" -msgstr "" +msgstr "開始升級" #. module: base #: field:ir.default,ref_id:0 @@ -1930,7 +1919,7 @@ msgstr "" #. module: base #: field:ir.actions.server,fields_lines:0 msgid "Field Mappings." -msgstr "" +msgstr "欄位地圖" #. module: base #: model:ir.model,name:base.model_ir_module_module @@ -1939,13 +1928,13 @@ msgstr "" #: field:ir.module.module.dependency,module_id:0 #: rml:ir.module.reference:0 msgid "Module" -msgstr "" +msgstr "模組" #. module: base #: model:ir.actions.act_window,name:base.action_res_bank_form #: model:ir.ui.menu,name:base.menu_action_res_bank_form msgid "Bank List" -msgstr "" +msgstr "銀行列表" #. module: base #: field:ir.attachment,description:0 @@ -1962,7 +1951,7 @@ msgstr "说明" #: model:ir.actions.act_window,name:base.action_workflow_instance_form #: model:ir.ui.menu,name:base.menu_workflow_instance msgid "Instances" -msgstr "" +msgstr "實例" #. module: base #: model:ir.model,name:base.model_ir_attachment @@ -1977,28 +1966,28 @@ msgstr "动作" #. module: base #: field:res.lang,grouping:0 msgid "Separator Format" -msgstr "" +msgstr "分格格式" #. module: base #: view:wizard.module.lang.export:0 msgid "Export language" -msgstr "" +msgstr "匯出語言" #. module: base #: selection:maintenance.contract.wizard,state:0 msgid "Unvalidated" -msgstr "" +msgstr "未驗證" #. module: base #: model:ir.ui.menu,name:base.next_id_9 msgid "Database Structure" -msgstr "" +msgstr "資料庫結構" #. module: base #: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard #: wizard_view:res.partner.spam_send,init:0 msgid "Mass Mailing" -msgstr "" +msgstr "海量發信" #. module: base #: model:res.country,name:base.yt @@ -2008,19 +1997,19 @@ msgstr "" #. module: base #: wizard_view:module.lang.import,init:0 msgid "You can also import .po files." -msgstr "" +msgstr "您也可以匯入 .po 文件。" #. module: base #: code:addons/base/maintenance/maintenance.py:0 #, python-format msgid "Unable to find a valid contract" -msgstr "" +msgstr "無法找到符合的合約" #. module: base #: code:addons/base/ir/ir_actions.py:0 #, python-format msgid "Please specify an action to launch !" -msgstr "" +msgstr "請指示一個執行動作!" #. module: base #: selection:ir.ui.menu,icon:0 @@ -2030,18 +2019,18 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_res_partner_function msgid "Function of the contact" -msgstr "" +msgstr "聯絡人自定義功能" #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_upgrade #: model:ir.ui.menu,name:base.menu_module_tree_upgrade msgid "Modules to be installed, upgraded or removed" -msgstr "" +msgstr "將要安裝,升級或刪除的模組" #. module: base #: view:res.payterm:0 msgid "Payment Term" -msgstr "" +msgstr "付款條件" #. module: base #: field:ir.report.custom,footer:0 @@ -2051,19 +2040,19 @@ msgstr "报告尾" #. module: base #: selection:res.lang,direction:0 msgid "Right-to-Left" -msgstr "" +msgstr "從右到左" #. module: base #: wizard_view:module.lang.import,init:0 msgid "Import language" -msgstr "" +msgstr "匯入語言" #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 #: model:ir.ui.menu,name:base.menu_ir_cron_act msgid "Scheduled Actions" -msgstr "" +msgstr "計劃的動作" #. module: base #: field:res.partner,title:0 @@ -2091,20 +2080,20 @@ msgstr "" #. module: base #: view:ir.model:0 msgid "Create a Menu" -msgstr "" +msgstr "建立選單" #. module: base #: help:res.partner,vat:0 msgid "" "Value Added Tax number. Check the box if the partner is subjected to the " "VAT. Used by the VAT legal statement." -msgstr "" +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 "" +msgstr "模組分類" #. module: base #: selection:module.lang.install,init,lang:0 @@ -2114,7 +2103,7 @@ msgstr "" #. module: base #: selection:ir.actions.todo,state:0 msgid "Not Started" -msgstr "" +msgstr "尚未開始" #. module: base #: model:res.country,name:base.ru @@ -2124,7 +2113,7 @@ msgstr "" #. module: base #: field:res.company,name:0 msgid "Company Name" -msgstr "" +msgstr "公司名稱" #. module: base #: model:ir.actions.act_window,name:base.action_res_roles_form @@ -2133,18 +2122,13 @@ msgstr "" #: view:res.users:0 #: field:res.users,roles_id:0 msgid "Roles" -msgstr "" +msgstr "角色" #. module: base #: model:ir.actions.act_window,name:base.action_country #: model:ir.ui.menu,name:base.menu_country_partner msgid "Countries" -msgstr "" - -#. module: base -#: view:ir.rule.group:0 -msgid "Record rules" -msgstr "" +msgstr "國家" #. module: base #: field:res.partner,vat:0 @@ -2154,7 +2138,7 @@ msgstr "VAT" #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" -msgstr "" +msgstr "12. %w ==> 5 ( 星期五是第六天)" #. module: base #: constraint:res.partner.category:0 @@ -2164,7 +2148,7 @@ msgstr "" #. module: base #: view:res.lang:0 msgid "%x - Appropriate date representation." -msgstr "" +msgstr "%x - 使用日期表示" #. module: base #: help:ir.module.repository,filter:0 @@ -2174,11 +2158,15 @@ msgid "" "- The second parenthesis must match the whole version number.\n" "- The last parenthesis must match the extension of the module." msgstr "" +"在 Web 頁上搜索模組的正則表達式:\n" +"- 第一個括號必須配置模組名稱。\n" +"- 第二個括號必須配置完整版本號。\n" +"- 最後一個括號必須配置模組擴展名。" #. module: base #: view:res.lang:0 msgid "%M - Minute as a decimal number [00,59]." -msgstr "" +msgstr "%M - 十進制的分鐘數 [00,59]." #. module: base #: model:res.country,name:base.tj @@ -2189,17 +2177,17 @@ msgstr "" #: model:ir.actions.act_window,name:base.act_values_form_action #: model:ir.ui.menu,name:base.menu_values_form_action msgid "Connect Actions To Client Events" -msgstr "" +msgstr "關聯動作到客戶端事件" #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" -msgstr "" +msgstr "GPL-2 或更新版本" #. module: base #: selection:res.partner.event,type:0 msgid "Prospect Contact" -msgstr "" +msgstr "潛在客戶聯絡人" #. module: base #: model:ir.model,name:base.model_ir_actions_wizard @@ -2223,7 +2211,7 @@ msgstr "" #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Form" -msgstr "" +msgstr "表單" #. module: base #: model:res.country,name:base.me @@ -2238,7 +2226,7 @@ msgstr "" #. module: base #: view:ir.cron:0 msgid "Technical Data" -msgstr "" +msgstr "技術資料" #. module: base #: view:res.partner:0 @@ -2250,13 +2238,13 @@ msgstr "分类" #: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard #: wizard_button:res.partner.sms_send,init,send:0 msgid "Send SMS" -msgstr "" +msgstr "發送SMS" #. module: base #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 msgid "To be upgraded" -msgstr "" +msgstr "將要升級的模組" #. module: base #: model:res.country,name:base.ly @@ -2271,7 +2259,7 @@ msgstr "" #. module: base #: wizard_field:module.module.update,init,repositories:0 msgid "Repositories" -msgstr "" +msgstr "模組庫" #. module: base #: model:res.country,name:base.cf @@ -2286,12 +2274,12 @@ msgstr "" #. module: base #: model:res.partner.title,name:base.res_partner_title_ltd msgid "Ltd" -msgstr "" +msgstr "有限公司" #. module: base #: field:res.partner,ean13:0 msgid "EAN13" -msgstr "" +msgstr "條碼類型(EAN13)" #. module: base #: model:res.country,name:base.pt @@ -2301,12 +2289,12 @@ msgstr "" #. module: base #: selection:maintenance.contract,state:0 msgid "Unvalid" -msgstr "" +msgstr "未驗證" #. module: base #: field:ir.module.module,certificate:0 msgid "Quality Certificate" -msgstr "" +msgstr "質量證書編號" #. module: base #: view:res.lang:0 @@ -2316,7 +2304,7 @@ msgstr "" #. module: base #: help:res.partner,customer:0 msgid "Check this box if the partner is a customer." -msgstr "" +msgstr "如果該業務夥伴是客戶的話請選擇" #. module: base #: model:ir.actions.act_window,name:base.res_lang_act_window @@ -2324,7 +2312,7 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_res_lang_act_window #: view:res.lang:0 msgid "Languages" -msgstr "" +msgstr "語言" #. module: base #: model:res.country,name:base.pw @@ -2343,7 +2331,7 @@ 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 "" +msgstr "此文件副檔名為 .CSV 檔,您可使用您喜愛的軟體將它儲存或開啟,此文件編碼為UTF-8,請在輸入前先行轉換!" #. module: base #: model:ir.actions.act_window,name:base.action_partner_customer_form @@ -2361,33 +2349,33 @@ msgstr "" msgid "" "If the selected language is loaded in the system, all documents related to " "this partner will be printed in this language. If not, it will be english." -msgstr "" +msgstr "如果選擇的語言被載入到系統,那麼所有與業務夥伴相關的文檔將使用該語言列印,留空則為英語。" #. module: base #: rml:ir.module.reference:0 msgid "Menu :" -msgstr "" +msgstr "選單:" #. module: base #: selection:ir.model.fields,state:0 msgid "Base Field" -msgstr "" +msgstr "基本欄位" #. module: base #: wizard_view:module.module.update,update:0 msgid "New modules" -msgstr "" +msgstr "新模組" #. module: base #: field:ir.actions.report.xml,report_sxw_content:0 #: field:ir.actions.report.xml,report_sxw_content_data:0 msgid "SXW content" -msgstr "" +msgstr "SXW 內容" #. module: base #: view:ir.cron:0 msgid "Action to Trigger" -msgstr "" +msgstr "待觸發動作" #. module: base #: field:ir.report.custom.fields,fc0_operande:0 @@ -2396,26 +2384,26 @@ msgstr "" #: field:ir.report.custom.fields,fc3_operande:0 #: selection:ir.translation,type:0 msgid "Constraint" -msgstr "" +msgstr "約束" #. module: base #: selection:ir.values,key:0 #: selection:res.partner.address,type:0 msgid "Default" -msgstr "" +msgstr "預設" #. module: base #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 msgid "Required" -msgstr "" +msgstr "必填" #. module: base #: field:ir.model.fields,domain:0 #: field:ir.rule,domain:0 #: field:res.partner.title,domain:0 msgid "Domain" -msgstr "" +msgstr "網域" #. module: base #: field:res.request.history,name:0 @@ -2427,12 +2415,12 @@ msgstr "动作结果" msgid "" "Specify the subject. You can use fields from the object, e.g. `Hello [[ " "object.partner_id.name ]]`" -msgstr "" +msgstr "請指定主題。您可以使用對象的欄位,如:「尊敬的[[ object.partner_id.name ]],您好:」" #. module: base #: view:res.company:0 msgid "Header/Footer" -msgstr "" +msgstr "頁首/頁尾" #. module: base #: model:res.country,name:base.lb @@ -2442,7 +2430,7 @@ msgstr "" #. module: base #: wizard_field:module.lang.import,init,name:0 msgid "Language name" -msgstr "" +msgstr "語言名稱" #. module: base #: model:res.country,name:base.va @@ -2454,38 +2442,38 @@ msgstr "" msgid "" "Condition that is to be tested before action is executed, e.g. " "object.list_price > object.cost_price" -msgstr "" +msgstr "動作執行前所做的條件判斷,如:object.list_price > object.cost_price" #. module: base #: wizard_field:base.module.import,init,module_file:0 msgid "Module .ZIP file" -msgstr "" +msgstr "模組 .ZIP 文件" #. module: base #: field:res.roles,child_id:0 msgid "Children" -msgstr "" +msgstr "下級" #. module: base #: field:workflow.transition,trigger_model:0 msgid "Trigger Object" -msgstr "" +msgstr "觸發器對象" #. module: base #: selection:ir.report.custom,state:0 msgid "Subscribed" -msgstr "" +msgstr "已訂閱" #. module: base #: wizard_view:module.lang.install,init:0 #: wizard_view:module.upgrade,next:0 msgid "System Upgrade" -msgstr "" +msgstr "系統升級" #. module: base #: field:workflow.activity,in_transitions:0 msgid "Incoming Transitions" -msgstr "" +msgstr "傳入轉換" #. module: base #: model:res.country,name:base.sr @@ -2497,18 +2485,18 @@ msgstr "" #: view:res.partner.event.type:0 #: field:res.partner.event.type,name:0 msgid "Event Type" -msgstr "" +msgstr "活動類型" #. module: base #: view:res.partner.bank:0 #: model:res.partner.bank.type,name:base.bank_normal msgid "Bank account" -msgstr "" +msgstr "銀行帳號" #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" -msgstr "" +msgstr "序號類型" #. module: base #: code:addons/base/module/module.py:0 @@ -2517,22 +2505,24 @@ msgid "" "You try to upgrade a module that depends on the module: %s.\n" "But this module is not available in your system." msgstr "" +"您嘗試升級依附在此模組內: %s.\n" +"但是此模組在系統內是無效的" #. module: base #: view:res.partner.address:0 msgid "Partner Address" -msgstr "" +msgstr "業務夥伴地址" #. module: base #: field:ir.module.module,license:0 msgid "License" -msgstr "" +msgstr "授權許可" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Invalid operation" -msgstr "" +msgstr "無效的操作" #. module: base #: selection:ir.ui.menu,icon:0 @@ -2542,12 +2532,12 @@ msgstr "" #. module: base #: selection:ir.translation,type:0 msgid "SQL Constraint" -msgstr "" +msgstr "SQL 限制" #. module: base #: field:ir.actions.server,srcmodel_id:0 msgid "Model" -msgstr "" +msgstr "模型" #. module: base #: field:ir.actions.act_window.view,view_id:0 @@ -2555,7 +2545,7 @@ msgstr "" #: selection:ir.translation,type:0 #: field:wizard.ir.model.menu.create.line,view_id:0 msgid "View" -msgstr "" +msgstr "視圖" #. module: base #: view:ir.actions.act_window:0 @@ -2570,25 +2560,25 @@ msgstr "" #. module: base #: wizard_view:base.module.import,init:0 msgid "Module Import" -msgstr "" +msgstr "模組匯入" #. module: base #: code:addons/base/ir/ir_model.py:0 #, python-format msgid "You can not remove the field '%s' !" -msgstr "" +msgstr "欄位 '%s' 不可以移除!" #. module: base #: field:res.bank,zip:0 #: field:res.partner.address,zip:0 #: field:res.partner.bank,zip:0 msgid "Zip" -msgstr "" +msgstr "郵政編碼" #. module: base #: field:ir.module.module,author:0 msgid "Author" -msgstr "" +msgstr "作者" #. module: base #: model:res.country,name:base.mk @@ -2603,7 +2593,7 @@ msgstr "" #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." -msgstr "" +msgstr "%c - 日期時間表示" #. module: base #: selection:module.lang.install,init,lang:0 @@ -2623,7 +2613,7 @@ msgstr "" #. module: base #: field:res.lang,direction:0 msgid "Direction" -msgstr "" +msgstr "方向" #. module: base #: model:ir.model,name:base.model_wizard_module_update_translations @@ -2641,26 +2631,26 @@ msgstr "" #: view:wizard.ir.model.menu.create:0 #: field:wizard.ir.model.menu.create,view_ids:0 msgid "Views" -msgstr "" +msgstr "視圖" #. module: base #: view:res.groups:0 #: field:res.groups,rule_groups:0 #: field:res.users,rules_id:0 msgid "Rules" -msgstr "" +msgstr "規則" #. module: base #: code:addons/base/module/module.py:0 #, python-format msgid "You try to remove a module that is installed or will be installed" -msgstr "" +msgstr "您嘗試移除已安裝或將被安裝的模組" #. module: base #: help:ir.values,key2:0 msgid "" "The kind of action or button in the client side that will trigger the action." -msgstr "" +msgstr "客戶端的該類動作或按鈕將觸發此動作。" #. module: base #: selection:ir.ui.menu,icon:0 @@ -2676,36 +2666,36 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow msgid "Workflows" -msgstr "" +msgstr "工作流程" #. module: base #: model:ir.actions.act_window,name:base.action_config_wizard_form #: model:ir.ui.menu,name:base.menu_config_module msgid "Configuration Wizard" -msgstr "" +msgstr "配置嚮導" #. module: base #: model:ir.model,name:base.model_res_roles msgid "res.roles" -msgstr "" +msgstr "角色" #. module: base #: help:ir.cron,priority:0 msgid "" "0=Very Urgent\n" "10=Not urgent" -msgstr "" +msgstr "0=非常緊急10=不緊急" #. module: base #: view:res.users:0 msgid "Skip" -msgstr "" +msgstr "跳過" #. module: base #: model:ir.actions.act_window,name:base.res_request_link-act #: model:ir.ui.menu,name:base.menu_res_request_link_act msgid "Accepted Links in Requests" -msgstr "" +msgstr "已接受的請求的連結" #. module: base #: model:res.country,name:base.ls @@ -2723,7 +2713,7 @@ 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 "" +msgstr "如果您是初次使用系統建議選擇簡單模式,這樣會減少或隱藏一些設置。以後您可以通過管理Menu修改。" #. module: base #: model:res.country,name:base.sm @@ -2743,7 +2733,7 @@ msgstr "" #. module: base #: selection:ir.model.fields,on_delete:0 msgid "Set NULL" -msgstr "" +msgstr "設為空(NULL)" #. module: base #: field:res.partner.event,som:0 @@ -2756,11 +2746,6 @@ msgstr "助记状态" msgid "Benin" msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "The rule is satisfied if all test are True (AND)" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" @@ -2769,22 +2754,22 @@ msgstr "" #. module: base #: selection:ir.model.fields,select_level:0 msgid "Not Searchable" -msgstr "" +msgstr "不可搜尋" #. module: base #: field:res.partner.event.type,key:0 msgid "Key" -msgstr "" +msgstr "關鍵字" #. module: base #: field:ir.cron,nextcall:0 msgid "Next Call Date" -msgstr "" +msgstr "下次調用時間" #. module: base #: field:res.company,rml_header:0 msgid "RML Header" -msgstr "" +msgstr "RML 頁首" #. module: base #: wizard_field:res.partner.sms_send,init,app_id:0 @@ -2799,19 +2784,19 @@ msgstr "" #. module: base #: wizard_view:module.module.update,init:0 msgid "Scan for new modules" -msgstr "" +msgstr "搜尋新模組" #. module: base #: view:ir.actions.act_window:0 #: model:ir.ui.menu,name:base.menu_security msgid "Security" -msgstr "" +msgstr "安全設定" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Using a relation field which uses an unknown object" -msgstr "" +msgstr "使用一個關聯欄位在不知名的對象中" #. module: base #: model:res.country,name:base.za @@ -2827,7 +2812,7 @@ msgstr "" #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 msgid "Installed" -msgstr "" +msgstr "已安裝的模組" #. module: base #: model:res.country,name:base.sn @@ -2858,7 +2843,7 @@ msgstr "下一编号" #: view:res.currency:0 #: field:res.currency,rate_ids:0 msgid "Rates" -msgstr "" +msgstr "匯率" #. module: base #: selection:module.lang.install,init,lang:0 @@ -2878,32 +2863,32 @@ msgstr "" #. module: base #: field:ir.report.custom.fields,field_child2:0 msgid "Field child2" -msgstr "" +msgstr "欄位 child2" #. module: base #: field:ir.report.custom.fields,field_child3:0 msgid "Field child3" -msgstr "" +msgstr "欄位 child3" #. module: base #: field:ir.report.custom.fields,field_child0:0 msgid "Field child0" -msgstr "" +msgstr "欄位 child0" #. module: base #: field:ir.report.custom.fields,field_child1:0 msgid "Field child1" -msgstr "" +msgstr "欄位 child1" #. module: base #: field:ir.model.fields,selection:0 msgid "Field Selection" -msgstr "" +msgstr "選擇欄位" #. module: base #: selection:res.request,state:0 msgid "draft" -msgstr "" +msgstr "草稿" #. module: base #: field:res.currency,date:0 @@ -2912,23 +2897,23 @@ msgstr "" #: field:res.partner.event,date:0 #: field:res.request,date_sent:0 msgid "Date" -msgstr "" +msgstr "日期" #. module: base #: field:ir.actions.report.xml,report_sxw:0 msgid "SXW path" -msgstr "" +msgstr "SXW 路徑" #. module: base #: view:ir.attachment:0 #: field:ir.attachment,datas:0 msgid "Data" -msgstr "" +msgstr "資料" #. module: base #: view:res.users:0 msgid "Groups are used to defined access rights on each screen and menu." -msgstr "" +msgstr "群組用於定義選單及頁面的存取權限" #. module: base #: field:ir.ui.menu,parent_id:0 @@ -2943,7 +2928,7 @@ msgstr "父项菜单" msgid "" "If set to true, the action will not be displayed on the right toolbar of a " "form view." -msgstr "" +msgstr "如果設為真,該動作將不會顯示表單右側的工具欄中。" #. module: base #: model:ir.ui.menu,name:base.menu_custom_multicompany @@ -2953,24 +2938,24 @@ msgstr "" #. module: base #: view:ir.attachment:0 msgid "Attached To" -msgstr "" +msgstr "附屬於" #. module: base #: field:res.lang,decimal_point:0 msgid "Decimal Separator" -msgstr "" +msgstr "十進位分割符" #. module: base #: view:res.partner:0 #: view:res.request:0 #: field:res.request,history:0 msgid "History" -msgstr "" +msgstr "記錄" #. module: base #: field:ir.attachment,create_uid:0 msgid "Creator" -msgstr "" +msgstr "建立者" #. module: base #: model:res.country,name:base.mx @@ -2985,7 +2970,7 @@ msgstr "" #. module: base #: field:res.company,child_ids:0 msgid "Child Companies" -msgstr "" +msgstr "下級公司" #. module: base #: model:ir.model,name:base.model_res_users @@ -3005,19 +2990,19 @@ msgstr "一般说明" #. module: base #: selection:res.partner.event,type:0 msgid "Sale Opportunity" -msgstr "" +msgstr "商機" #. module: base #: view:maintenance.contract.wizard:0 msgid "Maintenance contract added !" -msgstr "" +msgstr "維護合約已添加!" #. module: base #: field:ir.rule,field_id:0 #: selection:ir.translation,type:0 #: field:multi_company.default,field_id:0 msgid "Field" -msgstr "" +msgstr "欄位" #. module: base #: model:res.country,name:base.ve @@ -3038,14 +3023,14 @@ msgstr "" #: model:ir.actions.act_window,name:base.ir_action_report_xml #: model:ir.ui.menu,name:base.menu_ir_action_report_xml msgid "Report Xml" -msgstr "" +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 "" +msgstr "負責與該業務夥伴溝通的內部用戶" #. module: base #: field:res.partner,parent_id:0 @@ -3055,7 +3040,7 @@ msgstr "" #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" -msgstr "" +msgstr "取消升級" #. module: base #: model:res.country,name:base.ci @@ -3080,7 +3065,6 @@ msgstr "" #: field:ir.module.repository,name:0 #: field:ir.property,name:0 #: field:ir.report.custom.fields,name:0 -#: field:ir.rule.group,name:0 #: field:ir.values,name:0 #: field:maintenance.contract.module,name:0 #: field:res.bank,name:0 @@ -3103,17 +3087,17 @@ msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" -msgstr "" +msgstr "應用程式詞彙" #. module: base #: selection:ir.report.custom.fields,operation:0 msgid "Calculate Average" -msgstr "" +msgstr "計算平均值" #. module: base #: field:ir.module.module,demo:0 msgid "Demo data" -msgstr "" +msgstr "展示資料" #. module: base #: selection:module.lang.install,init,lang:0 @@ -3155,7 +3139,7 @@ msgstr "计划收入" msgid "" "You have to import a .CSV file wich is encoded in UTF-8. Please check that " "the first line of your file is one of the following:" -msgstr "" +msgstr "您必須匯入 UTF-8 編碼的 .CSV 文件。請確保該文件的首行為:" #. module: base #: model:res.country,name:base.et @@ -3165,17 +3149,17 @@ msgstr "" #. module: base #: view:res.lang:0 msgid "%H - Hour (24-hour clock) as a decimal number [00,23]." -msgstr "" +msgstr "%H - 十進製表示的小時數(24 小時) [00,23]." #. module: base #: view:res.roles:0 msgid "Role" -msgstr "" +msgstr "角色" #. module: base #: help:res.country.state,code:0 msgid "The state code in three chars.\n" -msgstr "" +msgstr "三個字符的省/州代碼\n" #. module: base #: model:res.country,name:base.sj @@ -3185,19 +3169,17 @@ msgstr "" #. module: base #: view:ir.rule:0 msgid "Test" -msgstr "" +msgstr "測試" #. module: base #: field:ir.report.custom.fields,groupby:0 msgid "Group By" -msgstr "" +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" +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 @@ -3213,7 +3195,7 @@ msgstr "" #. module: base #: selection:res.request,state:0 msgid "closed" -msgstr "" +msgstr "已結束" #. module: base #: selection:wizard.module.lang.export,state:0 @@ -3223,7 +3205,7 @@ msgstr "" #. module: base #: help:ir.model.fields,on_delete:0 msgid "On delete property for many2one fields" -msgstr "" +msgstr "多對一(many2one)欄位的 on delete 屬性" #. module: base #: field:ir.actions.server,write_id:0 @@ -3740,11 +3722,6 @@ msgstr "" msgid "ir.translation" msgstr "" -#. module: base -#: model:ir.model,name:base.model_ir_rule_group -msgid "ir.rule.group" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install #: model:ir.ui.menu,name:base.menu_module_tree_install @@ -4072,11 +4049,6 @@ msgstr "" msgid "Search View Ref." msgstr "" -#. module: base -#: view:ir.rule.group:0 -msgid "Multiple rules on same objects are joined using operator OR" -msgstr "" - #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" @@ -4693,11 +4665,6 @@ msgstr "" msgid "Reunion (French)" msgstr "" -#. module: base -#: field:ir.rule.group,global:0 -msgid "Global" -msgstr "" - #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" @@ -4944,7 +4911,6 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_res_users #: field:ir.actions.todo,users_id:0 #: field:ir.default,uid:0 -#: field:ir.rule.group,users:0 #: model:ir.ui.menu,name:base.menu_action_res_users #: model:ir.ui.menu,name:base.menu_users #: view:res.groups:0 @@ -6057,7 +6023,6 @@ msgstr "" #: field:ir.model.data,model:0 #: field:ir.model.grid,model:0 #: field:ir.report.custom,model_id:0 -#: field:ir.rule.group,model_id:0 #: selection:ir.translation,type:0 #: field:ir.ui.view,model:0 #: field:ir.values,model_id:0 @@ -7806,12 +7771,6 @@ msgstr "" msgid "Seychelles" msgstr "" -#. module: base -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "You can not have two users with the same login !" -msgstr "" - #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" @@ -7940,5 +7899,132 @@ msgstr "" msgid "Russian / русский язык" msgstr "" +#. module: base +#: sql_constraint:res.user:0 +msgid "You cannot have two users with the same login !" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.fields:0 +msgid "Size of the field can never be less than 1 !" +msgstr "" + +#. module: base +#: sql_constraint:ir.ui.view_sc:0 +msgid "Shortcut for this menu already exists!" +msgstr "" + +#. module: base +#: sql_constraint:ir.model.data:0 +msgid "" +"You cannot have multiple records with the same id for the same module !" +msgstr "" + +#. module: base +#: sql_constraint:maintenance.contract:0 +msgid "Your maintenance contract is already subscribed in the system !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +#: sql_constraint:ir.module.web:0 +msgid "The name of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:ir.module.module:0 +msgid "The certificate ID of the module must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner.function:0 +msgid "The Code of the Partner Function must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.partner:0 +msgid "The name of the Partner must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The name of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.country:0 +msgid "The code of the country must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The name of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.lang:0 +msgid "The code of the language must be unique !" +msgstr "" + +#. module: base +#: sql_constraint:res.groups:0 +msgid "The name of the group must be unique !" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Constraint Error" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + +#. module: base +#: code:addons/osv/osv.py:0 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "User Error" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "Base Language 'en_US' can not be deleted !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is User's Preferred Language !" +msgstr "" + +#. module: base +#: code:addons/base/res/res_lang.py:0 +#, python-format +msgid "You cannot delete the language which is Active !\nPlease de-activate the language first." +msgstr "" + #~ msgid "Main Company" #~ msgstr "主要公司" diff --git a/bin/addons/base/ir/__init__.py b/bin/addons/base/ir/__init__.py index a3f3e7e16c4..343b50a6998 100644 --- a/bin/addons/base/ir/__init__.py +++ b/bin/addons/base/ir/__init__.py @@ -25,9 +25,9 @@ import ir_ui_menu import ir_ui_view import ir_default import ir_actions -import ir_report_custom import ir_attachment import ir_cron +import ir_filters import ir_values import ir_translation import ir_exports diff --git a/bin/addons/base/ir/ir.xml b/bin/addons/base/ir/ir.xml index 0c280d2c0b3..cb9b7a6d5bf 100644 --- a/bin/addons/base/ir/ir.xml +++ b/bin/addons/base/ir/ir.xml @@ -10,39 +10,102 @@ 20
- - + + - - + + + + + + + + + + - - - - + + - + + + + + + + + + + + + + + ir.values.tree.action + ir.values + tree + + + + + + + + + + + + ir.values.search.action + ir.values + search + + + + + + + + + + + + + + - Connect Actions To Client Events + Client Events ir.actions.act_window ir.values form - form,tree - + tree,form + [('key','=','action')] {'read':'default','default_object':1} - + + + tree + + + + + + + form + + + + + @@ -92,8 +155,6 @@ {'read':'default'} - - @@ -105,10 +166,10 @@ - - + + - + @@ -140,24 +201,38 @@ + ir.sequence.tree ir.sequence tree - - - - + - + + + + + ir.sequence.search + ir.sequence + search + + + + + + + + + + Sequences ir.actions.act_window @@ -177,21 +252,47 @@ form
- +
+ + ir.sequence.type.tree + ir.sequence.type + tree + + + + + + + + + + ir.sequence.type.search + ir.sequence.type + search + + + + + + + + - Sequence Types + Sequence Codes ir.actions.act_window ir.sequence.type form tree,form - + @@ -201,8 +302,8 @@ form
- - + + @@ -218,6 +319,17 @@ + + ir.actions.actions.search + ir.actions.actions + search + + + + + + + Actions @@ -225,65 +337,132 @@ ir.actions.actions form + - + + - - ir.actions.report.custom - ir.actions.report.custom + + + + ir.filters.form + ir.filters form -
- - - - + + + + + + + + + + + +
- - ir.actions.report.custom.tree - ir.actions.report.custom + + + + + ir.filters.tree + ir.filters tree - + - + + + + - - Report Custom - ir.actions.act_window - ir.actions.report.custom - form - + + + + ir.filters.search + ir.filters + search + + + + + + + + + + + + + - + + + + + Filters + ir.actions.act_window + ir.filters + form + + + + + + + ir.actions.report.xml ir.actions.report.xml form -
- - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
@@ -301,13 +480,34 @@
+ + ir.actions.report.xml.search + ir.actions.report.xml + search + + + + + + + + + + + + + + + + - Report Xml + Reports ir.actions.act_window ir.actions.report.xml form + @@ -332,52 +532,83 @@ form
- - - - - - + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + +
-
+
+ + ir.actions.windows.search + ir.actions.act_window + search + + + + + + + + + + + + + + + Window Actions ir.actions.act_window ir.actions.act_window form + @@ -412,26 +643,48 @@ form
- - - - - + + + + + + + + + + + + +
+ + ir.actions.wizard.search + ir.actions.wizard + search + + + + + + + + + Wizards ir.actions.act_window ir.actions.wizard form + - @@ -443,8 +696,10 @@ [('parent_id','=',False)] tree
- - + Companies ir.actions.act_window @@ -453,7 +708,7 @@ - + Users ir.actions.act_window @@ -503,46 +758,8 @@ res.groups form - - - - res.roles.form - res.roles - form - -
- - - - -
- - res.roles.tree - res.roles - tree - child_id - - - - - - - - Roles Structure - ir.actions.act_window - res.roles - tree - - - - - - Roles - ir.actions.act_window - res.roles - form - - + @@ -551,31 +768,77 @@ form
- - - - - - - + + + + + + + + + + + + + + + + + + +
+ ir.ui.view.tree ir.ui.view tree + - - - + + + + + ir.ui.view.search + ir.ui.view + search + + + + + + + + + + + + + + + + + + + + + + Views ir.actions.act_window @@ -592,34 +855,37 @@
- - - + + + - - + + + + + + + + + - - + + + + + - +
@@ -633,11 +899,50 @@ + +
+ + ir.attachment.search + ir.attachment + search + + + + + + + + + + + + + + + + + + + + + + + + + + Attachments @@ -645,108 +950,10 @@ ir.attachment form + - - - ir.report.custom.fields.tree - ir.report.custom.fields - tree - - - - - - - - - - - - - - - ir.report.custom.fields - ir.report.custom.fields - form - -
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- - - ir.report.custom - ir.report.custom - form - -
- - - - - - - - - - - - - - - - -