diff --git a/.bzrignore b/.bzrignore new file mode 100644 index 00000000000..abaed6d70ed --- /dev/null +++ b/.bzrignore @@ -0,0 +1,3 @@ +./bin/addons/* + + diff --git a/MANIFEST.in b/MANIFEST.in index 9f3f31af1f1..b25045b8213 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,10 +1,16 @@ include rpminstall_sh.txt include README +include MANIFEST.in +include setup.nsi +include setup.cfg include bin/import_xml.rng include bin/server.cert include bin/server.pkey +include bin/gpl.txt +include man/openerp-server.1 +include man/openerp_serverrc.5 +recursive-include pixmaps recursive-include doc * -recursive-include man * recursive-include bin *xml *xsl *sql *rml *sxw *csv *rng graft bin/addons/ global-exclude *pyc *~ diff --git a/bin/PKG-INFO b/bin/PKG-INFO index c1505be6a0e..3d1ef7f14ae 100644 --- a/bin/PKG-INFO +++ b/bin/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: OpenERP -Version: 5.0.0-rc2 +Version: 5.0.0-rc3 Author: Tiny.be Author-email: fp at tiny be Maintainer: Tiny.be diff --git a/bin/__init__.py b/bin/__init__.py index bbe6752ce14..d63502c9ed8 100644 --- a/bin/__init__.py +++ b/bin/__init__.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/__init__.py b/bin/addons/__init__.py index 45b96c49d6f..4ab55d6a6bc 100644 --- a/bin/addons/__init__.py +++ b/bin/addons/__init__.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify @@ -38,6 +38,11 @@ from osv import fields import zipfile import release +import re +import base64 +from zipfile import PyZipFile, ZIP_DEFLATED +import StringIO + logger = netsvc.Logger() _ad = os.path.abspath(opj(tools.config['root_path'], 'addons')) # default addons path (base) @@ -172,6 +177,45 @@ def get_module_filetree(module, dir='.'): return tree + +def get_module_as_zip(modulename, b64enc=True, src=True): + + RE_exclude = re.compile('(?:^\..+\.swp$)|(?:\.py[oc]$)|(?:\.bak$)|(?:\.~.~$)', re.I) + + def _zippy(archive, path, src=True): + path = os.path.abspath(path) + base = os.path.basename(path) + for f in tools.osutil.listdir(path, True): + bf = os.path.basename(f) + if not RE_exclude.search(bf) and (src or bf == '__terp__.py' or not path.endswith('.py')): + archive.write(os.path.join(path, f), os.path.join(base, f)) + + ap = get_module_path(str(modulename)) + if not ap: + raise Exception('Unable to find path for module %s' % modulename) + + ap = ap.encode('utf8') + if os.path.isfile(ap + '.zip'): + val = file(ap + '.zip', 'rb').read() + else: + archname = StringIO.StringIO('wb') + archive = PyZipFile(archname, "w", ZIP_DEFLATED) + archive.writepy(ap) + _zippy(archive, ap, src=src) + archive.close() + val = archname.getvalue() + archname.close() + + ### debug + f = file('/tmp/mod.zip', 'wb') + f.write(val) + f.close() + + if b64enc: + val = base64.encodestring(val) + return val + + def get_module_resource(module, *args): """Return the full path of a resource of the given module. @@ -282,7 +326,12 @@ def register_class(m): try: zip_mod_path = mod_path + '.zip' if not os.path.isfile(zip_mod_path): - imp.load_module(m, *imp.find_module(m, [ad, _ad])) + fm = imp.find_module(m, [ad, _ad]) + try: + imp.load_module(m, *fm) + finally: + if fm[0]: + fm[0].close() else: zimp = zipimport.zipimporter(zip_mod_path) zimp.load_module(m) @@ -595,13 +644,14 @@ def load_modules(db, force_demo=False, status=None, update_module=False): cr.commit() if update_module: - cr.execute("select id,name from ir_module_module where state in ('to remove')") + cr.execute("select id,name from ir_module_module where state=%s", ('to remove',)) for mod_id, mod_name in cr.fetchall(): pool = pooler.get_pool(cr.dbname) - cr.execute('select model,res_id from ir_model_data where not noupdate and module=%s order by id desc', (mod_name,)) + cr.execute('select model,res_id from ir_model_data where noupdate=%s and module=%s order by id desc', (False, mod_name,)) for rmod,rid in cr.fetchall(): uid = 1 pool.get(rmod).unlink(cr, uid, [rid]) + cr.execute('delete from ir_model_data where noupdate=%s and module=%s', (False, mod_name,)) cr.commit() # # TODO: remove menu without actions of childs @@ -615,6 +665,7 @@ def load_modules(db, force_demo=False, status=None, update_module=False): (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'))''') + cr.commit() if not cr.rowcount: break else: diff --git a/bin/addons/base/__init__.py b/bin/addons/base/__init__.py index 0349891aa55..22cffe0ab98 100644 --- a/bin/addons/base/__init__.py +++ b/bin/addons/base/__init__.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/__terp__.py b/bin/addons/base/__terp__.py index 1e2e5f9985d..438edd23e46 100644 --- a/bin/addons/base/__terp__.py +++ b/bin/addons/base/__terp__.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/i18n/ar_AR.po b/bin/addons/base/i18n/ar_AR.po index ed33f98fceb..6434552f5f5 100644 --- a/bin/addons/base/i18n/ar_AR.po +++ b/bin/addons/base/i18n/ar_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:04:48+0000\n" -"PO-Revision-Date: 2008-12-22 18:04:48+0000\n" +"POT-Creation-Date: 2009-01-03 02:00:15+0000\n" +"PO-Revision-Date: 2009-01-03 02:00:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "" msgid "terp-account" msgstr "" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -370,8 +375,8 @@ msgid "Sender's email" msgstr "" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" msgstr "" #. module: base @@ -458,8 +463,8 @@ msgid "STOCK_CANCEL" msgstr "" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" msgstr "" #. module: base @@ -942,11 +947,21 @@ msgstr "" msgid "STOCK_UNDERLINE" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" @@ -1837,11 +1852,6 @@ msgstr "" msgid "Get file" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1863,6 +1873,12 @@ msgstr "" msgid "ir.model.data" msgstr "" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1963,14 +1979,13 @@ msgid "From" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" +#: selection:res.partner.event,partner_type:0 +msgid "Retailer" msgstr "" #. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Retailer" +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" msgstr "" #. module: base @@ -1998,11 +2013,6 @@ msgstr "" msgid "Set NULL" msgstr "" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2035,6 +2045,11 @@ msgstr "" msgid "Defined Reports" msgstr "" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" @@ -2130,6 +2145,11 @@ msgstr "" msgid "RML Header" msgstr "" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2264,8 +2284,8 @@ msgid "Recursion error in modules dependencies !" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" +#: view:ir.rule:0 +msgid "Manual domain setup" msgstr "" #. module: base @@ -2486,6 +2506,11 @@ msgstr "" msgid "draft" msgstr "" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2643,14 +2668,8 @@ msgid "(year)=" msgstr "" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" +#: rml:ir.module.reference:0 +msgid "Dependencies :" msgstr "" #. module: base @@ -2669,9 +2688,9 @@ msgid "Creator" msgstr "" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" +msgid "You cannot perform this operation." msgstr "" #. module: base @@ -2724,7 +2743,6 @@ msgstr "" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2866,8 +2884,8 @@ msgid "Childs Field" msgstr "" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" msgstr "" #. module: base @@ -2930,6 +2948,11 @@ msgstr "" msgid "Report Xml" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -2998,6 +3021,11 @@ msgstr "" msgid "STOCK_HARDDISK" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3153,6 +3181,11 @@ msgstr "" msgid "Instances" msgstr "" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3228,15 +3261,6 @@ msgstr "" msgid "Group by" 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.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3444,8 +3468,14 @@ msgid "Update Translations" msgstr "" #. module: base -#: view:res.config.view:0 -msgid "Set" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" msgstr "" #. module: base @@ -3524,6 +3554,12 @@ msgstr "" msgid "Channels" msgstr "" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3558,8 +3594,8 @@ msgid "Schedule for Installation" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" msgstr "" #. module: base @@ -3783,11 +3819,6 @@ msgstr "" msgid "STOCK_COLOR_PICKER" msgstr "" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3806,8 +3837,9 @@ msgid "Kind" msgstr "" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" msgstr "" #. module: base @@ -3825,8 +3857,8 @@ msgid "Tree" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" +#: view:res.partner.bank:0 +msgid "Bank accounts" msgstr "" #. module: base @@ -4059,11 +4091,6 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4448,11 +4475,6 @@ msgstr "" msgid "Arguments" msgstr "" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4605,8 +4627,8 @@ msgid "Not Installable" msgstr "" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" +#: rml:ir.module.reference:0 +msgid "View :" msgstr "" #. module: base @@ -5082,6 +5104,11 @@ msgstr "" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5164,8 +5191,8 @@ msgid "Operator" msgstr "" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" msgstr "" #. module: base @@ -5305,8 +5332,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5315,8 +5342,8 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" msgstr "" #. module: base @@ -5852,6 +5879,11 @@ msgstr "" msgid "Trigger Object" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5874,8 +5906,12 @@ msgid "Error" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" +#: 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 @@ -6309,8 +6345,8 @@ msgid "Modules to be installed, upgraded or removed" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" msgstr "" #. module: base @@ -6387,11 +6423,6 @@ msgstr "" msgid "Cancel Install" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/i18n/base.pot b/bin/addons/base/i18n/base.pot index d1196a1e9ec..401ce300cb7 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.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:55+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:55+0000\n" +"POT-Creation-Date: 2009-01-03 02:18:25+0000\n" +"PO-Revision-Date: 2009-01-03 02:18:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "" msgid "terp-account" msgstr "" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -370,8 +375,8 @@ msgid "Sender's email" msgstr "" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" msgstr "" #. module: base @@ -458,8 +463,8 @@ msgid "STOCK_CANCEL" msgstr "" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" msgstr "" #. module: base @@ -942,11 +947,21 @@ msgstr "" msgid "STOCK_UNDERLINE" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" @@ -1837,11 +1852,6 @@ msgstr "" msgid "Get file" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1863,6 +1873,12 @@ msgstr "" msgid "ir.model.data" msgstr "" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1963,14 +1979,13 @@ msgid "From" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" +#: selection:res.partner.event,partner_type:0 +msgid "Retailer" msgstr "" #. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Retailer" +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" msgstr "" #. module: base @@ -1998,11 +2013,6 @@ msgstr "" msgid "Set NULL" msgstr "" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2035,6 +2045,11 @@ msgstr "" msgid "Defined Reports" msgstr "" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" @@ -2130,6 +2145,11 @@ msgstr "" msgid "RML Header" msgstr "" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2264,8 +2284,8 @@ msgid "Recursion error in modules dependencies !" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" +#: view:ir.rule:0 +msgid "Manual domain setup" msgstr "" #. module: base @@ -2486,6 +2506,11 @@ msgstr "" msgid "draft" msgstr "" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2643,14 +2668,8 @@ msgid "(year)=" msgstr "" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" +#: rml:ir.module.reference:0 +msgid "Dependencies :" msgstr "" #. module: base @@ -2669,9 +2688,9 @@ msgid "Creator" msgstr "" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" +msgid "You cannot perform this operation." msgstr "" #. module: base @@ -2724,7 +2743,6 @@ msgstr "" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2866,8 +2884,8 @@ msgid "Childs Field" msgstr "" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" msgstr "" #. module: base @@ -2930,6 +2948,11 @@ msgstr "" msgid "Report Xml" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -2998,6 +3021,11 @@ msgstr "" msgid "STOCK_HARDDISK" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3153,6 +3181,11 @@ msgstr "" msgid "Instances" msgstr "" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3228,15 +3261,6 @@ msgstr "" msgid "Group by" 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.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3444,8 +3468,14 @@ msgid "Update Translations" msgstr "" #. module: base -#: view:res.config.view:0 -msgid "Set" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" msgstr "" #. module: base @@ -3524,6 +3554,12 @@ msgstr "" msgid "Channels" msgstr "" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3558,8 +3594,8 @@ msgid "Schedule for Installation" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" msgstr "" #. module: base @@ -3783,11 +3819,6 @@ msgstr "" msgid "STOCK_COLOR_PICKER" msgstr "" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3806,8 +3837,9 @@ msgid "Kind" msgstr "" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" msgstr "" #. module: base @@ -3825,8 +3857,8 @@ msgid "Tree" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" +#: view:res.partner.bank:0 +msgid "Bank accounts" msgstr "" #. module: base @@ -4059,11 +4091,6 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4448,11 +4475,6 @@ msgstr "" msgid "Arguments" msgstr "" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4605,8 +4627,8 @@ msgid "Not Installable" msgstr "" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" +#: rml:ir.module.reference:0 +msgid "View :" msgstr "" #. module: base @@ -5082,6 +5104,11 @@ msgstr "" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5164,8 +5191,8 @@ msgid "Operator" msgstr "" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" msgstr "" #. module: base @@ -5305,8 +5332,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5315,8 +5342,8 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" msgstr "" #. module: base @@ -5852,6 +5879,11 @@ msgstr "" msgid "Trigger Object" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5874,8 +5906,12 @@ msgid "Error" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" +#: 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 @@ -6309,8 +6345,8 @@ msgid "Modules to be installed, upgraded or removed" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" msgstr "" #. module: base @@ -6387,11 +6423,6 @@ msgstr "" msgid "Cancel Install" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/i18n/bg_BG.po b/bin/addons/base/i18n/bg_BG.po index 46928f353cd..ec73f67b62d 100644 --- a/bin/addons/base/i18n/bg_BG.po +++ b/bin/addons/base/i18n/bg_BG.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 17:50:14+0000\n" -"PO-Revision-Date: 2008-12-22 17:50:14+0000\n" +"POT-Creation-Date: 2009-01-03 02:00:56+0000\n" +"PO-Revision-Date: 2009-01-03 02:00:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "Име на функция" msgid "terp-account" msgstr "" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "Категория на партньора" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -370,8 +375,8 @@ msgid "Sender's email" msgstr "E-mail на изпращащия" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" msgstr "" #. module: base @@ -458,8 +463,8 @@ msgid "STOCK_CANCEL" msgstr "STOCK_CANCEL" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" msgstr "" #. module: base @@ -778,7 +783,7 @@ msgstr "Горен колонтитул на справка" #. module: base #: view:ir.rule:0 msgid "If you don't force the domain, it will use the simple domain setup" -msgstr "Ако не укажете изрично домейн ще бъде използван домейна по подрабиране" +msgstr "" #. module: base #: model:res.partner.title,name:base.res_partner_title_pvt_ltd @@ -942,11 +947,21 @@ msgstr "Ако избраният език зареден в системата msgid "STOCK_UNDERLINE" msgstr "STOCK_UNDERLINE" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" @@ -1838,11 +1853,6 @@ msgstr "" msgid "Get file" msgstr "Вземи файл" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1865,6 +1875,12 @@ msgstr "0=Много спешно\n" msgid "ir.model.data" msgstr "ir.model.data" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1964,17 +1980,16 @@ msgstr "Общи" msgid "From" msgstr "От" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "Методът повече не съществува" - #. module: base #: selection:res.partner.event,partner_type:0 msgid "Retailer" msgstr "Търговец" +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2000,11 +2015,6 @@ msgstr "TGZ Архив" msgid "Set NULL" msgstr "Сложи нищо (NULL)" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2037,6 +2047,11 @@ msgstr "Ръчно създаден" msgid "Defined Reports" msgstr "" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" @@ -2132,6 +2147,11 @@ msgstr "Паролата е празна !" msgid "RML Header" msgstr "RML горен колонтитул" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "Задаване" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2266,9 +2286,9 @@ msgid "Recursion error in modules dependencies !" msgstr "Рекурсивна грешка при зависимостите на модулите !" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" -msgstr "" +#: view:ir.rule:0 +msgid "Manual domain setup" +msgstr "Ръчна настройка на домейн" #. module: base #: field:ir.actions.report.xml,report_xsl:0 @@ -2488,6 +2508,11 @@ msgstr "STOCK_JUSTIFY_FILL" msgid "draft" msgstr "проект" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "Вероятност (0.50)" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2645,15 +2670,9 @@ msgid "(year)=" msgstr "(година)=" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" -msgstr "Код" +#: rml:ir.module.reference:0 +msgid "Dependencies :" +msgstr "" #. module: base #: view:ir.module.module:0 @@ -2671,10 +2690,10 @@ msgid "Creator" msgstr "" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" -msgstr "Методът get_memory не е реализиран !" +msgid "You cannot perform this operation." +msgstr "" #. module: base #: field:ir.actions.server,code:0 @@ -2726,7 +2745,6 @@ msgstr "Отношение" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2868,9 +2886,9 @@ msgid "Childs Field" msgstr "Подчинено поле" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Име на раля" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "" #. module: base #: code:addons/base/res/res_user.py:0 @@ -2881,7 +2899,7 @@ msgstr "Не мога да премахна потребителя root!" #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" -msgstr "" +msgstr "Инсталирана версия" #. module: base #: view:res.lang:0 @@ -2932,6 +2950,11 @@ msgstr "Извличане на файл с превод" msgid "Report Xml" msgstr "Xml справка" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -3000,6 +3023,11 @@ msgstr "Банка" msgid "STOCK_HARDDISK" msgstr "STOCK_HARDDISK" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3155,6 +3183,11 @@ msgstr "Висок" msgid "Instances" msgstr "Екземпляри" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Име на раля" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3230,15 +3263,6 @@ msgstr "" msgid "Group by" 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.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3449,9 +3473,15 @@ msgid "Update Translations" msgstr "Обнови преводите" #. module: base -#: view:res.config.view:0 -msgid "Set" -msgstr "Задаване" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" +msgstr "Код" #. module: base #: field:ir.report.custom.fields,width:0 @@ -3529,6 +3559,12 @@ msgstr "" msgid "Channels" msgstr "Канали" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "Методът get_memory не е реализиран !" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3563,8 +3599,8 @@ msgid "Schedule for Installation" msgstr "График на инсталация" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" msgstr "" #. module: base @@ -3788,11 +3824,6 @@ msgstr "Имайте предвид операцията може да отне msgid "STOCK_COLOR_PICKER" msgstr "STOCK_COLOR_PICKER" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "Ръчна настройка на домейн" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3811,9 +3842,10 @@ msgid "Kind" msgstr "Вид" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" -msgstr "Банкови сметки" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" +msgstr "Методът повече не съществува" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 @@ -3830,9 +3862,9 @@ msgid "Tree" msgstr "Дървовиден преглед" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" -msgstr "" +#: view:res.partner.bank:0 +msgid "Bank accounts" +msgstr "Банкови сметки" #. module: base #: selection:ir.actions.todo,start_on:0 @@ -4064,11 +4096,6 @@ msgstr "Не мога да генерирам следващо id тъй кат msgid "Unsubscribed" msgstr "Неабониран" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4317,7 +4344,7 @@ msgstr "Действие" #. module: base #: field:ir.rule,domain_force:0 msgid "Force Domain" -msgstr "" +msgstr "Създай изрично домейн" #. module: base #: view:ir.actions.server:0 @@ -4453,11 +4480,6 @@ msgstr "Експортът е завършил" msgid "Arguments" msgstr "Аргументи" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4610,9 +4632,9 @@ msgid "Not Installable" msgstr "Неинсталируем" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "Вероятност (0.50)" +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "" #. module: base #: field:res.partner.address,mobile:0 @@ -5087,6 +5109,11 @@ msgstr "Лимит" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "Адрес на партньора" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5169,9 +5196,9 @@ msgid "Operator" msgstr "Оператор" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" -msgstr "Адрес на партньора" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" +msgstr "" #. module: base #: view:wizard.module.lang.export:0 @@ -5310,8 +5337,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5320,9 +5347,9 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" -msgstr "Категория на партньора" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -5617,7 +5644,7 @@ msgstr "Графика" #. 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 @@ -5857,6 +5884,11 @@ msgstr "Меню за достъп" msgid "Trigger Object" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "Месец: %(month)s" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5879,9 +5911,13 @@ msgid "Error" msgstr "Грешка:" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" -msgstr "" +#: model:ir.actions.act_window,name:base.action_partner_by_category +#: model:ir.actions.act_window,name:base.action_partner_category_form +#: model:ir.model,name:base.model_res_partner_category +#: model:ir.ui.menu,name:base.menu_partner_category_form +#: view:res.partner.category:0 +msgid "Partner Categories" +msgstr "Категории на партньора" #. module: base #: model:ir.model,name:base.model_workflow_activity @@ -6314,9 +6350,9 @@ msgid "Modules to be installed, upgraded or removed" msgstr "Модули за инсталация, обновяване или премахване" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" -msgstr "Месец: %(month)s" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_partner_address_form @@ -6392,11 +6428,6 @@ msgstr "Главно описание" msgid "Cancel Install" msgstr "Прекъсни инсталацията" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/i18n/bs_BS.po b/bin/addons/base/i18n/bs_BS.po new file mode 100644 index 00000000000..42b92e52be3 --- /dev/null +++ b/bin/addons/base/i18n/bs_BS.po @@ -0,0 +1,6441 @@ +# Translation of OpenERP Server. +# This file containt the translation of the following modules: +# * base +# +msgid "" +msgstr "" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" +"Report-Msgid-Bugs-To: support@openerp.com\n" +"POT-Creation-Date: 2009-01-03 02:17:41+0000\n" +"PO-Revision-Date: 2009-01-03 02:17:41+0000\n" +"Last-Translator: <>\n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_cron_act +#: model:ir.ui.menu,name:base.menu_ir_cron_act +#: view:ir.cron:0 +msgid "Scheduled Actions" +msgstr "Vremenski plan akcija" + +#. module: base +#: view:res.lang:0 +msgid "%S - Second as a decimal number [00,61]." +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "Legends for Date and Time Formats" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,report_name:0 +msgid "Internal Name" +msgstr "Interni naziv" + +#. module: base +#: wizard_view:res.partner.sms_send,init:0 +msgid "SMS - Gateway: clickatell" +msgstr "SMS - pristupnik: clickatell" + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Monthly" +msgstr "Mjesečno" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +msgid "Unknown" +msgstr "Nepoznat" + +#. 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 "Ovaj čarobnjak će naći nove izraze u aplikaciji tako da ih možete ručno ažurirati." + +#. module: base +#: field:workflow.activity,out_transitions:0 +#: view:workflow.activity:0 +msgid "Outgoing transitions" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%j - Day of the year as a decimal number [001,366]." +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SAVE" +msgstr "SKLADIŠTE_SPREMI" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_users_my +msgid "Change My Preferences" +msgstr "Promjeni Moje postavke" + +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open Window" +msgstr "Otvori prozor" + +#. module: base +#: field:res.partner.function,name:0 +msgid "Function name" +msgstr "Naziv funkcije" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-account" +msgstr "terp-račun" + +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "" + +#. module: base +#: field:res.partner.address,title:0 +#: field:res.partner,title:0 +#: field:res.partner.title,name:0 +msgid "Title" +msgstr "Naslov" + +#. module: base +#: wizard_field:res.partner.sms_send,init,text:0 +msgid "SMS Message" +msgstr "SMS poruka" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_EDIT" +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 "Stanje svijesti" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SORT_ASCENDING" +msgstr "SKLADIŠTE_SORTIRAJ_UZLAZNO" + +#. module: base +#: view:res.groups:0 +#: view:ir.model:0 +msgid "Access Rules" +msgstr "Pravila pristupa" + +#. module: base +#: field:ir.ui.view,arch:0 +#: field:ir.ui.view.custom,arch:0 +msgid "View Architecture" +msgstr "Prikaz arhikteture" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_FORWARD" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Skipped" +msgstr "Preskočeno" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not create this kind of document! (%s)" +msgstr "Nemožete kreirati ovaj tip dokumenta! (%s)" + +#. module: base +#: wizard_field:module.lang.import,init,code:0 +msgid "Code (eg:en__US)" +msgstr "Kod (npr:en__US)" + +#. module: base +#: field:res.roles,parent_id:0 +msgid "Parent" +msgstr "Roditelj" + +#. module: base +#: field:workflow.activity,wkf_id:0 +#: field:workflow.instance,wkf_id:0 +#: view:workflow:0 +msgid "Workflow" +msgstr "Radni tok" + +#. module: base +#: field:ir.actions.report.custom,model:0 +#: field:ir.actions.report.xml,model:0 +#: field:ir.actions.server,model_id:0 +#: field:ir.actions.act_window,res_model:0 +#: field:ir.actions.wizard,model:0 +#: field:ir.cron,model:0 +#: field:ir.default,field_tbl:0 +#: field:ir.model.access,model_id:0 +#: field:ir.model.data,model:0 +#: field:ir.model.grid,name:0 +#: field:ir.report.custom,model_id:0 +#: field:ir.rule.group,model_id:0 +#: selection:ir.translation,type:0 +#: field:ir.ui.view,model:0 +#: field:ir.values,model_id:0 +#: field:res.request.link,object:0 +#: field:wizard.ir.model.menu.create,model_id:0 +#: field:workflow.triggers,model:0 +#: view:ir.model:0 +msgid "Object" +msgstr "Objekat" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "To browse official translations, you can visit this link: " +msgstr "Da pregledate zvanične prijevode možete posjetiti ovaj link: " + +#. module: base +#: model:ir.actions.act_window,name:base.action_module_category_tree +#: model:ir.ui.menu,name:base.menu_action_module_category_tree +msgid "Categories of Modules" +msgstr "Kategorije Modula" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Ukrainian / украї́нська мо́ва" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Hungarian / Magyar" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_default +msgid "ir.default" +msgstr "ir.podrazumjevano" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Not Started" +msgstr "Nije pokrenuto" + +#. module: base +#: view:ir.sequence:0 +msgid "Minute: %(min)s" +msgstr "Minute: %(min)s" + +#. module: base +#: view:res.company:0 +msgid "Header/Footer" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_100" +msgstr "SKLADIŠTE_UVEĆANJE_100" + +#. module: base +#: model:ir.model,name:base.model_res_partner_bank_type_field +msgid "Bank type fields" +msgstr "" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "type,name,res_id,src,value" +msgstr "tip,naziv,rez_id,izv,vrijednost" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Dutch / Nederlands" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export translation file" +msgstr "Izvoz datoteke prijevoda" + +#. module: base +#: field:res.partner.event.type,key:0 +msgid "Key" +msgstr "Ključ" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_roles_form +#: field:res.users,roles_id:0 +#: model:ir.ui.menu,name:base.menu_action_res_roles_form +#: view:res.roles:0 +#: view:res.users:0 +msgid "Roles" +msgstr "Uloge" + +#. module: base +#: model:ir.actions.act_window,name:base.action_country +#: model:ir.ui.menu,name:base.menu_country_partner +msgid "Countries" +msgstr "Zemlje" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HELP" +msgstr "SKLADIŠTE_POMOĆ" + +#. module: base +#: help:ir.actions.server,sequence:0 +msgid "Important when you deal with the multi action, the execution order will be decided based on this, low number higher priority" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Created Views" +msgstr "Kreirani prikazi" + +#. module: base +#: selection:res.request,priority:0 +msgid "Normal" +msgstr "Normalan" + +#. module: base +#: field:ir.ui.view_sc,user_id:0 +msgid "User Ref." +msgstr "Korisnik ref." + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "Import new language" +msgstr "Uvezi novi jezik" + +#. module: base +#: wizard_field:server.action.create,step_1,report:0 +#: wizard_view:server.action.create,step_1:0 +msgid "Select Report" +msgstr "Odaberi izvještaj" + +#. 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 "uslov" + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Yearly" +msgstr "Godišnje" + +#. module: base +#: rml:ir.module.reference:0 +msgid "1cm 28cm 20cm 28cm" +msgstr "" + +#. module: base +#: field:ir.sequence,suffix:0 +msgid "Suffix" +msgstr "Sufiks" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "Metod odspajanja nije implementiran na ovaj objekt!" + +#. module: base +#: field:ir.actions.server,expression:0 +msgid "Loop Expression" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "12. %w ==> 5 ( Friday is the 6th day)" +msgstr "" + +#. module: base +#: model:ir.actions.report.xml,name:base.res_partner_address_report +msgid "Labels" +msgstr "Oznake" + +#. module: base +#: field:ir.actions.act_window,target:0 +msgid "Target Window" +msgstr "Ciljni prozor" + +#. module: base +#: view:res.lang:0 +msgid "%H - Hour (24-hour clock) as a decimal number [00,23]." +msgstr "" + +#. module: base +#: wizard_field:res.partner.spam_send,init,from:0 +msgid "Sender's email" +msgstr "Email pošiljaoca" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" +msgstr "" + +#. module: base +#: help:ir.actions.server,email:0 +msgid "provides the fiels that will refer to the tiny to fetch the email address, i.e. you select the invoice, then `object.invoice_address_id.email` is the field which give the correct address" +msgstr "" + +#. module: base +#: model:ir.actions.todo,note:base.config_wizard_simple_view +msgid "Choose between the \"Simplified Interface\" or the extended one.\n" +"If you are testing or using OpenERP for the first time, we suggest you to use\n" +"the simplified interface, which has less options and fields but is easier to\n" +"understand. You will be able to switch to the extended view later.\n" +" " +msgstr "" + +#. module: base +#: field:ir.actions.todo,start_on:0 +msgid "Start On" +msgstr "Počni sa" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Reference Guide" +msgstr "Referentni vodič" + +#. module: base +#: model:ir.model,name:base.model_res_partner +#: field:res.company,partner_id:0 +#: field:res.partner.address,partner_id:0 +#: field:res.partner.bank,partner_id:0 +#: field:res.partner.event,partner_id:0 +#: selection:res.partner.title,domain:0 +msgid "Partner" +msgstr "Partner" + +#. 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 "Prijelazi" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view_custom +msgid "ir.ui.view.custom" +msgstr "ir.ui.prikaz.prilagođen" + +#. 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.ui.menu,icon:0 +msgid "STOCK_SELECT_COLOR" +msgstr "" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-2 or later version" +msgstr "GPL-2 ili novija verzija" + +#. module: base +#: selection:workflow.activity,kind:0 +msgid "Stop All" +msgstr "Zaustavi sve" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NEW" +msgstr "SKLADIŠTE_NOVI" + +#. 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.akcije.izvještaj.prilagođen" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CANCEL" +msgstr "SKLADIŠTE_OTKAŽI" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" +msgstr "" + +#. module: base +#: constraint:ir.ui.view:0 +msgid "Invalid XML for View Architecture!" +msgstr "Neodgovarajući XML za arhitekturu prikaza!" + +#. module: base +#: field:ir.report.custom,sortby:0 +msgid "Sorted By" +msgstr "Poredano po" + +#. 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 "Tip izvještaja" + +#. module: base +#: field:ir.actions.todo,state:0 +#: field:ir.module.module.dependency,state:0 +#: field:ir.module.module,state:0 +#: field:ir.report.custom,state:0 +#: field:maintenance.contract,state:0 +#: field:res.bank,state:0 +#: field:res.partner.address,state_id:0 +#: field:res.partner.bank,state_id:0 +#: field:res.request,state:0 +#: field:workflow.instance,state:0 +#: field:workflow.workitem,state:0 +#: view:res.country.state:0 +msgid "State" +msgstr "Stanje" + +#. module: base +#: rml:ir.module.reference:0 +#: field:maintenance.contract.module,version:0 +msgid "Version" +msgstr "" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "Other proprietary" +msgstr "Drugi svojinski odnosi" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-administration" +msgstr "" + +#. module: base +#: field:res.partner,comment:0 +#: view:ir.attachment:0 +#: view:res.groups:0 +#: view:ir.model:0 +#: view:res.partner:0 +msgid "Notes" +msgstr "Bilješke" + +#. module: base +#: model:ir.actions.act_window,name:base.action_translation +#: model:ir.ui.menu,name:base.menu_action_translation +msgid "All terms" +msgstr "Svi uslovi" + +#. module: base +#: view:res.partner:0 +msgid "General" +msgstr "Opšte" + +#. module: base +#: field:ir.actions.wizard,name:0 +msgid "Wizard info" +msgstr "Informacije o čarobnjaku" + +#. module: base +#: view:res.lang:0 +msgid "4. %b, %B ==> Dec, December" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_property +msgid "ir.property" +msgstr "ir.svojstvo" + +#. 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 "Obrazac" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "Can not define a column %s. Reserved keyword !" +msgstr "Nemogu definisati kolonu %s. Rezervisana ključna riječ !" + +#. module: base +#: help:ir.ui.menu,groups_id:0 +msgid "If you put groups, the visibility of this menu will be based on these groups. If this field is empty, Open ERP will compute visibility based on the related object's read access." +msgstr "Ako postavite grupe, vidljivost ovog menija će biti zasnovana na tim grupama. Ako je ovo polje prazno. OpenERP će izračunati vidljivost prema pravima čitanja povezanih objekata." + +#. module: base +#: field:workflow.transition,act_to:0 +msgid "Destination Activity" +msgstr "Odedišna aktivnost" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_10 +msgid "Open Source Service Company" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_QUIT" +msgstr "SKLADIŠTE_NAPUSTI" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The name_search method is not implemented on this object !" +msgstr "Metod naziv_Pretrage nije implementiran za ovaj objekt !" + +#. module: base +#: selection:res.request,state:0 +msgid "waiting" +msgstr "čekam" + +#. module: base +#: field:res.country,name:0 +msgid "Country Name" +msgstr "Naziv zemlje" + +#. module: base +#: field:ir.attachment,link:0 +msgid "Link" +msgstr "Link" + +#. module: base +#: selection:maintenance.contract,state:0 +msgid "Valid" +msgstr "" + +#. module: base +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#, python-format +msgid "new" +msgstr "novi" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_TOP" +msgstr "SKLADIŠTE_IDINA_VRH" + +#. module: base +#: field:ir.actions.report.custom,multi:0 +#: field:ir.actions.report.xml,multi:0 +#: field:ir.actions.act_window.view,multi:0 +msgid "On multiple doc." +msgstr "Na višestruke dok." + +#. module: base +#: view:res.lang:0 +msgid "%m - Month as a decimal number [01,12]." +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_workflow_triggers +msgid "workflow.triggers" +msgstr "radnitok.okidači" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view +msgid "ir.ui.view" +msgstr "ir.ui.prikaz" + +#. module: base +#: field:ir.report.custom.fields,report_id:0 +msgid "Report Ref" +msgstr "Izvještaj ref" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-hr" +msgstr "terp-hr" + +#. module: base +#: field:res.partner.bank.type.field,size:0 +msgid "Max. Size" +msgstr "Maksimalna veličina" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +#: selection:ir.module.module,state:0 +msgid "To be upgraded" +msgstr "Treba biti nadograđeno" + +#. module: base +#: help:ir.actions.server,name:0 +msgid "Easy to Refer action by name i.e. One Sales Order -> Many Invoice" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-purchase" +msgstr "terp-kupovina" + +#. module: base +#: field:res.partner.address,name:0 +msgid "Contact Name" +msgstr "Naziv kontakta" + +#. 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 "Spremi ovaj dokument u %s datoteku i uredi ga sa određenim programom ili uređivačem teksta. Enkodiranje datoteke je UTF-8" + +#. module: base +#: view:ir.module.module:0 +msgid "Schedule Upgrade" +msgstr "Planirana nadogradnja" + +#. module: base +#: wizard_field:module.module.update,init,repositories:0 +msgid "Repositories" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "Password mismatch !" +msgstr "Šifre se nepodudaraju" + +#. module: base +#: selection:res.partner.address,type:0 +#: selection:res.partner.title,domain:0 +msgid "Contact" +msgstr "Kontakt" + +#. 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 +#: model:ir.ui.menu,name:base.next_id_15 +#: view:ir.property:0 +#: view:ir.model.fields:0 +#: view:ir.model:0 +msgid "Properties" +msgstr "Osobine" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_ltd +msgid "Ltd" +msgstr "d.o.o." + +#. module: base +#: model:ir.model,name:base.model_ir_ui_menu +msgid "ir.ui.menu" +msgstr "ir.ui.meni" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "ConcurrencyException" +msgstr "IzuzetakIstovremenosti" + +#. module: base +#: field:ir.actions.act_window,view_id:0 +msgid "View Ref." +msgstr "Prikaz ref." + +#. module: base +#: field:ir.actions.server,wkf_model_id:0 +msgid "Workflow on" +msgstr "" + +#. module: base +#: field:ir.default,ref_table:0 +msgid "Table Ref." +msgstr "" + +#. module: base +#: field:res.partner,ean13:0 +msgid "EAN13" +msgstr "EAN13" + +#. module: base +#: view:res.users:0 +msgid "Roles are used to defined available actions, provided by workflows." +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.open_repository_tree +#: model:ir.ui.menu,name:base.menu_module_repository_tree +#: view:ir.module.repository:0 +msgid "Repository list" +msgstr "" + +#. module: base +#: help:ir.rule.group,rules:0 +msgid "The rule is satisfied if at least one test is True" +msgstr "Pravilo je zadovoljeno ako je makar jedan test tačan" + +#. module: base +#: field:res.company,rml_header1:0 +msgid "Report Header" +msgstr "Zaglavlje izvještaja" + +#. module: base +#: view:ir.rule:0 +msgid "If you don't force the domain, it will use the simple domain setup" +msgstr "" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_pvt_ltd +msgid "Corp." +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_16 +msgid "Telecom sector" +msgstr "" + +#. module: base +#: field:ir.actions.act_window_close,type:0 +#: field:ir.actions.actions,type:0 +#: field:ir.actions.server,state:0 +#: field:ir.actions.server,type:0 +#: field:ir.actions.url,type:0 +#: field:ir.actions.act_window,type:0 +msgid "Action Type" +msgstr "Tip akcije" + +#. module: base +#: help:ir.actions.act_window,limit:0 +msgid "Default limit for the list view" +msgstr "Podrazumjevana granica za prikaz liste" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_12 +msgid "Segmentation" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_server_object_lines +msgid "ir.server.object.lines" +msgstr "ir.server.objekt.linije" + +#. module: base +#: field:ir.actions.act_window,src_model:0 +msgid "Source Object" +msgstr "Izvorni objekt" + +#. module: base +#: field:ir.model.fields,size:0 +msgid "Size" +msgstr "" + +#. module: base +#: field:res.partner.bank.type,field_ids:0 +msgid "Type fields" +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 +#: view:ir.actions.todo:0 +msgid "Config Wizard Steps" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_ui_view_sc +msgid "ir.ui.view_sc" +msgstr "" + +#. module: base +#: field:ir.model.access,group_id:0 +#: field:ir.rule,rule_group:0 +msgid "Group" +msgstr "" + +#. module: base +#: help:res.partner,customer:0 +msgid "Check this box if the partner is a customer." +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FLOPPY" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_custom +msgid "Customization" +msgstr "" + +#. module: base +#: field:res.users,signature:0 +msgid "Signature" +msgstr "" + +#. module: base +#: field:ir.actions.server,sms:0 +#: selection:ir.actions.server,state:0 +msgid "SMS" +msgstr "" + +#. module: base +#: field:ir.translation,name:0 +msgid "Field Name" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.res_lang_act_window +#: model:ir.model,name:base.model_res_lang +#: model:ir.ui.menu,name:base.menu_res_lang_act_window +#: view:res.lang:0 +msgid "Languages" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_uninstall +#: model:ir.ui.menu,name:base.menu_module_tree_uninstall +msgid "Uninstalled modules" +msgstr "" + +#. module: base +#: help:res.partner.category,active:0 +msgid "The active field allows you to hide the category, without removing it." +msgstr "" + +#. module: base +#: selection:wizard.module.lang.export,format:0 +msgid "PO File" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_partner_event +msgid "res.partner.event" +msgstr "" + +#. module: base +#: wizard_field:server.action.create,init,type:0 +#: wizard_view:server.action.create,init:0 +msgid "Select Action Type" +msgstr "" + +#. module: base +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#, python-format +msgid "Save this document to a .CSV file and open it with your favourite spreadsheet software. The file encoding is UTF-8. You have to translate the latest column before reimporting it." +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_currency_form +#: model:ir.ui.menu,name:base.menu_action_currency_form +#: view:res.currency:0 +msgid "Currencies" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,type:0 +msgid "Configure" +msgstr "" + +#. module: base +#: help:res.partner,lang:0 +msgid "If the selected language is loaded in the system, all documents related to this partner will be printed in this language. If not, it will be english." +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDERLINE" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + +#. module: base +#: selection:ir.model,state:0 +msgid "Custom Object" +msgstr "" + +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + +#. module: base +#: field:res.lang,date_format:0 +msgid "Date Format" +msgstr "" + +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Always Searchable" +msgstr "" + +#. module: base +#: selection:ir.model.fields,state:0 +msgid "Base Field" +msgstr "" + +#. module: base +#: field:workflow.instance,uid:0 +msgid "User ID" +msgstr "" + +#. module: base +#: view:ir.rule:0 +msgid "Test" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Access all the fields related to the current object using expression in double brackets, i.e.[[ object.partner_id.name ]]" +msgstr "" + +#. module: base +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "You can not remove the admin user as it is used internally for resources created by OpenERP (updates, module installation, ...)" +msgstr "" + +#. module: base +#: wizard_view:module.module.update,update:0 +msgid "New modules" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "Examples" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,report_sxw_content:0 +#: field:ir.actions.report.xml,report_sxw_content_data:0 +msgid "SXW content" +msgstr "" + +#. module: base +#: field:ir.default,ref_id:0 +msgid "ID Ref." +msgstr "" + +#. module: base +#: help:res.partner.address,active:0 +msgid "Uncheck the active field to hide the contact." +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_10 +msgid "Scheduler" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_BOLD" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,fc0_operande:0 +#: field:ir.report.custom.fields,fc1_operande:0 +#: field:ir.report.custom.fields,fc2_operande:0 +#: field:ir.report.custom.fields,fc3_operande:0 +#: selection:ir.translation,type:0 +msgid "Constraint" +msgstr "" + +#. module: base +#: selection:ir.values,key:0 +#: selection:res.partner.address,type:0 +msgid "Default" +msgstr "" + +#. module: base +#: field:ir.model.fields,required:0 +#: field:res.partner.bank.type.field,required:0 +msgid "Required" +msgstr "" + +#. module: base +#: field:res.country,code:0 +msgid "Country Code" +msgstr "" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Continue" +msgstr "" + +#. module: base +#: field:res.request.history,name:0 +msgid "Summary" +msgstr "" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "Maintenance contract added !" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-graph" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_workflow_instance +msgid "workflow.instance" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "10. %S ==> 20" +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:osv/fields.py:0 +#, python-format +msgid "undefined get method !" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "2. %a ,%A ==> Fri, Friday" +msgstr "" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + +#. module: base +#: wizard_view:module.lang.install,start:0 +msgid "The selected language has been successfully installed. You must change the preferences of the user and open a new menu to view changes." +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%B - Full month name." +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_REWIND" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_partner_event_type +#: model:ir.ui.menu,name:base.next_id_14 +#: view:res.partner.event:0 +msgid "Partner Events" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_workflow_transition +msgid "workflow.transition" +msgstr "radnitok.prijelaz" + +#. module: base +#: view:res.lang:0 +msgid "%a - Abbreviated weekday name." +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CUT" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Introspection report on objects" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NO" +msgstr "" + +#. module: base +#: selection:res.config.view,view:0 +msgid "Extended Interface" +msgstr "" + +#. module: base +#: field:res.company,name:0 +msgid "Company Name" +msgstr "" + +#. module: base +#: wizard_field:base.module.import,init,module_file:0 +msgid "Module .ZIP file" +msgstr "" + +#. module: base +#: wizard_button:res.partner.sms_send,init,send:0 +#: model:ir.actions.wizard,name:base.res_partner_send_sms_wizard +msgid "Send SMS" +msgstr "" + +#. module: base +#: field:ir.actions.report.custom,report_id:0 +msgid "Report Ref." +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_addess_tree +#: view:res.partner:0 +msgid "Partner contacts" +msgstr "" + +#. module: base +#: field:res.users,address_id:0 +msgid "Address" +msgstr "" + +#. module: base +#: help:res.country,code:0 +msgid "The ISO country code in two chars.\n" +"You can use this field for quick search." +msgstr "" + +#. module: base +#: selection:workflow.activity,join_mode:0 +#: selection:workflow.activity,split_mode:0 +msgid "Xor" +msgstr "" + +#. module: base +#: selection:ir.report.custom,state:0 +msgid "Subscribed" +msgstr "" + +#. module: base +#: view:res.partner:0 +msgid "Sales & Purchases" +msgstr "" + +#. module: base +#: field:wizard.ir.model.menu.create.line,wizard_id:0 +#: view:ir.actions.wizard:0 +msgid "Wizard" +msgstr "" + +#. module: base +#: wizard_view:module.lang.install,init:0 +#: wizard_view:module.upgrade,next:0 +msgid "System Upgrade" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REVERT_TO_SAVED" +msgstr "" + +#. module: base +#: field:res.partner.event,event_ical_id:0 +msgid "iCal id" +msgstr "" + +#. module: base +#: wizard_field:module.lang.import,init,name:0 +msgid "Language name" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_wizard +#: model:ir.ui.menu,name:base.menu_ir_action_wizard +#: view:ir.actions.wizard:0 +msgid "Wizards" +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 +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "Custom fields must have a name that starts with 'x_' !" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_4 +msgid "Low Level Objects" +msgstr "" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "" + +#. module: base +#: field:ir.values,key2:0 +#: field:res.partner.event.type,name:0 +#: view:res.partner.event.type:0 +msgid "Event Type" +msgstr "" + +#. module: base +#: field:ir.ui.view,type:0 +#: field:wizard.ir.model.menu.create.line,view_type:0 +msgid "View Type" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_report_custom +msgid "ir.report.custom" +msgstr "" + +#. module: base +#: field:ir.exports.line,export_id:0 +msgid "Exportation" +msgstr "" + +#. module: base +#: model:res.partner.bank.type.field,name:base.bank_normal_field +msgid "acc_number" +msgstr "" + +#. module: base +#: view:ir.model:0 +msgid "Model Description" +msgstr "" + +#. module: base +#: selection:maintenance.contract,state:0 +msgid "Unvalid" +msgstr "" + +#. module: base +#: wizard_view:res.partner.sms_send,init:0 +msgid "Bulk SMS send" +msgstr "" + +#. module: base +#: selection:wizard.module.lang.export,state:0 +msgid "get" +msgstr "" + +#. module: base +#: view:ir.report.custom.fields:0 +msgid "Report Fields" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_2 +msgid "User Interface" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_values +msgid "ir.values" +msgstr "" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Pie Chart" +msgstr "" + +#. module: base +#: field:workflow.transition,trigger_expr_id:0 +msgid "Trigger Expression" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Spanish (AR) / Español (AR)" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_CENTER" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_FIT" +msgstr "" + +#. module: base +#: view:ir.sequence.type:0 +msgid "Sequence Type" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "You try to upgrade a module that depends on the module: %s.\nBut this module is not available in your system." +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,field_child2:0 +msgid "field child2" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,field_child3:0 +msgid "field child3" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,field_child0:0 +msgid "field child0" +msgstr "" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_update +#: model:ir.ui.menu,name:base.menu_module_update +msgid "Update Modules List" +msgstr "" + +#. module: base +#: view:res.config.view:0 +msgid "Configure simple view" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Bulgarian / български" +msgstr "" + +#. module: base +#: field:ir.module.module,license:0 +msgid "License" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_actions +msgid "ir.actions.actions" +msgstr "" + +#. module: base +#: field:ir.module.repository,url:0 +msgid "Url" +msgstr "" + +#. module: base +#: field:res.request,body:0 +#: field:res.request.history,req_id:0 +#: view:res.request:0 +msgid "Request" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,view_mode:0 +msgid "Mode of view" +msgstr "" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The name_get method is not implemented on this object !" +msgstr "" + +#. module: base +#: selection:ir.report.custom,print_orientation:0 +msgid "Portrait" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Slovenian / slovenščina" +msgstr "" + +#. module: base +#: field:ir.actions.server,srcmodel_id:0 +msgid "Model" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "You try to install a module that depends on the module: %s.\nBut this module is not available in your system." +msgstr "" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Calendar" +msgstr "" + +#. module: base +#: wizard_view:module.lang.install,start:0 +msgid "Language file loaded." +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 +#: wizard_field:module.upgrade,next,module_info:0 +#: wizard_view:module.upgrade,next:0 +msgid "Modules to update" +msgstr "" + +#. module: base +#: field:ir.model.data,date_update:0 +msgid "Update Date" +msgstr "" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_miss +msgid "Miss" +msgstr "" + +#. module: base +#: field:workflow.workitem,act_id:0 +#: view:workflow.activity:0 +msgid "Activity" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Swedish / svenska" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_LAST" +msgstr "" + +#. module: base +#: field:ir.report.custom,print_orientation:0 +msgid "Print orientation" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_BOTTOM" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,header:0 +msgid "Add RML header" +msgstr "" + +#. module: base +#: field:ir.attachment,name:0 +msgid "Attachment Name" +msgstr "" + +#. module: base +#: selection:ir.report.custom,print_orientation:0 +msgid "Landscape" +msgstr "" + +#. module: base +#: wizard_field:module.lang.import,init,data:0 +#: field:wizard.module.lang.export,data:0 +msgid "File" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_form +#: model:ir.ui.menu,name:base.menu_ir_sequence_form +#: model:ir.ui.menu,name:base.next_id_5 +#: view:ir.sequence:0 +msgid "Sequences" +msgstr "" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "Unknown position in inherited view %s !" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Add User" +msgstr "" + +#. module: base +#: field:res.request,trigger_date:0 +msgid "Trigger Date" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Croatian / hrvatski jezik" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_configuration_wizard +msgid "ir.actions.configuration.wizard" +msgstr "" + +#. module: base +#: view:res.partner.bank:0 +#: model:res.partner.bank.type,name:base.bank_normal +msgid "Bank account" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_FORWARD" +msgstr "" + +#. module: base +#: field:res.bank,zip:0 +#: field:res.partner.address,zip:0 +#: field:res.partner.bank,zip:0 +msgid "Zip" +msgstr "" + +#. module: base +#: field:ir.module.module,author:0 +msgid "Author" +msgstr "" + +#. module: base +#: view:ir.model:0 +msgid "Fields Description" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%b - Abbreviated month name." +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDELETE" +msgstr "" + +#. module: base +#: selection:wizard.module.lang.export,state:0 +msgid "choose" +msgstr "" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +msgid "Uninstallable" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_QUESTION" +msgstr "" + +#. module: base +#: selection:ir.actions.server,state:0 +#: view:ir.actions.server:0 +msgid "Trigger" +msgstr "" + +#. module: base +#: field:res.partner,supplier:0 +#: model:res.partner.category,name:base.res_partner_category_8 +msgid "Supplier" +msgstr "" + +#. module: base +#: code:report/custom.py:0 +#, python-format +msgid "The sum of the data (2nd field) is null.\nWe can't draw a pie chart !" +msgstr "" + +#. module: base +#: selection:ir.actions.server,state:0 +#: view:ir.actions.server:0 +msgid "Multi Actions" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Access all the fields related to the current object using expression in double brackets, i.e. [[ object.partner_id.name ]]" +msgstr "" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Close" +msgstr "" + +#. module: base +#: field:res.request.history,body:0 +msgid "Body" +msgstr "" + +#. module: base +#: field:res.lang,direction:0 +msgid "Direction" +msgstr "" + +#. module: base +#: selection:maintenance.contract,kind:0 +msgid "Full" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_wizard_module_update_translations +msgid "wizard.module.update_translations" +msgstr "" + +#. module: base +#: help:ir.actions.server,state:0 +msgid "Type of the Action that is to be execute" +msgstr "" + +#. module: base +#: 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 +#: field:wizard.ir.model.menu.create,view_ids:0 +#: model:ir.ui.menu,name:base.menu_action_ui_view +#: view:wizard.ir.model.menu.create:0 +#: view:ir.ui.view:0 +#: view:ir.actions.act_window:0 +msgid "Views" +msgstr "" + +#. module: base +#: wizard_button:res.partner.spam_send,init,send:0 +msgid "Send Email" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_4 +msgid "Basic Partner" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SELECT_FONT" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "You try to remove a module that is installed or will be installed" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "," +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 +#: model:res.partner.title,name:base.res_partner_title_madam +msgid "Madam" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PASTE" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_model +#: model:ir.model,name:base.model_ir_model +#: model:ir.ui.menu,name:base.ir_model_model_menu +msgid "Objects" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GOTO_FIRST" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%Y - Year with century as a decimal number." +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_form +#: model:ir.ui.menu,name:base.menu_workflow +msgid "Workflows" +msgstr "" + +#. module: base +#: field:ir.model.fields,model_id:0 +msgid "Object id" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%M - Minute as a decimal number [00,59]." +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +msgid "<" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_config_wizard_form +#: model:ir.ui.menu,name:base.menu_config_module +msgid "Configuration Wizard" +msgstr "" + +#. module: base +#: view:res.request.link:0 +msgid "Request Link" +msgstr "" + +#. module: base +#: field:wizard.module.lang.export,format:0 +msgid "File Format" +msgstr "" + +#. module: base +#: field:ir.module.module,url:0 +msgid "URL" +msgstr "" + +#. module: base +#: help:ir.actions.server,message:0 +msgid "Specify the Message, you can use the fields from the object. like `Dear [[ object.partner_id.name ]]`" +msgstr "" + +#. module: base +#: field:ir.report.custom,print_format:0 +msgid "Print format" +msgstr "" + +#. module: base +#: selection:res.config.view,view:0 +msgid "Simplified Interface" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_payterm_form +#: model:ir.model,name:base.model_res_payterm +#: view:res.payterm:0 +msgid "Payment term" +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 +#: selection:ir.ui.menu,icon:0 +msgid "terp-calendar" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-stock" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Get file" +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Work Days" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_roles +msgid "res.roles" +msgstr "" + +#. module: base +#: help:ir.cron,priority:0 +msgid "0=Very Urgent\n" +"10=Not urgent" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_model_data +msgid "ir.model.data" +msgstr "" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + +#. module: base +#: view:res.groups:0 +#: view:ir.model:0 +msgid "Access Rights" +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 +#: 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 +#: view:res.users:0 +msgid "Skip" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.act_menu_create +#: view:wizard.ir.model.menu.create:0 +msgid "Create Menu" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_RECORD" +msgstr "" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "child_of" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract_module +msgid "maintenance contract modules" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_workflow_root +msgid "Workflow Definitions" +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:ir.actions.act_window,name:base.grant_menu_access +#: model:ir.ui.menu,name:base.menu_grant_menu_access +msgid "Grant Access To Menus" +msgstr "" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Draft" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "Can not create the module file:\n %s" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,field_child1:0 +msgid "field child1" +msgstr "" + +#. module: base +#: wizard_field:res.partner.spam_send,init,subject:0 +#: field:ir.actions.server,subject:0 +#: field:res.request,name:0 +msgid "Subject" +msgstr "" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + +#. module: base +#: field:ir.rule.group,global:0 +msgid "Global" +msgstr "" + +#. module: base +#: field:res.request,act_from:0 +#: field:res.request.history,act_from:0 +msgid "From" +msgstr "" + +#. module: base +#: selection:res.partner.event,partner_type:0 +msgid "Retailer" +msgstr "" + +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "" + +#. module: base +#: view:res.request:0 +msgid "Send" +msgstr "" + +#. module: base +#: wizard_button:server.action.create,init,step_1:0 +msgid "Next" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_11 +msgid "Configuration Wizards" +msgstr "" + +#. module: base +#: selection:wizard.module.lang.export,format:0 +msgid "TGZ Archive" +msgstr "" + +#. module: base +#: selection:ir.model.fields,on_delete:0 +msgid "Set NULL" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-report" +msgstr "" + +#. module: base +#: field:res.partner.event,som:0 +#: field:res.partner.som,name:0 +msgid "State of Mind" +msgstr "" + +#. module: base +#: field:ir.actions.todo,type:0 +#: field:ir.actions.report.xml,report_type:0 +#: field:ir.server.object.lines,type:0 +#: field:ir.translation,type:0 +#: field:ir.values,key:0 +#: view:res.partner:0 +msgid "Type" +msgstr "" + +#. module: base +#: field:ir.model.fields,state:0 +#: field:ir.model,state:0 +msgid "Manualy Created" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Defined Reports" +msgstr "" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "Tabelarni" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_IN" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FILE" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_9 +msgid "Components Supplier" +msgstr "" + +#. module: base +#: view:ir.rule.group:0 +msgid "The rule is satisfied if all test are True (AND)" +msgstr "" + +#. module: base +#: wizard_view:module.upgrade,next:0 +msgid "Note that this operation my take a few minutes." +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Invalid operation" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_translation +#: view:ir.translation:0 +msgid "Translations" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,report_rml_content:0 +#: field:ir.actions.report.xml,report_rml_content_data:0 +msgid "RML content" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_model_grid +msgid "Objects Security Grid" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CONNECT" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SAVE_AS" +msgstr "" + +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Not Searchable" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DND" +msgstr "" + +#. module: base +#: field:ir.sequence,padding:0 +msgid "Number padding" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_OK" +msgstr "" + +#. module: base +#: code:report/report_sxw.py:0 +#, python-format +msgid "print" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "Password empty !" +msgstr "" + +#. module: base +#: field:res.company,rml_header:0 +msgid "RML Header" +msgstr "" + +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + +#. module: base +#: selection:ir.actions.server,state:0 +#: selection:workflow.activity,kind:0 +msgid "Dummy" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "None" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not write in this document! (%s)" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_workflow +msgid "workflow" +msgstr "" + +#. module: base +#: wizard_field:res.partner.sms_send,init,app_id:0 +msgid "API ID" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_module_category +#: view:ir.module.category:0 +msgid "Module Category" +msgstr "" + +#. module: base +#: field:ir.rule,operand:0 +msgid "Operand" +msgstr "" + +#. module: base +#: help:res.partner,supplier:0 +msgid "Check this box if the partner is a supplier. If it's not checked, purchase people will not see it when encoding a purchase order." +msgstr "" + +#. module: base +#: wizard_view:module.module.update,init:0 +msgid "Scan for new modules" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_module_repository +msgid "Module Repository" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Trigger Configuration" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNINDENT" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "At Once" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_security +msgid "Security" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Using a relation field which uses an unknown object" +msgstr "" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Write Object" +msgstr "" + +#. module: base +#: field:res.bank,street:0 +#: field:res.partner.address,street:0 +#: field:res.partner.bank,street:0 +msgid "Street" +msgstr "" + +#. module: base +#: field:ir.cron,interval_number:0 +msgid "Interval Number" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FIND" +msgstr "" + +#. module: base +#: selection:maintenance.contract,kind:0 +msgid "Partial" +msgstr "" + +#. module: base +#: view:ir.module.repository:0 +msgid "Repository" +msgstr "" + +#. module: base +#: field:res.users,action_id:0 +msgid "Home Action" +msgstr "" + +#. module: base +#: selection:res.request,priority:0 +msgid "Low" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "Recursion error in modules dependencies !" +msgstr "" + +#. module: base +#: view:ir.rule:0 +msgid "Manual domain setup" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,report_xsl:0 +msgid "XSL path" +msgstr "" + +#. module: base +#: field:res.groups,model_access:0 +#: model:ir.ui.menu,name:base.menu_security_access +#: view:ir.model.access:0 +#: view:res.groups:0 +msgid "Access Controls" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_wizard_module_lang_export +msgid "wizard.module.lang.export" +msgstr "" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +#: selection:ir.module.module,state:0 +msgid "Installed" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_function_form +#: model:ir.ui.menu,name:base.menu_partner_function_form +#: view:res.partner.function:0 +msgid "Partner Functions" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_currency +#: field:res.company,currency_id:0 +#: field:res.currency,name:0 +#: field:res.currency.rate,currency_id:0 +#: view:res.currency:0 +msgid "Currency" +msgstr "" + +#. module: base +#: field:res.partner.canal,name:0 +msgid "Channel Name" +msgstr "" + +#. module: base +#: help:ir.actions.server,action_id:0 +msgid "Select the Ation Window, Report, Wizard to be execute" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "5. %y, %Y ==> 08, 2008" +msgstr "" + +#. module: base +#: field:ir.values,res_id:0 +msgid "Object ID" +msgstr "" + +#. module: base +#: field:res.bank,street2:0 +#: field:res.partner.address,street2:0 +msgid "Street2" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,alignment:0 +msgid "Alignment" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_UNDO" +msgstr "" + +#. module: base +#: field:ir.attachment,create_date:0 +msgid "Date Created" +msgstr "" + +#. module: base +#: view:ir.attachment:0 +msgid "Attachment" +msgstr "" + +#. module: base +#: selection:ir.rule,operator:0 +msgid ">=" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_todo +msgid "ir.actions.todo" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_administration +msgid "Administration" +msgstr "" + +#. module: base +#: field:ir.sequence,number_next:0 +msgid "Next Number" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Seconde: %(sec)s" +msgstr "" + +#. module: base +#: wizard_view:module.module.update,init:0 +msgid "This function will check for new modules in the 'addons' path and on module repositories:" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_country +#: field:res.bank,country:0 +#: field:res.country.state,country_id:0 +#: field:res.partner.address,country_id:0 +#: field:res.partner.bank,country_id:0 +#: field:res.partner,country:0 +#: view:res.country:0 +msgid "Country" +msgstr "" + +#. module: base +#: field:res.currency,rate_ids:0 +#: view:res.currency:0 +msgid "Rates" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%W - Week number of the year (Monday as the first day of the week) as a decimal number [00,53]. All days in a new year preceding the first Monday are considered to be in week 0." +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_BACK" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#: code:osv/orm.py:0 +#, python-format +msgid "AccessError" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "======================================================" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%x - Appropriate date representation." +msgstr "" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Validated" +msgstr "" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Bar Chart" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_model_config +msgid "ir.model.config" +msgstr "" + +#. module: base +#: field:ir.module.module,website:0 +#: field:res.partner,website:0 +msgid "Website" +msgstr "" + +#. module: base +#: field:ir.model.fields,selection:0 +msgid "Field Selection" +msgstr "" + +#. module: base +#: field:ir.rule.group,rules:0 +msgid "Tests" +msgstr "" + +#. module: base +#: field:ir.sequence,number_increment:0 +msgid "Increment Number" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,operation:0 +#: field:ir.ui.menu,icon_pict:0 +#: field:wizard.module.lang.export,state:0 +msgid "unknown" +msgstr "" + +#. module: base +#: field:ir.ui.view_sc,res_id:0 +msgid "Resource Ref." +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_FILL" +msgstr "" + +#. module: base +#: selection:res.request,state:0 +msgid "draft" +msgstr "" + +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "" + +#. module: base +#: field:res.currency.rate,name:0 +#: field:res.partner,date:0 +#: field:res.partner.event,date:0 +#: field:res.request,date_sent:0 +msgid "Date" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,report_sxw:0 +msgid "SXW path" +msgstr "" + +#. module: base +#: view:ir.attachment:0 +msgid "Data" +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 +msgid "RML" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_ERROR" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_category +#: model:ir.ui.menu,name:base.menu_partner_category_main +msgid "Partners by Categories" +msgstr "" + +#. module: base +#: view:ir.rule.group:0 +msgid "Multiple rules on same objects are joined using operator OR" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Action to Launch" +msgstr "" + +#. module: base +#: wizard_field:module.lang.install,init,lang:0 +#: field:ir.translation,lang:0 +#: field:res.partner,lang:0 +#: field:res.users,context_lang:0 +#: field:wizard.module.lang.export,lang:0 +#: field:wizard.module.update_translations,lang:0 +msgid "Language" +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 +msgid "XSL" +msgstr "" + +#. module: base +#: field:ir.module.module,demo:0 +msgid "Demo data" +msgstr "" + +#. module: base +#: wizard_view:base.module.import,import:0 +#: wizard_view:base.module.import,init:0 +msgid "Module import" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_company_form +#: model:ir.ui.menu,name:base.menu_action_res_company_form +#: view:res.company:0 +msgid "Companies" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_supplier_form +#: model:ir.ui.menu,name:base.menu_partner_supplier_form +msgid "Suppliers Partners" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_sequence_type +msgid "ir.sequence.type" +msgstr "" + +#. module: base +#: field:ir.actions.wizard,type:0 +msgid "Action type" +msgstr "" + +#. module: base +#: selection:wizard.module.lang.export,format:0 +msgid "CSV File" +msgstr "" + +#. module: base +#: field:res.company,parent_id:0 +msgid "Parent 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 +#: field:ir.module.category,module_nr:0 +msgid "# of Modules" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PLAY" +msgstr "" + +#. module: base +#: field:ir.model.data,date_init:0 +msgid "Init Date" +msgstr "" + +#. module: base +#: field:res.company,rml_header2:0 +msgid "RML Internal Header" +msgstr "" + +#. module: base +#: selection:ir.model,state:0 +msgid "Base Object" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-crm" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_STRIKETHROUGH" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +msgid "(year)=" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Dependencies :" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Features" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-partner" +msgstr "" + +#. module: base +#: field:ir.attachment,create_uid:0 +msgid "Creator" +msgstr "" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "You cannot perform this operation." +msgstr "" + +#. module: base +#: field:ir.actions.server,code:0 +#: selection:ir.actions.server,state:0 +#: view:ir.actions.server:0 +msgid "Python Code" +msgstr "" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "Bad query." +msgstr "" + +#. module: base +#: field:ir.model.fields,field_description:0 +msgid "Field Label" +msgstr "" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "You try to bypass an access rule (Document type: %s)." +msgstr "" + +#. module: base +#: field:ir.actions.url,url:0 +msgid "Action Url" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_INDEX" +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 "Struktura kompanije" + +#. 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.actions.server,condition:0 +#: field:ir.report.custom.fields,fc0_condition:0 +#: field:workflow.transition,condition:0 +msgid "Condition" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_customer_form +#: model:ir.ui.menu,name:base.menu_partner_customer_form +msgid "Customers Partners" +msgstr "" + +#. module: base +#: wizard_button:res.partner.spam_send,init,end:0 +#: wizard_button:res.partner.sms_send,init,end:0 +#: wizard_button:base.module.import,init,end:0 +#: wizard_button:module.lang.import,init,end:0 +#: wizard_button:module.lang.install,init,end:0 +#: wizard_button:module.module.update,init,end:0 +#: wizard_button:module.upgrade,next,end:0 +#: selection:ir.actions.todo,state:0 +#: view:wizard.ir.model.menu.create:0 +#: view:wizard.module.lang.export:0 +#: view:wizard.module.update_translations:0 +msgid "Cancel" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_users +msgid "res.users" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_management +msgid "Modules Management" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_actions.py:0 +#, python-format +msgid "Please specify server option --smtp-from !" +msgstr "" + +#. module: base +#: field:workflow.transition,act_from:0 +msgid "Source Activity" +msgstr "" + +#. module: base +#: field:ir.model.data,res_id:0 +#: field:ir.translation,res_id:0 +#: field:workflow.instance,res_id:0 +#: field:workflow.triggers,res_id:0 +msgid "Resource ID" +msgstr "" + +#. module: base +#: field:ir.model,info:0 +#: view:maintenance.contract:0 +msgid "Information" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_exports +msgid "ir.exports" +msgstr "" + +#. module: base +#: field:workflow.activity,flow_start:0 +msgid "Flow Start" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MISSING_IMAGE" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,bgcolor:0 +msgid "Background Color" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REMOVE" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,report_rml:0 +msgid "RML path" +msgstr "" + +#. module: base +#: field:ir.actions.configuration.wizard,item_id:0 +msgid "Next Configuration Wizard" +msgstr "" + +#. module: base +#: field:workflow.workitem,inst_id:0 +msgid "Instance" +msgstr "" + +#. module: base +#: field:ir.values,meta:0 +#: field:ir.values,meta_unpickle:0 +msgid "Meta Datas" +msgstr "" + +#. module: base +#: help:res.currency,rate:0 +#: help:res.currency.rate,rate:0 +msgid "The rate of the currency to the currency of rate 1" +msgstr "" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "raw" +msgstr "" + +#. module: base +#: code:addons/base/res/partner/partner.py:0 +#, python-format +msgid "Partners: " +msgstr "" + +#. module: base +#: selection:ir.actions.todo,type:0 +#: selection:res.partner.address,type:0 +msgid "Other" +msgstr "" + +#. module: base +#: help:ir.actions.server,record_id:0 +msgid "Provide the field name from where the record id stores after the create operations, if its empty, you can not track the new record" +msgstr "" + +#. module: base +#: field:ir.ui.view,field_parent:0 +msgid "Childs Field" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "" + +#. module: base +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "Can not remove root user!" +msgstr "" + +#. module: base +#: field:ir.module.module,latest_version:0 +msgid "Installed version" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "9. %j ==> 340" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_activity_form +#: field:workflow,activities:0 +#: model:ir.ui.menu,name:base.menu_workflow_activity +#: view:workflow:0 +msgid "Activities" +msgstr "" + +#. module: base +#: field:ir.model.config,password_check:0 +msgid "confirmation" +msgstr "potvrda" + +#. module: base +#: field:res.partner,user_id:0 +msgid "Dedicated Salesman" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_users +#: field:ir.actions.todo,users_id:0 +#: field:ir.default,uid:0 +#: field:ir.rule.group,users:0 +#: field:res.groups,users:0 +#: field:res.roles,users:0 +#: model:ir.ui.menu,name:base.menu_action_res_users +#: model:ir.ui.menu,name:base.menu_users +#: view:res.groups:0 +#: view:res.users:0 +msgid "Users" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_wizard_lang_export +#: model:ir.ui.menu,name:base.menu_wizard_lang_export +msgid "Export a Translation File" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_report_xml +#: model:ir.ui.menu,name:base.menu_ir_action_report_xml +msgid "Report Xml" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + +#. module: base +#: help:res.partner,user_id:0 +msgid "The internal user that is in charge of communicating with this partner if any." +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard View" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Cancel Upgrade" +msgstr "" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,attachment:0 +msgid "Save As Attachment Prefix" +msgstr "" + +#. module: base +#: field:ir.cron,nextcall:0 +msgid "Next call date" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,cumulate:0 +msgid "Cumulate" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_14 +msgid "Bad customers" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +#: selection:ir.rule,operator:0 +msgid "=" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Pie charts need exactly two fields" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_bank +#: field:res.partner.bank,bank:0 +#: view:res.bank:0 +msgid "Bank" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HARDDISK" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + +#. module: base +#: code:tools/translate.py:0 +#, python-format +msgid "Bad file format" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +#: field:ir.actions.todo,name:0 +#: field:ir.actions.report.xml,name:0 +#: field:ir.cron,name:0 +#: field:ir.model.access,name:0 +#: field:ir.model.fields,name:0 +#: field:ir.module.category,name:0 +#: field:ir.module.module.dependency,name:0 +#: field:ir.module.module,name:0 +#: field:ir.module.repository,name:0 +#: field:ir.property,name:0 +#: field:ir.report.custom.fields,name:0 +#: field:ir.rule.group,name:0 +#: field:ir.values,name:0 +#: field:maintenance.contract.module,name:0 +#: field:res.bank,name:0 +#: field:res.config.view,name:0 +#: field:res.lang,name:0 +#: field:res.partner.bank.type,name:0 +#: field:res.partner.category,complete_name:0 +#: field:res.partner,name:0 +#: field:res.request.link,name:0 +#: field:res.users,name:0 +#: field:workflow.activity,name:0 +#: field:workflow,name:0 +msgid "Name" +msgstr "" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_lang_install +#: model:ir.ui.menu,name:base.menu_wizard_lang_install +msgid "Load an Official Translation" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_APPLY" +msgstr "" + +#. module: base +#: field:ir.module.module,reports_by_module:0 +msgid "Reports" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_maintenance_contract_form +#: model:ir.ui.menu,name:base.menu_maintenance_contract +msgid "Your Maintenance Contracts" +msgstr "" + +#. module: base +#: field:workflow,on_create:0 +msgid "On Create" +msgstr "" + +#. module: base +#: wizard_view:base.module.import,init:0 +msgid "Please give your module .ZIP file to import." +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLOSE" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PAUSE" +msgstr "" + +#. module: base +#: code:addons/base/module/wizard/wizard_module_import.py:0 +#, python-format +msgid "Error !" +msgstr "" + +#. module: base +#: wizard_field:res.partner.sms_send,init,user:0 +#: field:res.users,login:0 +msgid "Login" +msgstr "" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-2" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Portugese (BR) / português (BR)" +msgstr "" + +#. module: base +#: field:ir.translation,value:0 +msgid "Translation Value" +msgstr "" + +#. module: base +#: help:wizard.module.lang.export,lang:0 +msgid "To export a new language, do not select a language." +msgstr "" + +#. module: base +#: field:ir.actions.server,record_id:0 +msgid "Create Id" +msgstr "" + +#. module: base +#: field:maintenance.contract,module_ids:0 +#: view:maintenance.contract:0 +msgid "Covered Modules" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Average" +msgstr "" + +#. module: base +#: field:res.users,context_tz:0 +msgid "Timezone" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_grid_security +#: model:ir.ui.menu,name:base.menu_ir_access_grid +msgid "Access Controls Grid" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_actions +#: model:ir.ui.menu,name:base.menu_custom_action +#: model:ir.ui.menu,name:base.menu_ir_sequence_actions +#: model:ir.ui.menu,name:base.next_id_6 +msgid "Actions" +msgstr "" + +#. module: base +#: selection:res.request,priority:0 +msgid "High" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_instance_form +#: model:ir.ui.menu,name:base.menu_workflow_instance +msgid "Instances" +msgstr "" + +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_COPY" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Auto" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_3 +msgid "Starter Partner" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_request_link +msgid "res.request.link" +msgstr "" + +#. module: base +#: wizard_button:module.module.update,init,update:0 +msgid "Check new modules" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window_view +msgid "ir.actions.act_window.view" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Web" +msgstr "" + +#. module: base +#: help:res.bank,bic:0 +msgid "Bank Identifier Code" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CDROM" +msgstr "" + +#. module: base +#: field:workflow.activity,action:0 +msgid "Python Action" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIRECTORY" +msgstr "" + +#. module: base +#: field:res.partner.event,planned_revenue:0 +msgid "Planned Revenue" +msgstr "" + +#. module: base +#: view:ir.rule.group:0 +msgid "Record rules" +msgstr "" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "You have to import a .CSV file wich is encoded in UTF-8. Please check that the first line of your file is one of the following:" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,groupby:0 +msgid "Group by" +msgstr "" + +#. module: base +#: field:ir.model.fields,readonly:0 +#: field:res.partner.bank.type.field,readonly:0 +msgid "Readonly" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not remove the field '%s' !" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ITALIC" +msgstr "" + +#. module: base +#: help:ir.actions.report.xml,header:0 +msgid "Add or not the coporate RML header" +msgstr "" + +#. module: base +#: field:res.currency,accuracy:0 +msgid "Computational Accuracy" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_wizard +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.wizard" +msgstr "" + +#. module: base +#: field:res.partner.event,document:0 +msgid "Document" +msgstr "" + +#. module: base +#: field:res.partner.event,type:0 +msgid "Type of Event" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REFRESH" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_sequence_type +#: model:ir.ui.menu,name:base.menu_ir_sequence_type +msgid "Sequence Types" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_STOP" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, 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 +#: field:res.partner.bank,acc_number:0 +msgid "Account number" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_wizard_ir_model_menu_create_line +msgid "wizard.ir.model.menu.create.line" +msgstr "" + +#. module: base +#: field:ir.attachment,res_id:0 +msgid "Attached ID" +msgstr "" + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Purchase Offer" +msgstr "" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +#: selection:ir.module.module,state:0 +msgid "To be installed" +msgstr "" + +#. module: base +#: view:wizard.module.update_translations:0 +msgid "Update" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Day: %(day)s" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not read this document! (%s)" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_FIND_AND_REPLACE" +msgstr "" + +#. module: base +#: field:res.request,history:0 +#: view:res.request:0 +#: view:res.partner:0 +msgid "History" +msgstr "" + +#. module: base +#: help:ir.actions.server,write_id:0 +msgid "Provide the field name from where the record id refer for the write operation, if its empty it will refer to the active id of the object" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_WARNING" +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 all the version number.\n" +"- The last parenthesis must match the extension of the module." +msgstr "" + +#. module: base +#: model:ir.actions.report.xml,name:base.ir_module_reference_print +msgid "Technical guide" +msgstr "" + +#. module: base +#: field:ir.server.object.lines,col1:0 +msgid "Destination" +msgstr "" + +#. module: base +#: help:ir.values,res_id:0 +msgid "Keep 0 if the action must appear on all resources." +msgstr "" + +#. module: base +#: field:ir.cron,interval_type:0 +msgid "Interval Unit" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CONVERT" +msgstr "" + +#. module: base +#: field:ir.exports,name:0 +msgid "Export name" +msgstr "" + +#. module: base +#: help:ir.model.fields,on_delete:0 +msgid "On delete property for many2one fields" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_rule +msgid "ir.rule" +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Days" +msgstr "" + +#. module: base +#: field:ir.property,value:0 +#: selection:ir.server.object.lines,type:0 +#: field:ir.server.object.lines,value:0 +#: field:ir.values,value:0 +#: field:ir.values,value_unpickle:0 +msgid "Value" +msgstr "" + +#. module: base +#: field:ir.actions.server,write_id:0 +msgid "Write Id" +msgstr "" + +#. module: base +#: field:ir.default,field_name:0 +msgid "Object field" +msgstr "" + +#. module: base +#: view:wizard.module.update_translations:0 +msgid "Update Translations" +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,width:0 +msgid "Fixed Width" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Other Actions Configuration" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Get Max" +msgstr "Uzmi najveći" + +#. module: base +#: field:res.company,rml_footer1:0 +msgid "Report Footer 1" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_EXECUTE" +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Minutes" +msgstr "" + +#. module: base +#: wizard_view:module.upgrade,start:0 +#: wizard_view:module.upgrade,end:0 +msgid "The modules have been upgraded / installed !" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,domain:0 +msgid "Domain Value" +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 +#: view:wizard.module.lang.export:0 +msgid "Help" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "Some installed modules depends on the module you plan to desinstall :\n %s" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.res_request_link-act +#: model:ir.ui.menu,name:base.menu_res_request_link_act +msgid "Accepted Links in Requests" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_YES" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "SMS Configuration" +msgstr "" + +#. module: base +#: model:ir.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 +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_access_act +#: model:ir.ui.menu,name:base.menu_ir_access_act +msgid "Access Controls List" +msgstr "" + +#. module: base +#: help:ir.rule.group,global:0 +msgid "Make the rule global or it needs to be put on a group or user" +msgstr "" + +#. module: base +#: code:tools/amount_to_text_en.py:0 +#, python-format +msgid "Number too large '%d', can not translate it" +msgstr "" + +#. module: base +#: field:ir.actions.wizard,wiz_name:0 +msgid "Wizard name" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_report_custom +#: model:ir.ui.menu,name:base.menu_ir_action_report_custom +msgid "Report Custom" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Schedule for Installation" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "" + +#. module: base +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "" + +#. module: base +#: help:ir.actions.server,condition:0 +msgid "Condition that is to be test before execute action, i.e : object.list_price > object.cost_price" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "7. %H:%M:%S ==> 18:25:20" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_form +#: model:ir.ui.menu,name:base.menu_base_partner +#: model:ir.ui.menu,name:base.menu_partner_form +#: view:res.partner:0 +msgid "Partners" +msgstr "" + +#. module: base +#: field:ir.attachment,res_model:0 +msgid "Attached Model" +msgstr "" + +#. module: base +#: field:ir.actions.server,trigger_name:0 +msgid "Trigger Name" +msgstr "" + +#. module: base +#: wizard_button:server.action.create,step_1,create:0 +msgid "Create" +msgstr "" + +#. module: base +#: code:addons/base/res/res_user.py:0 +#, python-format +msgid "The name of the group can not start with \"-\"" +msgstr "" + +#. module: base +#: wizard_view:module.upgrade,start:0 +#: wizard_view:module.upgrade,end:0 +msgid "We suggest you to reload the menu tab (Ctrl+t Ctrl+r)." +msgstr "" + +#. module: base +#: field:res.partner.title,shortcut:0 +#: view:ir.ui.view_sc:0 +msgid "Shortcut" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_model_access +msgid "ir.model.access" +msgstr "" + +#. module: base +#: field:ir.cron,priority:0 +#: field:ir.ui.view,priority:0 +#: field:res.request.link,priority:0 +#: field:res.request,priority:0 +msgid "Priority" +msgstr "" + +#. module: base +#: field:ir.translation,src:0 +msgid "Source" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title_contact +#: model:ir.ui.menu,name:base.menu_partner_title_contact +msgid "Contacts Titles" +msgstr "" + +#. module: base +#: help:res.partner.address,partner_id:0 +msgid "Keep empty for a private address, not related to partner." +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard Button" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Legend (for prefix, suffix)" +msgstr "" + +#. module: base +#: field:workflow.activity,flow_stop:0 +msgid "Flow Stop" +msgstr "" + +#. module: base +#: selection:ir.server.object.lines,type:0 +msgid "Formula" +msgstr "" + +#. module: base +#: view:res.company:0 +msgid "Internal Header/Footer" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_LEFT" +msgstr "" + +#. module: base +#: view:res.partner.bank:0 +msgid "Bank account owner" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.act_values_form +#: model:ir.ui.menu,name:base.menu_values_form +msgid "Client Actions Connections" +msgstr "" + +#. module: base +#: field:ir.ui.view,name:0 +msgid "View Name" +msgstr "" + +#. module: base +#: field:ir.ui.view_sc,resource:0 +msgid "Resource Name" +msgstr "" + +#. module: base +#: code:addons/base/module/wizard/wizard_export_lang.py:0 +#, python-format +msgid "Save this document to a .tgz file. This archive containt UTF-8 %s files and may be uploaded to launchpad." +msgstr "" + +#. module: base +#: field:ir.model.fields,translate:0 +msgid "Translate" +msgstr "" + +#. module: base +#: field:res.partner.address,type:0 +msgid "Address Type" +msgstr "" + +#. module: base +#: wizard_button:module.upgrade,start,config:0 +#: wizard_button:module.upgrade,end,config:0 +msgid "Start configuration" +msgstr "" + +#. module: base +#: field:ir.module.category,child_ids:0 +#: field:ir.module.category,parent_id:0 +#: field:res.partner.category,parent_id:0 +msgid "Parent Category" +msgstr "Izvorna kategorija" + +#. module: base +#: field:ir.exports,export_fields:0 +msgid "Export Id" +msgstr "" + +#. module: base +#: help:ir.actions.server,expression:0 +msgid "enter the field/expression that will return the list, i.e. select the sale order in Object, and we can have loop on sales order line. Expression = `object.order_line`" +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Hours" +msgstr "" + +#. module: base +#: field:ir.report.custom,frequency:0 +msgid "Frequency" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Catalan / Català" +msgstr "" + +#. module: base +#: view:res.request:0 +msgid "End of Request" +msgstr "" + +#. module: base +#: view:res.request:0 +msgid "References" +msgstr "" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "This record was modified in the meanwhile" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%U - Week number of the year (Sunday as the first day of the week) as a decimal number [00,53]. All days in a new year preceding the first Sunday are considered to be in week 0." +msgstr "" + +#. module: base +#: wizard_view:module.lang.install,init:0 +msgid "Note that this operation may take a few minutes." +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_COLOR_PICKER" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-product" +msgstr "" + +#. module: base +#: field:res.request,act_to:0 +#: field:res.request.history,act_to:0 +msgid "To" +msgstr "" + +#. module: base +#: field:maintenance.contract,kind:0 +#: field:workflow.activity,kind:0 +msgid "Kind" +msgstr "" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Tree can only be used in tabular reports" +msgstr "" + +#. module: base +#: selection:ir.actions.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:res.partner.bank:0 +msgid "Bank accounts" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,start_on:0 +msgid "Manual" +msgstr "" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "Could you check your contract information ?" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_CLEAR" +msgstr "" + +#. module: base +#: help:res.users,password:0 +msgid "Keep empty if you don't want the user to be able to connect on the system." +msgstr "" + +#. module: base +#: field:ir.model.access,perm_read:0 +msgid "Read Access" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Directory" +msgstr "" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Line Plot" +msgstr "" + +#. module: base +#: field:res.lang,thousands_sep:0 +msgid "Thousands Separator" +msgstr "" + +#. module: base +#: selection:ir.model.fields,state:0 +msgid "Custom Field" +msgstr "" + +#. module: base +#: field:ir.model.fields,relation_field:0 +msgid "Relation Field" +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 +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Spanish / Español" +msgstr "" + +#. module: base +#: field:ir.report.custom.fields,fontcolor:0 +msgid "Font color" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_server_action +#: model:ir.ui.menu,name:base.menu_server_action +#: view:ir.actions.server:0 +msgid "Server Actions" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Chinese (TW) / 正體字" +msgstr "" + +#. module: base +#: field:ir.model.fields,view_load:0 +msgid "View Auto-Load" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_UP" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SORT_DESCENDING" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_request +msgid "res.request" +msgstr "" + +#. module: base +#: field:res.groups,rule_groups:0 +#: field:res.users,rules_id:0 +#: view:res.groups:0 +msgid "Rules" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title +#: model:ir.ui.menu,name:base.menu_partner_title +msgid "Titles" +msgstr "" + +#. module: base +#: wizard_view:module.upgrade,start:0 +#: wizard_view:module.upgrade,end:0 +msgid "System upgrade done" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,view_type:0 +#: field:ir.actions.act_window.view,view_mode:0 +msgid "Type of view" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Client Action Configuration" +msgstr "" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "pdf" +msgstr "" + +#. module: base +#: field:ir.actions.todo,start_date:0 +msgid "Start Date" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_address_form +#: model:ir.model,name:base.model_res_partner_address +#: view:res.partner.address:0 +msgid "Partner Addresses" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,report_xml:0 +msgid "XML path" +msgstr "" + +#. module: base +#: field:ir.default,company_id:0 +#: field:ir.property,company_id:0 +#: field:ir.values,company_id:0 +#: field:res.users,company_id:0 +#: view:res.company:0 +msgid "Company" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PROPERTIES" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_11 +msgid "Textile Suppliers" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "The official translations pack of all OpenERP/OpenObjects module are managed through launchpad. We use their online interface to synchronize all translations efforts." +msgstr "" + +#. module: base +#: field:ir.report.custom,title:0 +msgid "Report title" +msgstr "" + +#. module: base +#: field:ir.attachment,datas:0 +msgid "File Content" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Uninstall (beta)" +msgstr "" + +#. module: base +#: selection:ir.actions.url,target:0 +#: selection:ir.actions.act_window,target:0 +msgid "New Window" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Second field should be figures" +msgstr "" + +#. module: base +#: selection:res.partner.event,partner_type:0 +msgid "Commercial Prospect" +msgstr "" + +#. module: base +#: model:ir.actions.todo,note:base.config_wizard_step_user +msgid "Create your users.\n" +"You will be able to assign groups to users. Groups define the access rights of each users on the different objects of the system.\n" +" " +msgstr "" + +#. module: base +#: 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 +#: selection:ir.report.custom,state:0 +msgid "Unsubscribed" +msgstr "" + +#. module: base +#: wizard_field:module.module.update,update,update:0 +msgid "Number of modules updated" +msgstr "" + +#. module: base +#: view:ir.attachment:0 +msgid "Preview" +msgstr "" + +#. module: base +#: view:ir.actions.configuration.wizard:0 +msgid "Skip Step" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.act_res_partner_event +#: field:res.partner.event,name:0 +#: field:res.partner,events:0 +msgid "Events" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_roles +#: model:ir.ui.menu,name:base.menu_action_res_roles +msgid "Roles Structure" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_url +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.url" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_STOP" +msgstr "" + +#. module: base +#: field:wizard.ir.model.menu.create,name:0 +msgid "Menu Name" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.res_partner_event_type-act +#: model:ir.ui.menu,name:base.menu_res_partner_event_type-act +msgid "Active Partner Events" +msgstr "" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + +#. module: base +#: help:ir.actions.server,srcmodel_id:0 +msgid "In which object you want to create / write the object if its empty refer to the Object field" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Define New Users" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_rule +#: model:ir.ui.menu,name:base.menu_action_rule +msgid "Record Rules" +msgstr "" + +#. module: base +#: field:res.config.view,view:0 +msgid "View Mode" +msgstr "" + +#. module: base +#: wizard_field:module.module.update,update,add:0 +msgid "Number of modules added" +msgstr "" + +#. module: base +#: field:res.bank,phone:0 +#: field:res.partner.address,phone:0 +msgid "Phone" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Day of the year: %(doy)s" +msgstr "" + +#. module: base +#: help:ir.actions.wizard,multi:0 +msgid "If set to true, the wizard will not be displayed on the right toolbar of a form views." +msgstr "" + +#. module: base +#: field:workflow.transition,role_id:0 +msgid "Role Required" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_groups +#: field:ir.actions.todo,groups_id:0 +#: field:ir.actions.report.xml,groups_id:0 +#: field:ir.actions.act_window,groups_id:0 +#: field:ir.actions.wizard,groups_id:0 +#: field:ir.model.fields,groups:0 +#: field:ir.rule.group,groups:0 +#: field:ir.ui.menu,groups_id:0 +#: field:res.users,groups_id:0 +#: model:ir.ui.menu,name:base.menu_action_res_groups +#: view:res.groups:0 +#: view:res.users:0 +msgid "Groups" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_SPELL_CHECK" +msgstr "" + +#. module: base +#: field:ir.actions.todo,active:0 +#: field:ir.cron,active:0 +#: field:ir.module.repository,active:0 +#: field:ir.sequence,active:0 +#: field:res.bank,active:0 +#: field:res.currency,active:0 +#: field:res.lang,active:0 +#: field:res.partner,active:0 +#: field:res.partner.address,active:0 +#: field:res.partner.canal,active:0 +#: field:res.partner.category,active:0 +#: field:res.partner.event.type,active:0 +#: field:res.request,active:0 +#: field:res.users,active:0 +msgid "Active" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "" + +#. module: base +#: field:ir.ui.view.custom,ref_id:0 +msgid "Orignal View" +msgstr "" + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Sale Opportunity" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,fc0_op:0 +#: selection:ir.report.custom.fields,fc1_op:0 +#: selection:ir.report.custom.fields,fc2_op:0 +#: selection:ir.report.custom.fields,fc3_op:0 +msgid ">" +msgstr "" + +#. module: base +#: field:workflow.triggers,workitem_id:0 +msgid "Workitem" +msgstr "" + +#. module: base +#: model:res.partner.bank.type.field,name:base.bank_normal_field_contry +msgid "country_id" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%A - Full weekday name." +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_AUTHENTICATION" +msgstr "" + +#. module: base +#: view:ir.actions.act_window:0 +msgid "Open a Window" +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Groups are used to defined access rights on each screen and menu." +msgstr "" + +#. module: base +#: selection:ir.cron,interval_type:0 +msgid "Months" +msgstr "" + +#. module: base +#: field:workflow.activity,signal_send:0 +msgid "Signal (subflow.*)" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ZOOM_OUT" +msgstr "" + +#. module: base +#: help:ir.actions.server,model_id:0 +msgid "select the obect on which the action will work (read, write, create)" +msgstr "" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +#: selection:ir.module.module,state:0 +msgid "To be removed" +msgstr "" + +#. module: base +#: field:res.partner.category,child_ids:0 +msgid "Childs Category" +msgstr "" + +#. module: base +#: field:ir.model.fields,model:0 +#: field:ir.model.grid,model:0 +#: field:ir.model,model:0 +#: field:ir.model,name:0 +#: field:ir.values,model:0 +msgid "Object Name" +msgstr "" + +#. module: base +#: field:ir.actions.todo,action_id:0 +#: field:ir.actions.act_window.view,act_window_id:0 +#: field:ir.ui.menu,action:0 +#: field:ir.values,action_id:0 +#: selection:ir.values,key:0 +#: view:ir.actions.actions:0 +msgid "Action" +msgstr "" + +#. module: base +#: field:ir.rule,domain_force:0 +msgid "Force Domain" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Email Configuration" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_cron +msgid "ir.cron" +msgstr "" + +#. module: base +#: selection:workflow.activity,join_mode:0 +#: selection:workflow.activity,split_mode:0 +msgid "And" +msgstr "" + +#. module: base +#: field:ir.model.fields,relation:0 +msgid "Object Relation" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_attachment +#: model:ir.ui.menu,name:base.menu_action_attachment +#: view:ir.attachment:0 +msgid "Attachments" +msgstr "" + +#. module: base +#: field:ir.rule,field_id:0 +#: selection:ir.translation,type:0 +msgid "Field" +msgstr "" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Validate" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract_wizard +msgid "maintenance.contract.wizard" +msgstr "" + +#. module: base +#: help:ir.actions.server,code:0 +msgid "python code to be execute" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PRINT" +msgstr "" + +#. module: base +#: field:ir.actions.wizard,multi:0 +msgid "Action on multiple doc." +msgstr "" + +#. module: base +#: field:res.partner,child_ids:0 +#: field:res.request,ref_partner_id:0 +msgid "Partner Ref." +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_report_custom_fields +msgid "ir.report.custom.fields" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Cancel Uninstall" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.act_window" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-mrp" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,state:0 +msgid "Done" +msgstr "" + +#. module: base +#: field:ir.actions.server,trigger_obj_id:0 +msgid "Trigger On" +msgstr "" + +#. module: base +#: selection:res.partner.address,type:0 +msgid "Invoice" +msgstr "" + +#. module: base +#: help:ir.actions.report.custom,multi:0 +#: help:ir.actions.report.xml,multi:0 +#: help:ir.actions.act_window.view,multi:0 +msgid "If set to true, the action will not be displayed on the right toolbar of a form views." +msgstr "" + +#. module: base +#: wizard_view:module.upgrade,start:0 +#: wizard_view:module.upgrade,end:0 +msgid "You may have to reinstall some language pack." +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_currency_rate +msgid "Currency Rate" +msgstr "" + +#. module: base +#: field:ir.model.access,perm_write:0 +msgid "Write Access" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export done" +msgstr "" + +#. module: base +#: field:ir.cron,args:0 +msgid "Arguments" +msgstr "" + +#. module: base +#: field:res.bank,city:0 +#: field:res.partner.address,city:0 +#: field:res.partner.bank,city:0 +#: field:res.partner,city:0 +msgid "City" +msgstr "" + +#. module: base +#: field:res.company,child_ids:0 +msgid "Childs Company" +msgstr "" + +#. module: base +#: constraint:ir.model:0 +msgid "The Object name must start with x_ and not contain any special character !" +msgstr "" + +#. module: base +#: field:ir.actions.configuration.wizard,name:0 +msgid "Next Wizard" +msgstr "" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "<>" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_menu_admin +#: field:ir.report.custom,menu_id:0 +#: field:ir.ui.menu,name:0 +#: view:ir.ui.menu:0 +msgid "Menu" +msgstr "" + +#. module: base +#: selection:ir.rule,operator:0 +msgid "<=" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export Data" +msgstr "" + +#. module: base +#: field:workflow.triggers,instance_id:0 +msgid "Destination Instance" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Estonian / Eesti keel" +msgstr "" + +#. module: base +#: field:ir.module.module,menus_by_module:0 +#: view:res.groups:0 +msgid "Menus" +msgstr "" + +#. module: base +#: 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 +#: field:ir.report.custom,field_parent:0 +msgid "Child Field" +msgstr "" + +#. module: base +#: model:res.partner.title,name:base.res_partner_title_sir +msgid "Sir" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "https://translations.launchpad.net/openobject" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Portugese / português" +msgstr "" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3 or later version" +msgstr "" + +#. module: base +#: field:ir.actions.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.act_window,usage:0 +msgid "Action Usage" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_HOME" +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.actions.server,child_ids:0 +msgid "Others Actions" +msgstr "" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_server_action_create +msgid "Create Action" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_workflow_workitem +msgid "workflow.workitem" +msgstr "" + +#. module: base +#: field:ir.ui.view_sc,name:0 +msgid "Shortcut Name" +msgstr "" + +#. module: base +#: selection:ir.module.module,state:0 +msgid "Not Installable" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "" + +#. module: base +#: field:res.partner.address,mobile:0 +msgid "Mobile" +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 +#: selection:ir.actions.report.xml,report_type:0 +msgid "html" +msgstr "" + +#. module: base +#: field:ir.report.custom,repeat_header:0 +msgid "Repeat Header" +msgstr "" + +#. module: base +#: field:res.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 +#: model:ir.actions.act_window,name:base.action_config_user_form +#: view:res.users:0 +msgid "Configure User" +msgstr "" + +#. module: base +#: help:res.country,name:0 +msgid "The full name of the country." +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUMP_TO" +msgstr "" + +#. module: base +#: field:ir.ui.menu,child_id:0 +msgid "Child ids" +msgstr "" + +#. module: base +#: field:ir.actions.todo,end_date:0 +msgid "End Date" +msgstr "" + +#. module: base +#: field:ir.exports,resource:0 +#: field:ir.property,res_id:0 +msgid "Resource" +msgstr "" + +#. module: base +#: field:ir.actions.server,email:0 +msgid "Email Address" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-tools" +msgstr "" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Iteration" +msgstr "" + +#. module: base +#: view:ir.actions.report.xml:0 +msgid "Report xml" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_module_open_categ +#: model:ir.actions.act_window,name:base.open_module_tree +#: field:wizard.module.lang.export,modules:0 +#: model:ir.ui.menu,name:base.menu_module_tree +#: view:ir.module.module:0 +msgid "Modules" +msgstr "" + +#. module: base +#: selection:workflow.activity,kind:0 +#: field:workflow.activity,subflow_id:0 +#: field:workflow.workitem,subflow_id:0 +msgid "Subflow" +msgstr "" + +#. module: base +#: help:res.partner,vat:0 +msgid "Value Added Tax number" +msgstr "" + +#. module: base +#: field:maintenance.contract,name:0 +#: field:maintenance.contract.wizard,name:0 +msgid "Contract ID" +msgstr "" + +#. module: base +#: view:ir.values:0 +msgid "Values" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DIALOG_INFO" +msgstr "" + +#. module: base +#: field:workflow.transition,signal:0 +msgid "Signal (button Name)" +msgstr "" + +#. module: base +#: field:res.company,logo:0 +msgid "Logo" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_res_bank_form +#: field:res.partner,bank_ids:0 +#: model:ir.ui.menu,name:base.menu_action_res_bank_form +#: view:res.bank:0 +msgid "Banks" +msgstr "" + +#. module: base +#: field:ir.cron,numbercall:0 +msgid "Number of calls" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-sale" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Field Mappings" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%d - Day of the month as a decimal number [01,31]." +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%I - Hour (12-hour clock) as a decimal number [01,12]." +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Romanian / limba română" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ADD" +msgstr "" + +#. module: base +#: view:ir.model.fields:0 +#: view:ir.model:0 +msgid "Security on Groups" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "center" +msgstr "" + +#. module: base +#: code:addons/base/module/wizard/wizard_module_import.py:0 +#, python-format +msgid "Can not create the module file: %s !" +msgstr "" + +#. module: base +#: field:ir.server.object.lines,server_id:0 +msgid "Object Mapping" +msgstr "" + +#. module: base +#: field:ir.module.module,published_version:0 +msgid "Published Version" +msgstr "" + +#. module: base +#: field:ir.actions.act_window,auto_refresh:0 +msgid "Auto-Refresh" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_country_state +#: field:maintenance.contract.wizard,state:0 +#: model:ir.ui.menu,name:base.menu_country_state_partner +msgid "States" +msgstr "" + +#. module: base +#: field:res.currency.rate,rate:0 +msgid "Rate" +msgstr "" + +#. module: base +#: field:res.request,ref_doc1:0 +msgid "Document Ref 1" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Create / Write" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_exports_line +msgid "ir.exports.line" +msgstr "" + +#. module: base +#: field:res.partner,credit_limit:0 +msgid "Credit Limit" +msgstr "" + +#. module: base +#: field:ir.default,value:0 +msgid "Default Value" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Object:" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_country_state +msgid "Country state" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_property_form_all +#: model:ir.ui.menu,name:base.menu_ir_property_form_all +msgid "All Properties" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,alignment:0 +msgid "left" +msgstr "" + +#. module: base +#: field:ir.module.module,category_id:0 +msgid "Category" +msgstr "" + +#. module: base +#: view:res.request:0 +#: view:ir.model:0 +msgid "Status" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_action_window +#: model:ir.ui.menu,name:base.menu_ir_action_window +msgid "Window Actions" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_act_window_close +msgid "ir.actions.act_window_close" +msgstr "" + +#. module: base +#: selection:ir.actions.todo,type:0 +msgid "Service" +msgstr "" + +#. module: base +#: help:ir.actions.act_window,auto_refresh:0 +msgid "Add an auto-refresh on the view" +msgstr "" + +#. module: base +#: field:ir.attachment,datas_fname:0 +#: field:wizard.module.lang.export,name:0 +msgid "Filename" +msgstr "" + +#. module: base +#: field:ir.model,access_ids:0 +msgid "Access" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_GO_DOWN" +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.cron,interval_type:0 +msgid "Weeks" +msgstr "" + +#. module: base +#: field:res.groups,name:0 +msgid "Group Name" +msgstr "" + +#. module: base +#: wizard_field:module.upgrade,next,module_download:0 +#: wizard_view:module.upgrade,next:0 +msgid "Modules to download" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "6. %d, %m ==> 05, 12" +msgstr "" + +#. module: base +#: field:res.bank,fax:0 +#: field:res.partner.address,fax:0 +msgid "Fax" +msgstr "" + +#. module: base +#: help:ir.actions.server,mobile:0 +msgid "provides the fiels that will refer to the tiny to fetch the mobile number, i.e. you select the invoice, then `object.invoice_address_id.mobile` is the field which give the correct mobile number" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_workitem_form +#: model:ir.ui.menu,name:base.menu_workflow_workitem +msgid "Workitems" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PRINT_PREVIEW" +msgstr "" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + +#. module: base +#: help:ir.actions.server,wkf_model_id:0 +msgid "Workflow to be execute on which model" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Field Mapping" +msgstr "Mapiranje polja" + +#. module: base +#: field:res.request,create_date:0 +msgid "Created date" +msgstr "" + +#. module: base +#: field:res.bank,bic:0 +msgid "BIC/Swift code" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_sequence +msgid "ir.sequence" +msgstr "" + +#. module: base +#: field:res.users,menu_id:0 +msgid "Menu Action" +msgstr "" + +#. module: base +#: selection:ir.module.module.dependency,state:0 +#: selection:ir.module.module,state:0 +msgid "Not Installed" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Lithuanian / Lietuvių kalba" +msgstr "" + +#. module: base +#: field:res.partner.event,canal_id:0 +#: view:res.partner.canal:0 +msgid "Channel" +msgstr "" + +#. module: base +#: field:ir.ui.menu,icon:0 +msgid "Icon" +msgstr "" + +#. module: base +#: help:ir.actions.server,subject:0 +msgid "Specify the subject, you can use the fields from the object. like `Hello [[ object.partner_id.name ]]`" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_maintenance_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_maintenance_contract_add +#: view:maintenance.contract.wizard:0 +msgid "Add Maintenance Contract" +msgstr "" + +#. module: base +#: wizard_button:module.lang.import,init,finish:0 +#: wizard_button:module.lang.install,start,end:0 +#: wizard_button:module.module.update,update,open_window:0 +msgid "Ok" +msgstr "" + +#. module: base +#: field:ir.cron,doall:0 +msgid "Repeat missed" +msgstr "" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "Couldn't find tag '%s' in parent view !" +msgstr "" + +#. module: base +#: field:ir.ui.view,inherit_id:0 +msgid "Inherited View" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_translation +msgid "ir.translation" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%p - Equivalent of either AM or PM." +msgstr "" + +#. module: base +#: field:ir.actions.act_window,limit:0 +#: field:ir.report.custom,limitt:0 +msgid "Limit" +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Iteration Actions" +msgstr "" + +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.res_request-act +#: model:ir.ui.menu,name:base.menu_res_request_act +#: model:ir.ui.menu,name:base.next_id_12 +#: view:res.request:0 +msgid "Requests" +msgstr "" + +#. module: base +#: selection:workflow.activity,split_mode:0 +msgid "Or" +msgstr "" + +#. module: base +#: field:ir.actions.todo,note:0 +msgid "Text" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_7 +msgid "Openstuff.net" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_rule_group +msgid "ir.rule.group" +msgstr "" + +#. module: base +#: field:res.roles,child_id:0 +msgid "Childs" +msgstr "" + +#. module: base +#: field:maintenance.contract,date_stop:0 +msgid "Ending Date" +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Selection" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_translation_export +msgid "Import / Export" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Week of the year: %(woy)s" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.open_module_tree_install +#: model:ir.ui.menu,name:base.menu_module_tree_install +msgid "Installed modules" +msgstr "" + +#. module: base +#: code:addons/base/res/partner/partner.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_ABOUT" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_actions.py:0 +#, python-format +msgid "Please specify an action to launch !" +msgstr "" + +#. module: base +#: field:ir.rule,operator:0 +msgid "Operator" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "Export language" +msgstr "" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "ValidateError" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_OPEN" +msgstr "" + +#. module: base +#: 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 +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_PREVIOUS" +msgstr "" + +#. module: base +#: wizard_button:base.module.import,init,import:0 +#: model:ir.actions.wizard,name:base.wizard_base_module_import +#: model:ir.ui.menu,name:base.menu_wizard_module_import +msgid "Import module" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Czech / Čeština" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "1. %c ==> Fri Dec 5 18:25:20 2008" +msgstr "" + +#. module: base +#: field:ir.actions.server,loop_action:0 +msgid "Loop Action" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +#: view:maintenance.contract:0 +msgid "Maintenance Contract" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:0 +#, python-format +msgid "You can not delete this document! (%s)" +msgstr "" + +#. module: base +#: field:res.lang,grouping:0 +msgid "Separator Format" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_report_custom +#: view:ir.report.custom:0 +msgid "Custom Report" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Day of the week (0:Monday): %(weekday)s" +msgstr "" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Email" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_wizard_update_translations +#: model:ir.ui.menu,name:base.menu_wizard_update_translations +msgid "Resynchronise Terms" +msgstr "" + +#. module: base +#: field:ir.model.access,perm_create:0 +msgid "Create Access" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_other_form +#: model:ir.ui.menu,name:base.menu_partner_other_form +msgid "Others Partners" +msgstr "" + +#. module: base +#: field:ir.model.data,noupdate:0 +msgid "Non Updatable" +msgstr "" + +#. module: base +#: view:ir.values:0 +msgid "Connect Events to Actions" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:0 +#, python-format +msgid "Can not upgrade module '%s'. It is not installed." +msgstr "" + +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented set_memory method !" +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 +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%y - Year without century as a decimal number [00,99]." +msgstr "" + +#. module: base +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" +msgstr "Mogući kontakt" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_NETWORK" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_model_fields +#: model:ir.model,name:base.model_ir_model_fields +#: field:ir.model,field_id:0 +#: field:ir.property,fields_id:0 +#: field:ir.report.custom,fields_child0:0 +#: model:ir.ui.menu,name:base.ir_model_model_fields +#: view:ir.model.fields:0 +#: view:ir.model:0 +msgid "Fields" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_base_config +#: model:ir.ui.menu,name:base.menu_config +#: view:ir.sequence:0 +#: view:res.company:0 +msgid "Configuration" +msgstr "" + +#. module: base +#: field:maintenance.contract,date_start:0 +msgid "Starting Date" +msgstr "" + +#. module: base +#: field:ir.model.fields,ttype:0 +#: view:ir.model:0 +msgid "Field Type" +msgstr "" + +#. module: base +#: field:ir.model.fields,complete_name:0 +#: field:ir.ui.menu,complete_name:0 +msgid "Complete Name" +msgstr "" + +#. module: base +#: field:res.country.state,code:0 +msgid "State Code" +msgstr "" + +#. module: base +#: field:ir.model.fields,on_delete:0 +msgid "On delete" +msgstr "" + +#. module: base +#: view:res.request:0 +msgid "Reply" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Year with century: %(year)s" +msgstr "" + +#. module: base +#: view:maintenance.contract.wizard:0 +msgid "_Cancel" +msgstr "" + +#. module: base +#: view:ir.report.custom:0 +msgid "Subscribe Report" +msgstr "" + +#. module: base +#: selection:res.lang,direction:0 +msgid "Left-to-Right" +msgstr "" + +#. module: base +#: field:ir.values,object:0 +msgid "Is Object" +msgstr "" + +#. module: base +#: field:res.lang,translatable:0 +msgid "Translatable" +msgstr "" + +#. module: base +#: selection:ir.report.custom,frequency:0 +msgid "Daily" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "3. %x ,%X ==> 12/05/08, 18:25:20" +msgstr "" + +#. module: base +#: selection:ir.model.fields,on_delete:0 +msgid "Cascade" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_report_custom.py:0 +#, python-format +msgid "Field %d should be a figure" +msgstr "" + +#. module: base +#: field:res.partner.category,name:0 +msgid "Category Name" +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 +#: code:osv/fields.py:0 +#, python-format +msgid "Not Implemented" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_5 +msgid "Gold Partner" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_15 +msgid "IT sector" +msgstr "" + +#. module: base +#: view:ir.property:0 +msgid "Property" +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 +#: view:ir.actions.configuration.wizard:0 +msgid "Next Configuration Step" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "terp-project" +msgstr "" + +#. module: base +#: field:res.groups,comment:0 +msgid "Comment" +msgstr "" + +#. module: base +#: field:ir.model.fields,domain:0 +#: field:ir.rule,domain:0 +#: field:res.partner.title,domain:0 +msgid "Domain" +msgstr "" + +#. module: base +#: 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 +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_PREFERENCES" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%c - Appropriate date and time representation." +msgstr "" + +#. module: base +#: field:ir.module.module,shortdesc:0 +msgid "Short description" +msgstr "" + +#. module: base +#: help:ir.actions.server,trigger_obj_id:0 +msgid "select the object from the model on which the workflow will execute" +msgstr "" + +#. module: base +#: help:ir.actions.report.xml,attachment:0 +msgid "This is the prefix of the file name the print will be saved as attachement. Keep empty to not save the printed reports" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%X - Appropriate time representation." +msgstr "" + +#. module: base +#: view:ir.actions.server:0 +msgid "Iteration Action Configuration" +msgstr "" + +#. module: base +#: field:res.country.state,name:0 +msgid "State Name" +msgstr "" + +#. module: base +#: view:res.company:0 +msgid "Your Logo - Use a size of about 450x150 pixels." +msgstr "" + +#. module: base +#: help:res.lang,grouping:0 +msgid "The Separator Format should be like [,n] where 0 < n :starting from Unit digit.-1 will end the separation. e.g. [3,2,-1] will represent 106500 to be 1,06,500;[1,2,-1] will represent it to be 106,50,0;[3] will represent it as 106,500. Provided ',' as the thousand separator in each case." +msgstr "" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "Error occured while validating the field(s) %s: %s" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DELETE" +msgstr "" + +#. module: base +#: field:res.partner.event,planned_cost:0 +msgid "Planned Cost" +msgstr "" + +#. module: base +#: field:workflow.activity,join_mode:0 +msgid "Join Mode" +msgstr "" + +#. module: base +#: selection:ir.report.custom,print_format:0 +msgid "a5" +msgstr "" + +#. module: base +#: wizard_field:res.partner.spam_send,init,text:0 +#: field:ir.actions.server,message:0 +msgid "Message" +msgstr "" + +#. module: base +#: help:ir.actions.server,trigger_name:0 +msgid "Select the Signal name that is to be " +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_report_xml +#: selection:ir.ui.menu,action:0 +msgid "ir.actions.report.xml" +msgstr "" + +#. module: base +#: view:wizard.module.lang.export:0 +msgid "To improve some terms of the official translations of OpenERP, you should modify the terms directly on the launchpad interface. If you made lots of translations for your own module, you can also publish all your translation at once." +msgstr "" + +#. module: base +#: view:res.users:0 +msgid "Please note that you will have to logout and relog if you change your password." +msgstr "" + +#. module: base +#: field:res.partner,address:0 +#: view:res.partner.address:0 +msgid "Contacts" +msgstr "" + +#. module: base +#: selection:ir.actions.act_window.view,view_mode:0 +#: selection:ir.ui.view,type:0 +#: selection:wizard.ir.model.menu.create.line,view_type:0 +msgid "Graph" +msgstr "" + +#. module: base +#: field:ir.module.module,installed_version:0 +msgid "Latest version" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_actions_server +msgid "ir.actions.server" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_17 +msgid "HR sector" +msgstr "" + +#. module: base +#: wizard_button:module.lang.install,init,start:0 +msgid "Start installation" +msgstr "" + +#. module: base +#: selection:res.request,state:0 +msgid "closed" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_module_module_dependency +msgid "Module dependency" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "%w - Weekday as a decimal number [0(Sunday),6]." +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 +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DND_MULTIPLE" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.maintenance +msgid "Maintenance" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_2 +msgid "OpenERP Partners" +msgstr "" + +#. module: base +#: view:res.config.view:0 +msgid "Choose Your Mode" +msgstr "" + +#. module: base +#: view:ir.actions.report.custom:0 +msgid "Report custom" +msgstr "" + +#. module: base +#: field:workflow.activity,action_id:0 +#: view:ir.actions.server:0 +msgid "Server Action" +msgstr "" + +#. module: base +#: selection:ir.module.module,license:0 +msgid "GPL-3" +msgstr "" + +#. module: base +#: 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 +#: field:ir.actions.act_window,name:0 +msgid "Action Name" +msgstr "" + +#. module: base +#: field:ir.actions.configuration.wizard,progress:0 +msgid "Configuration Progress" +msgstr "" + +#. module: base +#: field:res.company,rml_footer2:0 +msgid "Report Footer 2" +msgstr "" + +#. module: base +#: field:res.bank,email:0 +#: field:res.partner.address,email:0 +msgid "E-Mail" +msgstr "" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "module,type,name,res_id,src,value" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_groups +msgid "res.groups" +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:ir.report.custom.fields,operation:0 +msgid "Calculate Count" +msgstr "" + +#. module: base +#: field:ir.module.module,dependencies_id:0 +#: view:ir.module.module:0 +msgid "Dependencies" +msgstr "" + +#. module: base +#: field:ir.cron,user_id:0 +#: field:ir.ui.view.custom,user_id:0 +#: field:ir.values,user_id:0 +#: field:res.partner.event,user_id:0 +#: view:res.users:0 +msgid "User" +msgstr "" + +#. module: base +#: field:res.partner,parent_id:0 +msgid "Main Company" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.ir_property_form +#: model:ir.ui.menu,name:base.menu_ir_property_form +msgid "Default properties" +msgstr "" + +#. module: base +#: field:res.request.history,date_sent:0 +msgid "Date sent" +msgstr "" + +#. module: base +#: model:ir.actions.wizard,name:base.wizard_lang_import +#: model:ir.ui.menu,name:base.menu_wizard_lang_import +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:workflow.activity,in_transitions:0 +#: view:workflow.activity:0 +msgid "Incoming transitions" +msgstr "Ulazni prijenosi" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_title_partner +#: model:ir.ui.menu,name:base.menu_partner_title_partner +#: view:res.partner.title:0 +msgid "Partners Titles" +msgstr "" + +#. module: base +#: view:ir.rule:0 +msgid "Simple domain setup" +msgstr "Jednostavno podešavanje domena" + +#. 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 +#: view:ir.actions.server:0 +msgid "If you use a formula type, use a python expression using the variable 'object'." +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Italian / Italiano" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_wizard_ir_model_menu_create +msgid "wizard.ir.model.menu.create" +msgstr "" + +#. module: base +#: view:workflow.transition:0 +msgid "Transition" +msgstr "" + +#. module: base +#: field:res.partner,vat:0 +msgid "VAT" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_translation_app +msgid "Application Terms" +msgstr "" + +#. module: base +#: field:res.partner.address,birthdate:0 +msgid "Birthdate" +msgstr "" + +#. module: base +#: field:ir.module.repository,filter:0 +msgid "Filter" +msgstr "" + +#. module: base +#: field:res.groups,menu_access:0 +msgid "Access Menu" +msgstr "" + +#. module: base +#: field:workflow.transition,trigger_model:0 +msgid "Trigger Object" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_partner_som +msgid "res.partner.som" +msgstr "" + +#. module: base +#: field:ir.actions.server,mobile:0 +msgid "Mobile No" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_user.py:0 +#: code:addons/base/module/module.py:0 +#: code:report/custom.py:0 +#, python-format +msgid "Error" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_by_category +#: model:ir.actions.act_window,name:base.action_partner_category_form +#: model:ir.model,name:base.model_res_partner_category +#: model:ir.ui.menu,name:base.menu_partner_category_form +#: view:res.partner.category:0 +msgid "Partner Categories" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_workflow_activity +msgid "workflow.activity" +msgstr "" + +#. module: base +#: field:ir.sequence,code:0 +#: field:ir.sequence.type,code:0 +msgid "Sequence Code" +msgstr "" + +#. module: base +#: selection:res.request,state:0 +msgid "active" +msgstr "" + +#. module: base +#: selection:server.action.create,init,type:0 +msgid "Open Report" +msgstr "" + +#. module: base +#: field:res.currency,rounding:0 +msgid "Rounding factor" +msgstr "" + +#. module: base +#: selection:ir.translation,type:0 +msgid "Wizard Field" +msgstr "" + +#. module: base +#: view:ir.model:0 +msgid "Create a Menu" +msgstr "" + +#. module: base +#: view:ir.cron:0 +msgid "Action to trigger" +msgstr "" + +#. module: base +#: field:ir.model.fields,select_level:0 +msgid "Searchable" +msgstr "" + +#. module: base +#: view:res.partner.event:0 +msgid "Document Link" +msgstr "" + +#. module: base +#: view:res.partner.som:0 +msgid "Partner State of Mind" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_partner_bank +msgid "Bank Accounts" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_partner_title +msgid "res.partner.title" +msgstr "" + +#. module: base +#: view:res.company:0 +#: view:res.partner:0 +msgid "General Information" +msgstr "" + +#. module: base +#: field:ir.sequence,prefix:0 +msgid "Prefix" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_DISCONNECT" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "German / Deutsch" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_company +msgid "res.company" +msgstr "" + +#. module: base +#: field:ir.actions.server,fields_lines:0 +#: view:ir.actions.server:0 +msgid "Fields Mapping" +msgstr "" + +#. module: base +#: wizard_button:base.module.import,import,open_window:0 +#: wizard_button:server.action.create,step_1,end:0 +#: wizard_button:server.action.create,init,end:0 +#: wizard_button:module.upgrade,start,end:0 +#: wizard_button:module.upgrade,end,end:0 +#: view:wizard.module.lang.export:0 +msgid "Close" +msgstr "" + +#. module: base +#: field:ir.sequence,name:0 +#: field:ir.sequence.type,name:0 +msgid "Sequence Name" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_request_history +msgid "res.request.history" +msgstr "" + +#. module: base +#: constraint:res.partner:0 +msgid "The VAT doesn't seem to be correct." +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Hour 00->12: %(h12)s" +msgstr "" + +#. module: base +#: field:res.currency,rate:0 +msgid "Current rate" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_config_simple_view_form +msgid "Configure Simple View" +msgstr "" + +#. module: base +#: wizard_button:module.upgrade,next,start:0 +msgid "Start Upgrade" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "French / Français" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_13 +msgid "Important customers" +msgstr "" + +#. module: base +#: field:res.partner.som,factor:0 +msgid "Factor" +msgstr "" + +#. module: base +#: field:res.partner,category_id:0 +#: view:res.partner:0 +msgid "Categories" +msgstr "" + +#. module: base +#: selection:ir.report.custom.fields,operation:0 +msgid "Calculate Sum" +msgstr "" + +#. module: base +#: rml:ir.module.reference:0 +#: model:ir.model,name:base.model_ir_module_module +#: field:ir.model.data,module:0 +#: field:ir.module.module.dependency,module_id:0 +#: view:ir.module.module:0 +msgid "Module" +msgstr "" + +#. module: base +#: field:workflow.instance,res_type:0 +#: field:workflow,osv:0 +msgid "Resource Object" +msgstr "" + +#. module: base +#: selection:ir.actions.report.xml,report_type:0 +msgid "sxw" +msgstr "" + +#. module: base +#: selection:ir.actions.url,target:0 +msgid "This Window" +msgstr "" + +#. module: base +#: field:res.payterm,name:0 +msgid "Payment term (short name)" +msgstr "" + +#. module: base +#: field:ir.cron,function:0 +#: field:res.partner.address,function:0 +#: selection:workflow.activity,kind:0 +msgid "Function" +msgstr "" + +#. module: base +#: constraint:res.company:0 +msgid "Error! You can not create recursive companies." +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_actions.py:0 +#, python-format +msgid "Please specify the Partner Email address !" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_config_view +msgid "res.config.view" +msgstr "" + +#. module: base +#: field:ir.attachment,description:0 +#: field:ir.module.module,description:0 +#: field:res.partner.bank,name:0 +#: field:res.partner.event,description:0 +#: view:res.partner.event:0 +#: view:res.request:0 +msgid "Description" +msgstr "" + +#. module: base +#: field:res.partner.bank,owner_name:0 +msgid "Account owner" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_INDENT" +msgstr "" + +#. module: base +#: view:res.request.history:0 +msgid "Request History" +msgstr "" + +#. module: base +#: field:ir.exports.line,name:0 +#: field:res.partner.bank.type.field,name:0 +msgid "Field name" +msgstr "" + +#. module: base +#: selection:res.partner.address,type:0 +msgid "Delivery" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_ir_attachment +msgid "ir.attachment" +msgstr "" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:ir.actions.report.xml,auto:0 +msgid "Automatic XSL:RML" +msgstr "" + +#. module: base +#: field:ir.attachment,preview:0 +msgid "Image Preview" +msgstr "" + +#. module: base +#: view:workflow.workitem:0 +msgid "Workflow Workitems" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "8. %I:%M:%S %p ==> 06:25:20 PM" +msgstr "" + +#. module: base +#: wizard_field:res.partner.sms_send,init,password:0 +#: field:ir.model.config,password:0 +#: field:maintenance.contract,password:0 +#: field:maintenance.contract.wizard,password:0 +#: field:res.users,password:0 +msgid "Password" +msgstr "" + +#. module: base +#: view:res.roles:0 +msgid "Role" +msgstr "" + +#. module: base +#: selection:res.lang,direction:0 +msgid "Right-to-Left" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: selection:res.partner.event,partner_type:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "" + +#. module: base +#: selection:maintenance.contract.wizard,state:0 +msgid "Unvalidated" +msgstr "" + +#. module: base +#: field:ir.model.access,perm_unlink:0 +msgid "Delete Permission" +msgstr "" + +#. module: base +#: field:ir.actions.report.custom,name:0 +#: field:ir.report.custom,name:0 +msgid "Report Name" +msgstr "" + +#. module: base +#: view:workflow.instance:0 +msgid "Workflow Instances" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.next_id_9 +msgid "Database Structure" +msgstr "" + +#. module: base +#: wizard_view:res.partner.spam_send,init:0 +#: model:ir.actions.wizard,name:base.res_partner_mass_mailing_wizard +msgid "Mass Mailing" +msgstr "" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "You can also import .po files." +msgstr "" + +#. module: base +#: wizard_view:base.module.import,import:0 +msgid "Module successfully imported !" +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.report.custom:0 +msgid "Unsubscribe Report" +msgstr "" + +#. module: base +#: view:ir.sequence:0 +msgid "Hour 00->24: %(h24)s" +msgstr "" + +#. module: base +#: constraint:res.partner.category:0 +msgid "Error ! You can not create recursive categories." +msgstr "" + +#. module: base +#: selection:ir.actions.server,state:0 +msgid "Create Object" +msgstr "" + +#. module: base +#: selection:ir.report.custom,print_format:0 +msgid "a4" +msgstr "" + +#. module: base +#: help:ir.actions.server,loop_action:0 +msgid "select the action, which will be executes. Loop action will not be avaliable inside loop" +msgstr "" + +#. module: base +#: model:ir.actions.act_window,name:base.action_partner_customer_form_new +#: model:ir.ui.menu,name:base.menu_partner_customer_form_new +msgid "New Partner" +msgstr "" + +#. module: base +#: wizard_view:module.lang.install,start:0 +msgid "Installation done" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_JUSTIFY_RIGHT" +msgstr "" + +#. module: base +#: model:res.partner.category,name:base.res_partner_category_1 +msgid "Prospect" +msgstr "" + +#. module: base +#: model:ir.model,name:base.model_res_partner_function +msgid "Function of the contact" +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 +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" +msgstr "" + +#. module: base +#: model:ir.ui.menu,name:base.menu_partner_address_form +msgid "Addresses" +msgstr "" + +#. module: base +#: field:ir.actions.todo,sequence:0 +#: field:ir.actions.server,sequence:0 +#: field:ir.actions.act_window.view,sequence:0 +#: field:ir.module.repository,sequence:0 +#: field:ir.report.custom.fields,sequence:0 +#: field:ir.ui.menu,sequence:0 +#: field:ir.ui.view_sc,sequence:0 +#: field:res.partner.bank,sequence:0 +#: field:wizard.ir.model.menu.create.line,sequence:0 +msgid "Sequence" +msgstr "" + +#. module: base +#: view:res.lang:0 +msgid "11. %U or %W ==> 48 (49th week)" +msgstr "" + +#. module: base +#: wizard_view:module.lang.import,init:0 +msgid "Import language" +msgstr "" + +#. module: base +#: help:res.partner.address,type:0 +msgid "Used to select automatically the right address according to the context in sales and purchases documents." +msgstr "" + +#. module: base +#: help:ir.cron,numbercall:0 +msgid "Number of time the function is called,\n" +"a negative number indicates that the function will always be called" +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Chinese (CN) / 简体中文" +msgstr "" + +#. module: base +#: field:ir.report.custom,footer:0 +msgid "Report Footer" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_MEDIA_NEXT" +msgstr "" + +#. module: base +#: selection:ir.ui.menu,icon:0 +msgid "STOCK_REDO" +msgstr "" + +#. module: base +#: wizard_view:module.lang.install,init:0 +msgid "Choose a language to install:" +msgstr "" + +#. module: base +#: view:res.partner.event:0 +msgid "General Description" +msgstr "" + +#. module: base +#: view:ir.module.module:0 +msgid "Cancel Install" +msgstr "" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + +#. module: base +#: selection:module.lang.install,init,lang:0 +msgid "Russian / русский язык" +msgstr "" + +#. module: base +#: field:ir.model.data,name:0 +msgid "XML Identifier" +msgstr "" + diff --git a/bin/addons/base/i18n/ca_ES.po b/bin/addons/base/i18n/ca_ES.po index 23e3d4f53a7..e2c3ab0454a 100644 --- a/bin/addons/base/i18n/ca_ES.po +++ b/bin/addons/base/i18n/ca_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 17:50:51+0000\n" -"PO-Revision-Date: 2008-12-22 17:50:51+0000\n" +"POT-Creation-Date: 2009-01-03 02:01:35+0000\n" +"PO-Revision-Date: 2009-01-03 02:01:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "Nom del càrrec" msgid "terp-account" msgstr "terp-account" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "Categoria d'empresa" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -164,7 +169,7 @@ msgstr "Pare" #: field:workflow.instance,wkf_id:0 #: view:workflow:0 msgid "Workflow" -msgstr "Fluxe de treball" +msgstr "Flux" #. module: base #: field:ir.actions.report.custom,model:0 @@ -370,9 +375,9 @@ msgid "Sender's email" msgstr "Email remitent" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" -msgstr "Tabular" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" +msgstr "" #. module: base #: help:ir.actions.server,email:0 @@ -458,9 +463,9 @@ msgid "STOCK_CANCEL" msgstr "STOCK_CANCEL" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" -msgstr "Contacte de prospecció" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" +msgstr "" #. module: base #: constraint:ir.ui.view:0 @@ -756,7 +761,7 @@ msgstr "EAN13" #. module: base #: 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 que proveeixin els fluxos de treball." +msgstr "Els rols s'utilitzen per definir les accions disponibles, de les que proveeixen els fluxos." #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree @@ -942,11 +947,21 @@ msgstr "Si l'idioma seleccionat està instal·lat en el sistema, tots els docume msgid "STOCK_UNDERLINE" msgstr "STOCK_UNDERLINE" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "Objecte personalitzat" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" @@ -1068,7 +1083,7 @@ msgstr "terp-graph" #. module: base #: model:ir.model,name:base.model_workflow_instance msgid "workflow.instance" -msgstr "workflow.instance" +msgstr "workflow.instancia" #. module: base #: view:res.lang:0 @@ -1123,7 +1138,7 @@ msgstr "Esdeveniments empresa" #. module: base #: model:ir.model,name:base.model_workflow_transition msgid "workflow.transition" -msgstr "workflow.transition" +msgstr "workflow.transicio" #. module: base #: view:res.lang:0 @@ -1750,7 +1765,7 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow msgid "Workflows" -msgstr "Fluxes de treball" +msgstr "Fluxos" #. module: base #: field:ir.model.fields,model_id:0 @@ -1838,11 +1853,6 @@ msgstr "terp-stock" msgid "Get file" msgstr "Obté fitxer" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1865,6 +1875,12 @@ msgstr "0=Molt urgent\n" msgid "ir.model.data" msgstr "ir.model.dades" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1964,17 +1980,16 @@ msgstr "Global" msgid "From" msgstr "Des de" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "Aquest mètode ja no existeix" - #. module: base #: selection:res.partner.event,partner_type:0 msgid "Retailer" msgstr "Proveïdor" +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2000,11 +2015,6 @@ msgstr "Fitxer TGZ" msgid "Set NULL" msgstr "Establir a NULL" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2037,6 +2047,11 @@ msgstr "Creat manualment" msgid "Defined Reports" msgstr "Informes definits" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "Tabular" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" @@ -2132,6 +2147,11 @@ msgstr "Contrasenya buida!" msgid "RML Header" msgstr "Capçalera RML" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "Estableix" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2266,9 +2286,9 @@ msgid "Recursion error in modules dependencies !" msgstr "Error de recurrència entre dependències de mòduls!" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" -msgstr "" +#: view:ir.rule:0 +msgid "Manual domain setup" +msgstr "Configuració de domini manual" #. module: base #: field:ir.actions.report.xml,report_xsl:0 @@ -2488,6 +2508,11 @@ msgstr "STOCK_JUSTIFY_FILL" msgid "draft" msgstr "Esborrany" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "Probabilitat (0.50)" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2645,15 +2670,9 @@ msgid "(year)=" msgstr "(any)=" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" -msgstr "Codi" +#: rml:ir.module.reference:0 +msgid "Dependencies :" +msgstr "" #. module: base #: view:ir.module.module:0 @@ -2671,10 +2690,10 @@ msgid "Creator" msgstr "Creador" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" -msgstr "El mètode get_memory no està implementat!" +msgid "You cannot perform this operation." +msgstr "" #. module: base #: field:ir.actions.server,code:0 @@ -2726,7 +2745,6 @@ msgstr "Relació" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2868,9 +2886,9 @@ msgid "Childs Field" msgstr "Camp fills" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Nom de rol" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "" #. module: base #: code:addons/base/res/res_user.py:0 @@ -2881,7 +2899,7 @@ msgstr "No es pot eliminar l'usuari principal!" #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" -msgstr "" +msgstr "Versió instal·lada" #. module: base #: view:res.lang:0 @@ -2932,6 +2950,11 @@ msgstr "Exporta un fitxer de traducció" msgid "Report Xml" msgstr "Informe XML" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -3000,6 +3023,11 @@ msgstr "Banc" msgid "STOCK_HARDDISK" msgstr "STOCK_HARDDISK" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3155,6 +3183,11 @@ msgstr "Alta" msgid "Instances" msgstr "Casos" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Nom de rol" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3230,15 +3263,6 @@ msgstr "Heu d'importar un fitxer .CSV codificat en UTF-8. Comproveu que la prime msgid "Group by" msgstr "Agrupat per" -#. 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 "Categories d'empreses" - #. module: base #: field:ir.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3449,9 +3473,15 @@ msgid "Update Translations" msgstr "Actualitzar traduccions" #. module: base -#: view:res.config.view:0 -msgid "Set" -msgstr "Estableix" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" +msgstr "Codi" #. module: base #: field:ir.report.custom.fields,width:0 @@ -3529,6 +3559,12 @@ msgstr "" msgid "Channels" msgstr "Canals" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "El mètode get_memory no està implementat!" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3563,9 +3599,9 @@ msgid "Schedule for Installation" msgstr "Programa per instal·lació" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" -msgstr "" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "Any sense la centuria: %(y)s" #. module: base #: selection:ir.model.fields,select_level:0 @@ -3788,11 +3824,6 @@ msgstr "Tingueu en compte que aquesta operació pot tardar uns minuts." msgid "STOCK_COLOR_PICKER" msgstr "STOCK_COLOR_PICKER" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "Configuració de domini manual" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3811,9 +3842,10 @@ msgid "Kind" msgstr "Classe" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" -msgstr "Comptes bancaris" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" +msgstr "Aquest mètode ja no existeix" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 @@ -3830,9 +3862,9 @@ msgid "Tree" msgstr "Arbre" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" -msgstr "" +#: view:res.partner.bank:0 +msgid "Bank accounts" +msgstr "Comptes bancaris" #. module: base #: selection:ir.actions.todo,start_on:0 @@ -4064,11 +4096,6 @@ msgstr "No es pot generar el pròxim id perquè algunes empreses tenen un id alf msgid "Unsubscribed" msgstr "No subscrit" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "Any sense la centuria: %(y)s" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4453,11 +4480,6 @@ msgstr "Exportació realitzada" msgid "Arguments" msgstr "Arguments" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4474,7 +4496,7 @@ msgstr "Empreses filials" #. module: base #: constraint:ir.model:0 msgid "The Object name must start with x_ and not contain any special character !" -msgstr "El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter especial !" +msgstr "El nom de l'objecte ha de començar amb x_ i no contenir cap caràcter especial!" #. module: base #: field:ir.actions.configuration.wizard,name:0 @@ -4610,9 +4632,9 @@ msgid "Not Installable" msgstr "No instal·lable" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "Probabilitat (0.50)" +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "" #. module: base #: field:res.partner.address,mobile:0 @@ -5087,6 +5109,11 @@ msgstr "Límit" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "Direcció de l'empresa" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5169,9 +5196,9 @@ msgid "Operator" msgstr "Operador" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" -msgstr "Direcció de l'empresa" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" +msgstr "" #. module: base #: view:wizard.module.lang.export:0 @@ -5310,8 +5337,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5320,9 +5347,9 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" -msgstr "Categoria d'empresa" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" +msgstr "Contacte de prospecció" #. module: base #: selection:ir.ui.menu,icon:0 @@ -5617,7 +5644,7 @@ msgstr "Diagrama" #. module: base #: field:ir.module.module,installed_version:0 msgid "Latest version" -msgstr "" +msgstr "Última versió" #. module: base #: model:ir.model,name:base.model_ir_actions_server @@ -5830,7 +5857,7 @@ msgstr "Transició" #. module: base #: field:res.partner,vat:0 msgid "VAT" -msgstr "IVA" +msgstr "CIF/NIF" #. module: base #: model:ir.ui.menu,name:base.menu_translation_app @@ -5857,6 +5884,11 @@ msgstr "Menú d'accés" msgid "Trigger Object" msgstr "Objecte de l'activació" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "Mes: %(month)s" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5879,9 +5911,13 @@ msgid "Error" msgstr "Error" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" -msgstr "" +#: 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 "Categories d'empreses" #. module: base #: model:ir.model,name:base.model_workflow_activity @@ -5942,7 +5978,7 @@ msgstr "Grau de satisfacció d'empresa" #. module: base #: model:ir.model,name:base.model_res_partner_bank msgid "Bank Accounts" -msgstr "Comptes de banc" +msgstr "Comptes bancaris" #. module: base #: model:ir.model,name:base.model_res_partner_title @@ -6166,7 +6202,7 @@ msgstr "Vista prèvia d'imatge" #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" -msgstr "Elements del fluxe de treball" +msgstr "Elements del flux" #. module: base #: view:res.lang:0 @@ -6218,7 +6254,7 @@ msgstr "Nom informe" #. module: base #: view:workflow.instance:0 msgid "Workflow Instances" -msgstr "Instàncies fluxe de treball" +msgstr "Instàncies flux" #. module: base #: model:ir.ui.menu,name:base.next_id_9 @@ -6314,9 +6350,9 @@ msgid "Modules to be installed, upgraded or removed" msgstr "Mòduls per ser instal·lats, actualitzats o eliminats" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" -msgstr "Mes: %(month)s" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_partner_address_form @@ -6393,11 +6429,6 @@ msgstr "Descripció general" msgid "Cancel Install" msgstr "Cancel·la instal·lació" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/i18n/cs_CZ.po b/bin/addons/base/i18n/cs_CZ.po index b51ec45fbdb..0432bb6c7ae 100644 --- a/bin/addons/base/i18n/cs_CZ.po +++ b/bin/addons/base/i18n/cs_CZ.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 17:53:21+0000\n" -"PO-Revision-Date: 2008-12-22 17:53:21+0000\n" +"POT-Creation-Date: 2009-01-03 02:04:15+0000\n" +"PO-Revision-Date: 2009-01-03 02:04:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "Název(Name)" msgid "terp-account" msgstr "" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -370,9 +375,9 @@ msgid "Sender's email" msgstr "email odesílatele" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" -msgstr "Tabulkový(Tabular)" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" +msgstr "" #. module: base #: help:ir.actions.server,email:0 @@ -458,9 +463,9 @@ msgid "STOCK_CANCEL" msgstr "" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" -msgstr "Prohlédnout Kontakt(Prospect Contact)" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" +msgstr "" #. module: base #: constraint:ir.ui.view:0 @@ -942,11 +947,21 @@ msgstr "" msgid "STOCK_UNDERLINE" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" @@ -1837,11 +1852,6 @@ msgstr "" msgid "Get file" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1863,6 +1873,12 @@ msgstr "" msgid "ir.model.data" msgstr "ir.model.data" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1962,17 +1978,16 @@ msgstr "" msgid "From" msgstr "Od(From)" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "" - #. module: base #: selection:res.partner.event,partner_type:0 msgid "Retailer" msgstr "Maloobchodník(Retailer)" +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -1998,11 +2013,6 @@ msgstr "" msgid "Set NULL" msgstr "" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2035,6 +2045,11 @@ msgstr "" msgid "Defined Reports" msgstr "" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "Tabulkový(Tabular)" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" @@ -2130,6 +2145,11 @@ msgstr "" msgid "RML Header" msgstr "" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2264,8 +2284,8 @@ msgid "Recursion error in modules dependencies !" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" +#: view:ir.rule:0 +msgid "Manual domain setup" msgstr "" #. module: base @@ -2486,6 +2506,11 @@ msgstr "" msgid "draft" msgstr "Koncept" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "Pravděpodobnost(0.50)(Probability (0.50))" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2643,14 +2668,8 @@ msgid "(year)=" msgstr "(rok)=" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" +#: rml:ir.module.reference:0 +msgid "Dependencies :" msgstr "" #. module: base @@ -2669,9 +2688,9 @@ msgid "Creator" msgstr "" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" +msgid "You cannot perform this operation." msgstr "" #. module: base @@ -2724,7 +2743,6 @@ msgstr "Popis(Relation)" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2866,9 +2884,9 @@ msgid "Childs Field" msgstr "Childs Field(Childs Field)" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Název" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "" #. module: base #: code:addons/base/res/res_user.py:0 @@ -2930,6 +2948,11 @@ msgstr "" msgid "Report Xml" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -2998,6 +3021,11 @@ msgstr "" msgid "STOCK_HARDDISK" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3153,6 +3181,11 @@ msgstr "Vysoká" msgid "Instances" msgstr "" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Název" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3228,15 +3261,6 @@ msgstr "" msgid "Group by" msgstr "Skupina podle(Group by)" -#. 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.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3444,8 +3468,14 @@ msgid "Update Translations" msgstr "" #. module: base -#: view:res.config.view:0 -msgid "Set" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" msgstr "" #. module: base @@ -3524,6 +3554,12 @@ msgstr "" msgid "Channels" msgstr "" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3558,8 +3594,8 @@ msgid "Schedule for Installation" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" msgstr "" #. module: base @@ -3783,11 +3819,6 @@ msgstr "" msgid "STOCK_COLOR_PICKER" msgstr "" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3806,9 +3837,10 @@ msgid "Kind" msgstr "Druh" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" -msgstr "Bankovní účty" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" +msgstr "" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 @@ -3825,9 +3857,9 @@ msgid "Tree" msgstr "Strom(Tree)" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" -msgstr "" +#: view:res.partner.bank:0 +msgid "Bank accounts" +msgstr "Bankovní účty" #. module: base #: selection:ir.actions.todo,start_on:0 @@ -4059,11 +4091,6 @@ msgstr "" msgid "Unsubscribed" msgstr "Nepodepsaný(Unsubscribed)" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4448,11 +4475,6 @@ msgstr "" msgid "Arguments" msgstr "Argumenty" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4605,9 +4627,9 @@ msgid "Not Installable" msgstr "" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "Pravděpodobnost(0.50)(Probability (0.50))" +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "" #. module: base #: field:res.partner.address,mobile:0 @@ -5082,6 +5104,11 @@ msgstr "" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5164,8 +5191,8 @@ msgid "Operator" msgstr "" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" msgstr "" #. module: base @@ -5305,8 +5332,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5315,9 +5342,9 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" -msgstr "" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" +msgstr "Prohlédnout Kontakt(Prospect Contact)" #. module: base #: selection:ir.ui.menu,icon:0 @@ -5852,6 +5879,11 @@ msgstr "Přístup k nabídce" msgid "Trigger Object" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "Měsíc: %(měsíc/e)" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5874,8 +5906,12 @@ msgid "Error" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" +#: 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 @@ -6309,9 +6345,9 @@ msgid "Modules to be installed, upgraded or removed" msgstr "Moduly připravené k instalaci, aktualizaci nebo k odebrání" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" -msgstr "Měsíc: %(měsíc/e)" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_partner_address_form @@ -6387,11 +6423,6 @@ msgstr "Obecný popis" msgid "Cancel Install" msgstr "Stornovat instalaci" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/i18n/de_DE.po b/bin/addons/base/i18n/de_DE.po index 239d298422f..24d6fc04c6c 100644 --- a/bin/addons/base/i18n/de_DE.po +++ b/bin/addons/base/i18n/de_DE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 17:55:57+0000\n" -"PO-Revision-Date: 2008-12-22 17:55:57+0000\n" +"POT-Creation-Date: 2009-01-03 02:06:58+0000\n" +"PO-Revision-Date: 2009-01-03 02:06:58+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "Bezeichnung" msgid "terp-account" msgstr "" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -370,8 +375,8 @@ msgid "Sender's email" msgstr "" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" msgstr "" #. module: base @@ -458,8 +463,8 @@ msgid "STOCK_CANCEL" msgstr "" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" msgstr "" #. module: base @@ -942,11 +947,21 @@ msgstr "" msgid "STOCK_UNDERLINE" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" @@ -1837,11 +1852,6 @@ msgstr "" msgid "Get file" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1863,6 +1873,12 @@ msgstr "" msgid "ir.model.data" msgstr "" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1963,14 +1979,13 @@ msgid "From" msgstr "Anforderung Von" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" +#: selection:res.partner.event,partner_type:0 +msgid "Retailer" msgstr "" #. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Retailer" +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" msgstr "" #. module: base @@ -1998,11 +2013,6 @@ msgstr "" msgid "Set NULL" msgstr "" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2035,6 +2045,11 @@ msgstr "" msgid "Defined Reports" msgstr "" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" @@ -2130,6 +2145,11 @@ msgstr "" msgid "RML Header" msgstr "" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2264,8 +2284,8 @@ msgid "Recursion error in modules dependencies !" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" +#: view:ir.rule:0 +msgid "Manual domain setup" msgstr "" #. module: base @@ -2486,6 +2506,11 @@ msgstr "" msgid "draft" msgstr "" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "Wahrscheinlichkeit (0.50)" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2643,14 +2668,8 @@ msgid "(year)=" msgstr "" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" +#: rml:ir.module.reference:0 +msgid "Dependencies :" msgstr "" #. module: base @@ -2669,9 +2688,9 @@ msgid "Creator" msgstr "" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" +msgid "You cannot perform this operation." msgstr "" #. module: base @@ -2724,7 +2743,6 @@ msgstr "" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2866,9 +2884,9 @@ msgid "Childs Field" msgstr "Childs Field" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Rollenname" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "" #. module: base #: code:addons/base/res/res_user.py:0 @@ -2930,6 +2948,11 @@ msgstr "" msgid "Report Xml" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -2998,6 +3021,11 @@ msgstr "" msgid "STOCK_HARDDISK" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3153,6 +3181,11 @@ msgstr "" msgid "Instances" msgstr "" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Rollenname" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3228,15 +3261,6 @@ msgstr "" msgid "Group by" 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.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3444,8 +3468,14 @@ msgid "Update Translations" msgstr "" #. module: base -#: view:res.config.view:0 -msgid "Set" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" msgstr "" #. module: base @@ -3524,6 +3554,12 @@ msgstr "" msgid "Channels" msgstr "" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3558,8 +3594,8 @@ msgid "Schedule for Installation" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" msgstr "" #. module: base @@ -3783,11 +3819,6 @@ msgstr "" msgid "STOCK_COLOR_PICKER" msgstr "" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3806,8 +3837,9 @@ msgid "Kind" msgstr "Art" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" msgstr "" #. module: base @@ -3825,8 +3857,8 @@ msgid "Tree" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" +#: view:res.partner.bank:0 +msgid "Bank accounts" msgstr "" #. module: base @@ -4059,11 +4091,6 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4448,11 +4475,6 @@ msgstr "" msgid "Arguments" msgstr "Argumente" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4605,9 +4627,9 @@ msgid "Not Installable" msgstr "" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "Wahrscheinlichkeit (0.50)" +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "" #. module: base #: field:res.partner.address,mobile:0 @@ -5082,6 +5104,11 @@ msgstr "" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5164,8 +5191,8 @@ msgid "Operator" msgstr "" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" msgstr "" #. module: base @@ -5305,8 +5332,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5315,8 +5342,8 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" msgstr "" #. module: base @@ -5852,6 +5879,11 @@ msgstr "" msgid "Trigger Object" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5874,8 +5906,12 @@ msgid "Error" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" +#: 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 @@ -6309,8 +6345,8 @@ msgid "Modules to be installed, upgraded or removed" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" msgstr "" #. module: base @@ -6387,11 +6423,6 @@ msgstr "Allgemeine Beschreibung" msgid "Cancel Install" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/i18n/es_AR.po b/bin/addons/base/i18n/es_AR.po index 1f3c7e371cc..9cbb3c544b1 100644 --- a/bin/addons/base/i18n/es_AR.po +++ b/bin/addons/base/i18n/es_AR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:02:02+0000\n" -"PO-Revision-Date: 2008-12-22 18:02:02+0000\n" +"POT-Creation-Date: 2009-01-03 02:14:00+0000\n" +"PO-Revision-Date: 2009-01-03 02:14:00+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "Nombre" msgid "terp-account" msgstr "" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -370,9 +375,9 @@ msgid "Sender's email" msgstr "" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" -msgstr "Tabular" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" +msgstr "" #. module: base #: help:ir.actions.server,email:0 @@ -458,9 +463,9 @@ msgid "STOCK_CANCEL" msgstr "" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" -msgstr "Contacto del Prospecto" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" +msgstr "" #. module: base #: constraint:ir.ui.view:0 @@ -942,11 +947,21 @@ msgstr "" msgid "STOCK_UNDERLINE" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" @@ -1837,11 +1852,6 @@ msgstr "" msgid "Get file" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1863,6 +1873,12 @@ msgstr "" msgid "ir.model.data" msgstr "ir.model.data" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1962,17 +1978,16 @@ msgstr "" msgid "From" msgstr "De" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "" - #. module: base #: selection:res.partner.event,partner_type:0 msgid "Retailer" msgstr "Proveedor" +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -1998,11 +2013,6 @@ msgstr "" msgid "Set NULL" msgstr "" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2035,6 +2045,11 @@ msgstr "" msgid "Defined Reports" msgstr "" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "Tabular" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" @@ -2130,6 +2145,11 @@ msgstr "" msgid "RML Header" msgstr "" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2264,8 +2284,8 @@ msgid "Recursion error in modules dependencies !" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" +#: view:ir.rule:0 +msgid "Manual domain setup" msgstr "" #. module: base @@ -2486,6 +2506,11 @@ msgstr "" msgid "draft" msgstr "borrador" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "Probabilidad (0-1)" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2643,14 +2668,8 @@ msgid "(year)=" msgstr "(año)=" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" +#: rml:ir.module.reference:0 +msgid "Dependencies :" msgstr "" #. module: base @@ -2669,9 +2688,9 @@ msgid "Creator" msgstr "" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" +msgid "You cannot perform this operation." msgstr "" #. module: base @@ -2724,7 +2743,6 @@ msgstr "Relación" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2866,9 +2884,9 @@ msgid "Childs Field" msgstr "Campo \"hijo\"" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Nombre del Rol" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "" #. module: base #: code:addons/base/res/res_user.py:0 @@ -2930,6 +2948,11 @@ msgstr "" msgid "Report Xml" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -2998,6 +3021,11 @@ msgstr "" msgid "STOCK_HARDDISK" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3153,6 +3181,11 @@ msgstr "Alta" msgid "Instances" msgstr "" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Nombre del Rol" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3228,15 +3261,6 @@ msgstr "" msgid "Group by" msgstr "Agrupar por" -#. 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.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3444,8 +3468,14 @@ msgid "Update Translations" msgstr "" #. module: base -#: view:res.config.view:0 -msgid "Set" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" msgstr "" #. module: base @@ -3524,6 +3554,12 @@ msgstr "" msgid "Channels" msgstr "" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3558,8 +3594,8 @@ msgid "Schedule for Installation" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" msgstr "" #. module: base @@ -3783,11 +3819,6 @@ msgstr "" msgid "STOCK_COLOR_PICKER" msgstr "" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3806,8 +3837,9 @@ msgid "Kind" msgstr "Clase" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" msgstr "" #. module: base @@ -3825,8 +3857,8 @@ msgid "Tree" msgstr "Estructura" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" +#: view:res.partner.bank:0 +msgid "Bank accounts" msgstr "" #. module: base @@ -4059,11 +4091,6 @@ msgstr "" msgid "Unsubscribed" msgstr "No Suscripto" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4448,11 +4475,6 @@ msgstr "" msgid "Arguments" msgstr "Argumentos" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4605,9 +4627,9 @@ msgid "Not Installable" msgstr "" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "Probabilidad (0-1)" +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "" #. module: base #: field:res.partner.address,mobile:0 @@ -5082,6 +5104,11 @@ msgstr "" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5164,8 +5191,8 @@ msgid "Operator" msgstr "" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" msgstr "" #. module: base @@ -5305,8 +5332,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5315,9 +5342,9 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" -msgstr "" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" +msgstr "Contacto del Prospecto" #. module: base #: selection:ir.ui.menu,icon:0 @@ -5852,6 +5879,11 @@ msgstr "" msgid "Trigger Object" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "Mes: %(mes)es" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5874,8 +5906,12 @@ msgid "Error" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" +#: 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 @@ -6309,9 +6345,9 @@ msgid "Modules to be installed, upgraded or removed" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" -msgstr "Mes: %(mes)es" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_partner_address_form @@ -6387,11 +6423,6 @@ msgstr "Descripción general" msgid "Cancel Install" msgstr "Cancelar Instalación" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/i18n/es_ES.po b/bin/addons/base/i18n/es_ES.po index 9998f48f356..e0dfa709f78 100644 --- a/bin/addons/base/i18n/es_ES.po +++ b/bin/addons/base/i18n/es_ES.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:02:43+0000\n" -"PO-Revision-Date: 2008-12-22 18:02:43+0000\n" +"POT-Creation-Date: 2009-01-03 02:14:45+0000\n" +"PO-Revision-Date: 2009-01-03 02:14:45+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "Nombre del cargo" msgid "terp-account" msgstr "terp-account" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "Categoría de empresa" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -164,7 +169,7 @@ msgstr "Padre" #: field:workflow.instance,wkf_id:0 #: view:workflow:0 msgid "Workflow" -msgstr "Flujo de trabajo" +msgstr "Flujo" #. module: base #: field:ir.actions.report.custom,model:0 @@ -370,9 +375,9 @@ msgid "Sender's email" msgstr "Email remitente" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" -msgstr "Tabular" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" +msgstr "" #. module: base #: help:ir.actions.server,email:0 @@ -458,9 +463,9 @@ msgid "STOCK_CANCEL" msgstr "STOCK_CANCEL" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" -msgstr "Contacto de prospección" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" +msgstr "" #. module: base #: constraint:ir.ui.view:0 @@ -632,7 +637,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_workflow_triggers msgid "workflow.triggers" -msgstr "workflow.triggers" +msgstr "workflow.disparadores" #. module: base #: model:ir.model,name:base.model_ir_ui_view @@ -756,7 +761,7 @@ msgstr "EAN13" #. module: base #: 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 proveen los flujos de trabajo." +msgstr "Los roles se utilizan para definir las acciones disponibles, que son proporcionadas por los flujos." #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree @@ -942,11 +947,21 @@ msgstr "Si el idioma seleccionado está instalado en el sistema, todos los docum msgid "STOCK_UNDERLINE" msgstr "STOCK_UNDERLINE" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "Objeto personalizado" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" @@ -1068,7 +1083,7 @@ msgstr "terp-graph" #. module: base #: model:ir.model,name:base.model_workflow_instance msgid "workflow.instance" -msgstr "workflow.instance" +msgstr "workflow.instancia" #. module: base #: view:res.lang:0 @@ -1123,7 +1138,7 @@ msgstr "Eventos empresa" #. module: base #: model:ir.model,name:base.model_workflow_transition msgid "workflow.transition" -msgstr "workflow.transition" +msgstr "workflow.transicion" #. module: base #: view:res.lang:0 @@ -1750,7 +1765,7 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_workflow_form #: model:ir.ui.menu,name:base.menu_workflow msgid "Workflows" -msgstr "Flujos de trabajo" +msgstr "Flujos" #. module: base #: field:ir.model.fields,model_id:0 @@ -1838,11 +1853,6 @@ msgstr "terp-stock" msgid "Get file" msgstr "Obtener archivo" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1865,6 +1875,12 @@ msgstr "0=Muy urgente\n" msgid "ir.model.data" msgstr "ir.modelo.datos" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1884,7 +1900,7 @@ msgstr "La ruta del archivo .rml o NULL si el contenido está en report_rml_cont #. module: base #: view:res.users:0 msgid "Skip" -msgstr "Omitir" +msgstr "Saltar" #. module: base #: model:ir.actions.act_window,name:base.act_menu_create @@ -1964,17 +1980,16 @@ msgstr "Global" msgid "From" msgstr "Desde" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "Este método ya no existe" - #. module: base #: selection:res.partner.event,partner_type:0 msgid "Retailer" msgstr "Proveedor" +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2000,11 +2015,6 @@ msgstr "Archivo TGZ" msgid "Set NULL" msgstr "Establecer a NULL" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2037,6 +2047,11 @@ msgstr "Creado manualmente" msgid "Defined Reports" msgstr "Informes definidos" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "Tabular" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" @@ -2132,6 +2147,11 @@ msgstr "¡Contraseña vacía!" msgid "RML Header" msgstr "Cabecera RML" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "Establecer" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2158,7 +2178,7 @@ msgstr "¡No puede escribir en este documento! (%s)" #. module: base #: model:ir.model,name:base.model_workflow msgid "workflow" -msgstr "flujo de trabajo" +msgstr "flujo" #. module: base #: wizard_field:res.partner.sms_send,init,app_id:0 @@ -2266,9 +2286,9 @@ msgid "Recursion error in modules dependencies !" msgstr "¡Error de recurrencia entre dependencias de módulos!" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" -msgstr "" +#: view:ir.rule:0 +msgid "Manual domain setup" +msgstr "Configuración de dominio manual" #. module: base #: field:ir.actions.report.xml,report_xsl:0 @@ -2488,6 +2508,11 @@ msgstr "STOCK_JUSTIFY_FILL" msgid "draft" msgstr "borrador" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "Probabilidad (0.50)" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2645,15 +2670,9 @@ msgid "(year)=" msgstr "(año)=" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" -msgstr "Código" +#: rml:ir.module.reference:0 +msgid "Dependencies :" +msgstr "" #. module: base #: view:ir.module.module:0 @@ -2671,10 +2690,10 @@ msgid "Creator" msgstr "Creador" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" -msgstr "¡El método get_memory no está implementado!" +msgid "You cannot perform this operation." +msgstr "" #. module: base #: field:ir.actions.server,code:0 @@ -2726,7 +2745,6 @@ msgstr "Relación" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2868,9 +2886,9 @@ msgid "Childs Field" msgstr "Campo hijos" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Nombre de rol" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "" #. module: base #: code:addons/base/res/res_user.py:0 @@ -2881,7 +2899,7 @@ msgstr "¡No se puede eliminar el usuario principal!" #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" -msgstr "" +msgstr "Versión instalada" #. module: base #: view:res.lang:0 @@ -2932,6 +2950,11 @@ msgstr "Exportar un archivo de traducción" msgid "Report Xml" msgstr "Informe XML" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -3000,6 +3023,11 @@ msgstr "Banco" msgid "STOCK_HARDDISK" msgstr "STOCK_HARDDISK" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3155,6 +3183,11 @@ msgstr "Alta" msgid "Instances" msgstr "Instancias" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Nombre de rol" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3230,15 +3263,6 @@ msgstr "Tiene que importar un archivo .CSV codificado en UTF-8. Por favor, compr msgid "Group by" msgstr "Agrupado por" -#. 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 "Categorías de empresas" - #. module: base #: field:ir.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3449,9 +3473,15 @@ msgid "Update Translations" msgstr "Actualizar traducciones" #. module: base -#: view:res.config.view:0 -msgid "Set" -msgstr "Establecer" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" +msgstr "Código" #. module: base #: field:ir.report.custom.fields,width:0 @@ -3529,6 +3559,12 @@ msgstr "" msgid "Channels" msgstr "Canales" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "¡El método get_memory no está implementado!" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3563,9 +3599,9 @@ msgid "Schedule for Installation" msgstr "Programar para instalación" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" -msgstr "" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "Año sin la centuria: %(y)s" #. module: base #: selection:ir.model.fields,select_level:0 @@ -3788,11 +3824,6 @@ msgstr "Tenga en cuenta que esta operación puede tardar unos minutos." msgid "STOCK_COLOR_PICKER" msgstr "STOCK_COLOR_PICKER" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "Configuración de dominio manual" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3811,9 +3842,10 @@ msgid "Kind" msgstr "Clase" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" -msgstr "Cuentas bancarias" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" +msgstr "Este método ya no existe" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 @@ -3830,9 +3862,9 @@ msgid "Tree" msgstr "Árbol" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" -msgstr "" +#: view:res.partner.bank:0 +msgid "Bank accounts" +msgstr "Cuentas bancarias" #. module: base #: selection:ir.actions.todo,start_on:0 @@ -4064,11 +4096,6 @@ msgstr "¡No se puede generar el próximo id porqué algunas empresas tienen un msgid "Unsubscribed" msgstr "No suscrito" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "Año sin la centuria: %(y)s" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4453,11 +4480,6 @@ msgstr "Exportación realizada" msgid "Arguments" msgstr "Argumentos" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4610,9 +4632,9 @@ msgid "Not Installable" msgstr "No instalable" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "Probabilidad (0.50)" +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "" #. module: base #: field:res.partner.address,mobile:0 @@ -5087,6 +5109,11 @@ msgstr "Límite" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "Dirección de la empresa" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5169,9 +5196,9 @@ msgid "Operator" msgstr "Operador" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" -msgstr "Dirección de la empresa" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" +msgstr "" #. module: base #: view:wizard.module.lang.export:0 @@ -5310,8 +5337,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5320,9 +5347,9 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" -msgstr "Categoría de empresa" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" +msgstr "Contacto de prospección" #. module: base #: selection:ir.ui.menu,icon:0 @@ -5617,7 +5644,7 @@ msgstr "Gráfico" #. module: base #: field:ir.module.module,installed_version:0 msgid "Latest version" -msgstr "" +msgstr "Última versión" #. module: base #: model:ir.model,name:base.model_ir_actions_server @@ -5857,6 +5884,11 @@ msgstr "Acceso a menús" msgid "Trigger Object" msgstr "Objeto del disparo" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "Mes: %(month)s" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5879,9 +5911,13 @@ msgid "Error" msgstr "Error" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" -msgstr "" +#: 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 "Categorías de empresas" #. module: base #: model:ir.model,name:base.model_workflow_activity @@ -6166,7 +6202,7 @@ msgstr "Vista previa de la imagen" #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" -msgstr "Elementos del flujo de trabajo" +msgstr "Elementos del flujo" #. module: base #: view:res.lang:0 @@ -6218,7 +6254,7 @@ msgstr "Nombre informe" #. module: base #: view:workflow.instance:0 msgid "Workflow Instances" -msgstr "Instancias flujo de trabajo" +msgstr "Instancias del flujo" #. module: base #: model:ir.ui.menu,name:base.next_id_9 @@ -6314,9 +6350,9 @@ msgid "Modules to be installed, upgraded or removed" msgstr "Módulos para ser instalados, actualizados o eliminados" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" -msgstr "Mes: %(month)s" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_partner_address_form @@ -6393,11 +6429,6 @@ msgstr "Descripción general" msgid "Cancel Install" msgstr "Cancelar instalación" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/i18n/et_ET.po b/bin/addons/base/i18n/et_ET.po index 077dcb943f6..7ccf57ec73b 100644 --- a/bin/addons/base/i18n/et_ET.po +++ b/bin/addons/base/i18n/et_ET.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 17:54:38+0000\n" -"PO-Revision-Date: 2008-12-22 17:54:38+0000\n" +"POT-Creation-Date: 2009-01-03 02:05:36+0000\n" +"PO-Revision-Date: 2009-01-03 02:05:36+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -30,7 +30,7 @@ msgstr "" #. module: base #: view:res.lang:0 msgid "Legends for Date and Time Formats" -msgstr "" +msgstr "Legend kuupäeva ja kellaja formaatidele" #. module: base #: field:ir.actions.report.xml,report_name:0 @@ -71,7 +71,7 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_SAVE" -msgstr "" +msgstr "STOCK_SAVE" #. module: base #: model:ir.actions.act_window,name:base.action_res_users_my @@ -91,7 +91,12 @@ msgstr "Funktsiooni nimi" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-account" -msgstr "terp-konto" +msgstr "terp-account" + +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "Partneri kategooria" #. module: base #: field:res.partner.address,title:0 @@ -108,7 +113,7 @@ msgstr "SMS Sõnum" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_EDIT" -msgstr "" +msgstr "STOCK_EDIT" #. module: base #: model:ir.actions.act_window,name:base.res_partner_som-act @@ -119,7 +124,7 @@ msgstr "Meeleolud" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_SORT_ASCENDING" -msgstr "" +msgstr "STOCK_SORT_ASCENDING" #. module: base #: view:res.groups:0 @@ -136,7 +141,7 @@ msgstr "Vaata Ülesehitust" #. 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 @@ -192,7 +197,7 @@ msgstr "Objekt" #. module: base #: view:wizard.module.lang.export:0 msgid "To browse official translations, you can visit this link: " -msgstr "" +msgstr "Ametlike tõlgete sirvimiseks külasta seda viita: " #. module: base #: model:ir.actions.act_window,name:base.action_module_category_tree @@ -203,17 +208,17 @@ msgstr "Moodulite Kategooriad" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Ukrainian / украї́нська мо́ва" -msgstr "" +msgstr "Ukraina / украї́нська мо́ва" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Hungarian / Magyar" -msgstr "" +msgstr "Ungari / Magyar" #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" -msgstr "" +msgstr "ir.default" #. module: base #: selection:ir.actions.todo,state:0 @@ -233,27 +238,27 @@ msgstr "Päis/jalus" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_100" -msgstr "" +msgstr "STOCK_ZOOM_100" #. module: base #: model:ir.model,name:base.model_res_partner_bank_type_field msgid "Bank type fields" -msgstr "" +msgstr "Panga tüübi väljad" #. 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 "Holland / Nederlands" #. module: base #: view:wizard.module.lang.export:0 msgid "Export translation file" -msgstr "Eksporgi tõlkefail" +msgstr "Ekspordi tõlkefail" #. module: base #: field:res.partner.event.type,key:0 @@ -278,7 +283,7 @@ msgstr "Riigid" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_HELP" -msgstr "" +msgstr "STOCK_HELP" #. module: base #: help:ir.actions.server,sequence:0 @@ -288,7 +293,7 @@ msgstr "" #. module: base #: view:ir.module.module:0 msgid "Created Views" -msgstr "" +msgstr "Loodud vaated" #. module: base #: selection:res.request,priority:0 @@ -309,7 +314,7 @@ msgstr "Imporid uus keel" #: wizard_field:server.action.create,step_1,report:0 #: wizard_view:server.action.create,step_1:0 msgid "Select Report" -msgstr "" +msgstr "Vali aruanne" #. module: base #: field:ir.report.custom.fields,fc1_condition:0 @@ -326,7 +331,7 @@ msgstr "Iga aasta" #. module: base #: rml:ir.module.reference:0 msgid "1cm 28cm 20cm 28cm" -msgstr "" +msgstr "1cm 28cm 20cm 28cm" #. module: base #: field:ir.sequence,suffix:0 @@ -347,7 +352,7 @@ msgstr "" #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" -msgstr "" +msgstr "12. %w ==> 5 ( Reede on 6. päev)" #. module: base #: model:ir.actions.report.xml,name:base.res_partner_address_report @@ -357,7 +362,7 @@ msgstr "Sildid" #. module: base #: field:ir.actions.act_window,target:0 msgid "Target Window" -msgstr "" +msgstr "Sihtaken" #. module: base #: view:res.lang:0 @@ -370,8 +375,8 @@ msgid "Sender's email" msgstr "Saatja e-kiri" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" msgstr "" #. module: base @@ -391,7 +396,7 @@ msgstr "" #. module: base #: field:ir.actions.todo,start_on:0 msgid "Start On" -msgstr "" +msgstr "Algusaeg" #. module: base #: rml:ir.module.reference:0 @@ -418,23 +423,23 @@ msgstr "Siirded" #. 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: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 "Ühenda toimingud kliendi sündmustega" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_SELECT_COLOR" -msgstr "" +msgstr "STOCK_SELECT_COLOR" #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" -msgstr "" +msgstr "GPL-2 või hilisem versioon" #. module: base #: selection:workflow.activity,kind:0 @@ -444,23 +449,23 @@ msgstr "Peata kõik" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NEW" -msgstr "" +msgstr "STOCK_NEW" #. module: base #: model:ir.model,name:base.model_ir_actions_report_custom #: selection:ir.ui.menu,action:0 msgid "ir.actions.report.custom" -msgstr "" +msgstr "ir.actions.report.custom" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CANCEL" -msgstr "" +msgstr "STOCK_CANCEL" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" -msgstr "" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" +msgstr "odt" #. module: base #: constraint:ir.ui.view:0 @@ -477,7 +482,7 @@ msgstr "" #: field:ir.actions.report.xml,type:0 #: field:ir.report.custom,type:0 msgid "Report Type" -msgstr "" +msgstr "Aruande tüüp" #. module: base #: field:ir.actions.todo,state:0 @@ -493,13 +498,13 @@ msgstr "" #: field:workflow.workitem,state:0 #: view:res.country.state:0 msgid "State" -msgstr "Olek" +msgstr "Maakond" #. module: base #: rml:ir.module.reference:0 #: field:maintenance.contract.module,version:0 msgid "Version" -msgstr "" +msgstr "Versioon" #. module: base #: selection:ir.module.module,license:0 @@ -509,7 +514,7 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-administration" -msgstr "" +msgstr "terp-administration" #. module: base #: field:res.partner,comment:0 @@ -539,12 +544,12 @@ msgstr "Nõustaja info" #. module: base #: view:res.lang:0 msgid "4. %b, %B ==> Dec, December" -msgstr "" +msgstr "4. %b, %B ==> Dets, Detsember" #. 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 @@ -558,7 +563,7 @@ msgstr "Vorm" #: code:osv/orm.py:0 #, python-format msgid "Can not define a column %s. Reserved keyword !" -msgstr "" +msgstr "Ei sa määratleda veergu %s. Reserveeritud võtmesõna !" #. module: base #: help:ir.ui.menu,groups_id:0 @@ -568,7 +573,7 @@ msgstr "" #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" -msgstr "" +msgstr "Sihttoiming" #. module: base #: model:res.partner.category,name:base.res_partner_category_10 @@ -578,7 +583,7 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_QUIT" -msgstr "" +msgstr "STOCK_QUIT" #. module: base #: code:osv/orm.py:0 @@ -604,7 +609,7 @@ msgstr "Viit" #. module: base #: selection:maintenance.contract,state:0 msgid "Valid" -msgstr "" +msgstr "Kehtiv" #. module: base #: code:addons/base/module/wizard/wizard_export_lang.py:0 @@ -615,14 +620,14 @@ msgstr "uus" #. 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 #: field:ir.actions.act_window.view,multi:0 msgid "On multiple doc." -msgstr "" +msgstr "Mitmel dokumendil." #. module: base #: view:res.lang:0 @@ -632,12 +637,12 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_workflow_triggers msgid "workflow.triggers" -msgstr "" +msgstr "workflow.triggers" #. module: base #: model:ir.model,name:base.model_ir_ui_view msgid "ir.ui.view" -msgstr "" +msgstr "ir.ui.view" #. module: base #: field:ir.report.custom.fields,report_id:0 @@ -647,7 +652,7 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-hr" -msgstr "" +msgstr "terp-hr" #. module: base #: field:res.partner.bank.type.field,size:0 @@ -668,7 +673,7 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-purchase" -msgstr "" +msgstr "terp-purchase" #. module: base #: field:res.partner.address,name:0 @@ -684,7 +689,7 @@ msgstr "" #. module: base #: view:ir.module.module:0 msgid "Schedule Upgrade" -msgstr "" +msgstr "Graafiku uuendus" #. module: base #: wizard_field:module.module.update,init,repositories:0 @@ -725,7 +730,7 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_menu msgid "ir.ui.menu" -msgstr "" +msgstr "ir.ui.menu" #. module: base #: code:osv/orm.py:0 @@ -798,12 +803,12 @@ msgstr "" #: field:ir.actions.url,type:0 #: field:ir.actions.act_window,type:0 msgid "Action Type" -msgstr "" +msgstr "Toimingu tüüp" #. module: base #: help:ir.actions.act_window,limit:0 msgid "Default limit for the list view" -msgstr "" +msgstr "Vaikimisi limiit nimekirjavaatele" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 @@ -813,7 +818,7 @@ 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 #: field:ir.actions.act_window,src_model:0 @@ -828,7 +833,7 @@ msgstr "Suurus" #. module: base #: field:res.partner.bank.type,field_ids:0 msgid "Type fields" -msgstr "" +msgstr "Tüübi väljad" #. module: base #: model:ir.actions.act_window,name:base.act_ir_actions_todo_form @@ -840,7 +845,7 @@ 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 @@ -851,12 +856,12 @@ msgstr "Grupp" #. module: base #: help:res.partner,customer:0 msgid "Check this box if the partner is a customer." -msgstr "" +msgstr "Märgi see kast, kui partner on klient." #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FLOPPY" -msgstr "" +msgstr "STOCK_FLOPPY" #. module: base #: model:ir.ui.menu,name:base.menu_custom @@ -896,7 +901,7 @@ msgstr "Paigaldamata moodulid" #. module: base #: help:res.partner.category,active:0 msgid "The active field allows you to hide the category, without removing it." -msgstr "" +msgstr "Aktiivne väli lubab sul peita kategooriat, seda eemaldamata." #. module: base #: selection:wizard.module.lang.export,format:0 @@ -906,13 +911,13 @@ msgstr "PO fail" #. module: base #: model:ir.model,name:base.model_res_partner_event msgid "res.partner.event" -msgstr "" +msgstr "res.partner.event" #. module: base #: wizard_field:server.action.create,init,type:0 #: wizard_view:server.action.create,init:0 msgid "Select Action Type" -msgstr "" +msgstr "Vali toimingu tüüp" #. module: base #: code:addons/base/module/wizard/wizard_export_lang.py:0 @@ -930,37 +935,47 @@ msgstr "Valuutad" #. module: base #: selection:ir.actions.todo,type:0 msgid "Configure" -msgstr "" +msgstr "Seadista" #. 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 "" +msgstr "Kui valitud keel on laetud süsteemi siis kõik partneriga seotud dokumendid prinditakse selles keeles. Kui ei siis inglise keeles." #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDERLINE" -msgstr "" +msgstr "STOCK_UNDERLINE" + +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "Menüü :" #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" -msgstr "" +msgstr "Kuupäeva vorming" #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" -msgstr "Alatsi otsitav" +msgstr "Alati otsitav" #. module: base #: selection:ir.model.fields,state:0 msgid "Base Field" -msgstr "" +msgstr "Baasväli" #. module: base #: field:workflow.instance,uid:0 @@ -991,7 +1006,7 @@ msgstr "Uued moodulid" #. module: base #: view:res.lang:0 msgid "Examples" -msgstr "" +msgstr "Näited" #. module: base #: field:ir.actions.report.xml,report_sxw_content:0 @@ -1017,7 +1032,7 @@ msgstr "Planeerija" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_BOLD" -msgstr "" +msgstr "STOCK_BOLD" #. module: base #: field:ir.report.custom.fields,fc0_operande:0 @@ -1058,22 +1073,22 @@ msgstr "Kokkuvõte" #. module: base #: view:maintenance.contract.wizard:0 msgid "Maintenance contract added !" -msgstr "" +msgstr "Hooldusleping lisatud!" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-graph" -msgstr "" +msgstr "terp-graph" #. 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 #: field:res.partner.bank,state:0 @@ -1090,7 +1105,7 @@ msgstr "" #. module: base #: view:res.lang:0 msgid "2. %a ,%A ==> Fri, Friday" -msgstr "" +msgstr "2. %a ,%A ==> Re, Reede" #. module: base #: code:osv/orm.py:0 @@ -1106,24 +1121,24 @@ msgstr "" #. module: base #: view:res.lang:0 msgid "%B - Full month name." -msgstr "" +msgstr "%B - Täispikk kuu nimetus." #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_REWIND" -msgstr "" +msgstr "STOCK_MEDIA_REWIND" #. 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 "Partneri sündmused" #. module: base #: model:ir.model,name:base.model_workflow_transition msgid "workflow.transition" -msgstr "" +msgstr "workflow.transition" #. module: base #: view:res.lang:0 @@ -1133,7 +1148,7 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CUT" -msgstr "" +msgstr "STOCK_CUT" #. module: base #: rml:ir.module.reference:0 @@ -1143,7 +1158,7 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NO" -msgstr "" +msgstr "STOCK_NO" #. module: base #: selection:res.config.view,view:0 @@ -1186,7 +1201,8 @@ msgstr "Aadress" #: help:res.country,code:0 msgid "The ISO country code in two chars.\n" "You can use this field for quick search." -msgstr "" +msgstr "Kahetäheline ISO riigikood.\n" +"Sa saad seda välja kasutada kiirotsinguks." #. module: base #: selection:workflow.activity,join_mode:0 @@ -1219,12 +1235,12 @@ msgstr "Süsteemi uuendus" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REVERT_TO_SAVED" -msgstr "" +msgstr "STOCK_REVERT_TO_SAVED" #. module: base #: field:res.partner.event,event_ical_id:0 msgid "iCal id" -msgstr "" +msgstr "iCal id" #. module: base #: wizard_field:module.lang.import,init,name:0 @@ -1242,7 +1258,7 @@ msgstr "" #: field:ir.ui.menu,parent_id:0 #: field:wizard.ir.model.menu.create,menu_id:0 msgid "Parent Menu" -msgstr "" +msgstr "Ülemmenüü" #. module: base #: code:addons/base/ir/ir_model.py:0 @@ -1253,7 +1269,7 @@ msgstr "" #. module: base #: model:ir.ui.menu,name:base.next_id_4 msgid "Low Level Objects" -msgstr "" +msgstr "Alamtaseme objektid" #. module: base #: code:osv/orm.py:0 @@ -1277,7 +1293,7 @@ msgstr "Vaate tüüp" #. module: base #: model:ir.model,name:base.model_ir_report_custom msgid "ir.report.custom" -msgstr "" +msgstr "ir.report.custom" #. module: base #: field:ir.exports.line,export_id:0 @@ -1287,12 +1303,12 @@ msgstr "" #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" -msgstr "" +msgstr "acc_number" #. module: base #: view:ir.model:0 msgid "Model Description" -msgstr "" +msgstr "Mudeli kirjeldus" #. module: base #: selection:maintenance.contract,state:0 @@ -1317,12 +1333,12 @@ msgstr "Aruande väljad" #. module: base #: model:ir.ui.menu,name:base.next_id_2 msgid "User Interface" -msgstr "" +msgstr "Kasutajaliides" #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" -msgstr "" +msgstr "ir.values" #. module: base #: selection:ir.report.custom,type:0 @@ -1337,17 +1353,17 @@ msgstr "" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Spanish (AR) / Español (AR)" -msgstr "" +msgstr "Hispaania (AR) / Español (AR)" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_JUSTIFY_CENTER" -msgstr "" +msgstr "STOCK_JUSTIFY_CENTER" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_FIT" -msgstr "" +msgstr "STOCK_ZOOM_FIT" #. module: base #: view:ir.sequence.type:0 @@ -1384,12 +1400,12 @@ msgstr "Uuenda moodulite nimekirja" #. module: base #: view:res.config.view:0 msgid "Configure simple view" -msgstr "" +msgstr "Seadista lihtvaade" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Bulgarian / български" -msgstr "" +msgstr "Bulgaaria / български" #. module: base #: field:ir.module.module,license:0 @@ -1399,7 +1415,7 @@ msgstr "Litsents" #. module: base #: model:ir.model,name:base.model_ir_actions_actions msgid "ir.actions.actions" -msgstr "" +msgstr "ir.actions.actions" #. module: base #: field:ir.module.repository,url:0 @@ -1432,7 +1448,7 @@ msgstr "Püstpaigutus" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Slovenian / slovenščina" -msgstr "" +msgstr "Sloveenia / slovenščina" #. module: base #: field:ir.actions.server,srcmodel_id:0 @@ -1474,7 +1490,7 @@ msgstr "Uuendatavad moodulid" #. module: base #: field:ir.model.data,date_update:0 msgid "Update Date" -msgstr "" +msgstr "Uuendamise kuupäev" #. module: base #: model:res.partner.title,name:base.res_partner_title_miss @@ -1485,17 +1501,17 @@ msgstr "Preili" #: field:workflow.workitem,act_id:0 #: view:workflow.activity:0 msgid "Activity" -msgstr "" +msgstr "Tegevus" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Swedish / svenska" -msgstr "" +msgstr "Rootsi / svenska" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_LAST" -msgstr "" +msgstr "STOCK_GOTO_LAST" #. module: base #: field:ir.report.custom,print_orientation:0 @@ -1505,7 +1521,7 @@ msgstr "Lehepaigutus" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_BOTTOM" -msgstr "" +msgstr "STOCK_GOTO_BOTTOM" #. module: base #: field:ir.actions.report.xml,header:0 @@ -1545,7 +1561,7 @@ msgstr "" #. module: base #: view:res.users:0 msgid "Add User" -msgstr "" +msgstr "Lisa kasutaja" #. module: base #: field:res.request,trigger_date:0 @@ -1555,12 +1571,12 @@ msgstr "" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Croatian / hrvatski jezik" -msgstr "" +msgstr "Horvaatia / hrvatski jezik" #. 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.partner.bank:0 @@ -1571,7 +1587,7 @@ msgstr "Pangakonto" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GO_FORWARD" -msgstr "" +msgstr "STOCK_GO_FORWARD" #. module: base #: field:res.bank,zip:0 @@ -1588,7 +1604,7 @@ msgstr "Autor" #. module: base #: view:ir.model:0 msgid "Fields Description" -msgstr "" +msgstr "Väljade kirjeldus" #. module: base #: view:res.lang:0 @@ -1598,12 +1614,12 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDELETE" -msgstr "" +msgstr "STOCK_UNDELETE" #. module: base #: selection:wizard.module.lang.export,state:0 msgid "choose" -msgstr "" +msgstr "vali" #. module: base #: selection:ir.module.module.dependency,state:0 @@ -1613,7 +1629,7 @@ msgstr "Eemaldamatu" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DIALOG_QUESTION" -msgstr "" +msgstr "STOCK_DIALOG_QUESTION" #. module: base #: selection:ir.actions.server,state:0 @@ -1647,7 +1663,7 @@ msgstr "" #. module: base #: view:maintenance.contract.wizard:0 msgid "_Close" -msgstr "" +msgstr "_Sulge" #. module: base #: field:res.request.history,body:0 @@ -1662,17 +1678,17 @@ msgstr "Suund" #. module: base #: selection:maintenance.contract,kind:0 msgid "Full" -msgstr "" +msgstr "Täielik" #. 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 #: help:ir.actions.server,state:0 msgid "Type of the Action that is to be execute" -msgstr "" +msgstr "Käivitatava toimingu tüüp" #. module: base #: model:ir.actions.act_window,name:base.action_ui_view @@ -1695,12 +1711,12 @@ msgstr "Saada e-kiri" #. module: base #: model:res.partner.category,name:base.res_partner_category_4 msgid "Basic Partner" -msgstr "" +msgstr "Elementaarne partner" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_SELECT_FONT" -msgstr "" +msgstr "STOCK_SELECT_FONT" #. module: base #: code:addons/base/module/module.py:0 @@ -1726,7 +1742,7 @@ msgstr "Proua" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PASTE" -msgstr "" +msgstr "STOCK_PASTE" #. module: base #: model:ir.actions.act_window,name:base.action_model_model @@ -1738,7 +1754,7 @@ msgstr "Objektid" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GOTO_FIRST" -msgstr "" +msgstr "STOCK_GOTO_FIRST" #. module: base #: view:res.lang:0 @@ -1754,7 +1770,7 @@ msgstr "Töövood" #. module: base #: field:ir.model.fields,model_id:0 msgid "Object id" -msgstr "" +msgstr "Objekt id" #. module: base #: view:res.lang:0 @@ -1815,7 +1831,7 @@ msgstr "Maksetähtaeg" #. module: base #: model:ir.ui.menu,name:base.menu_low_workflow msgid "Workflow Items" -msgstr "" +msgstr "Töövoo esemed" #. module: base #: field:res.request,ref_doc2:0 @@ -1825,32 +1841,27 @@ 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 "terp-stock" -msgstr "" +msgstr "terp-stock" #. module: base #: view:wizard.module.lang.export:0 msgid "Get file" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" -msgstr "" +msgstr "Tööpäevad" #. module: base #: model:ir.model,name:base.model_res_roles msgid "res.roles" -msgstr "" +msgstr "res.roles" #. module: base #: help:ir.cron,priority:0 @@ -1861,6 +1872,12 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_model_data msgid "ir.model.data" +msgstr "ir.model.data" + +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" msgstr "" #. module: base @@ -1882,7 +1899,7 @@ msgstr "" #. module: base #: view:res.users:0 msgid "Skip" -msgstr "" +msgstr "Jäta vahele" #. module: base #: model:ir.actions.act_window,name:base.act_menu_create @@ -1893,7 +1910,7 @@ msgstr "Loo menüü" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_RECORD" -msgstr "" +msgstr "STOCK_MEDIA_RECORD" #. module: base #: selection:ir.rule,operator:0 @@ -1903,29 +1920,29 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_maintenance_contract_module msgid "maintenance contract modules" -msgstr "" +msgstr "hoolduslepingu moodulid" #. module: base #: model:ir.ui.menu,name:base.menu_workflow_root msgid "Workflow Definitions" -msgstr "" +msgstr "Töövoo definitsioonid" #. module: base #: 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:ir.actions.act_window,name:base.grant_menu_access #: model:ir.ui.menu,name:base.menu_grant_menu_access msgid "Grant Access To Menus" -msgstr "" +msgstr "Taga ligipääs menüüdele" #. module: base #: selection:maintenance.contract.wizard,state:0 msgid "Draft" -msgstr "" +msgstr "Mustand" #. module: base #: code:addons/base/module/module.py:0 @@ -1962,17 +1979,16 @@ msgstr "Globaalne" msgid "From" msgstr "Saatja" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "" - #. module: base #: selection:res.partner.event,partner_type:0 msgid "Retailer" msgstr "Jaemüüja" +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -1981,7 +1997,7 @@ msgstr "Saada" #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" -msgstr "" +msgstr "Edasi" #. module: base #: model:ir.ui.menu,name:base.next_id_11 @@ -1998,15 +2014,10 @@ msgstr "TGZ arhiiv" msgid "Set NULL" msgstr "" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" -msgstr "" +msgstr "terp-report" #. module: base #: field:res.partner.event,som:0 @@ -2028,27 +2039,32 @@ msgstr "Tüüp" #: field:ir.model.fields,state:0 #: field:ir.model,state:0 msgid "Manualy Created" -msgstr "" +msgstr "Käsitsi loodud" #. module: base #: view:ir.module.module:0 msgid "Defined Reports" msgstr "" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" -msgstr "" +msgstr "STOCK_ZOOM_IN" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FILE" -msgstr "" +msgstr "STOCK_FILE" #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" -msgstr "" +msgstr "Komponentidega varustaja" #. module: base #: view:ir.rule.group:0 @@ -2058,13 +2074,13 @@ msgstr "" #. module: base #: wizard_view:module.upgrade,next:0 msgid "Note that this operation my take a few minutes." -msgstr "" +msgstr "See operatsioon võib võtta mõne minuti." #. module: base #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Invalid operation" -msgstr "" +msgstr "Vigane operatsioon" #. module: base #: model:ir.ui.menu,name:base.menu_translation @@ -2081,27 +2097,27 @@ msgstr "RML sisu" #. module: base #: model:ir.model,name:base.model_ir_model_grid msgid "Objects Security Grid" -msgstr "" +msgstr "Objektide turvavõrk" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONNECT" -msgstr "" +msgstr "STOCK_CONNECT" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_SAVE_AS" -msgstr "" +msgstr "STOCK_SAVE_AS" #. module: base #: selection:ir.model.fields,select_level:0 msgid "Not Searchable" -msgstr "" +msgstr "Pole otsitav" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DND" -msgstr "" +msgstr "STOCK_DND" #. module: base #: field:ir.sequence,padding:0 @@ -2111,13 +2127,13 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_OK" -msgstr "" +msgstr "STOCK_OK" #. module: base #: code:report/report_sxw.py:0 #, python-format msgid "print" -msgstr "" +msgstr "prindi" #. module: base #: code:addons/base/ir/ir_model.py:0 @@ -2130,6 +2146,11 @@ msgstr "Salasõna sisestamata !" msgid "RML Header" msgstr "RML päis" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "Määra" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2151,7 +2172,7 @@ msgstr "Puudub" #: 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 #: model:ir.model,name:base.model_workflow @@ -2177,7 +2198,7 @@ msgstr "" #. module: base #: help:res.partner,supplier:0 msgid "Check this box if the partner is a supplier. If it's not checked, purchase people will not see it when encoding a purchase order." -msgstr "" +msgstr "Märgi see kast, kui partner on varustaja. Kui see kast ei ole märgitud, siis ostuinimesed ei näe seda ostutellimust töödeldes." #. module: base #: wizard_view:module.module.update,init:0 @@ -2197,12 +2218,12 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNINDENT" -msgstr "" +msgstr "STOCK_UNINDENT" #. module: base #: selection:ir.actions.todo,start_on:0 msgid "At Once" -msgstr "" +msgstr "Korraga" #. module: base #: model:ir.ui.menu,name:base.menu_security @@ -2230,17 +2251,17 @@ msgstr "Tänav" #. module: base #: field:ir.cron,interval_number:0 msgid "Interval Number" -msgstr "" +msgstr "Intervalli number" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_FIND" -msgstr "" +msgstr "STOCK_FIND" #. module: base #: selection:maintenance.contract,kind:0 msgid "Partial" -msgstr "" +msgstr "Osaline" #. module: base #: view:ir.module.repository:0 @@ -2264,14 +2285,14 @@ msgid "Recursion error in modules dependencies !" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" -msgstr "" +#: view:ir.rule:0 +msgid "Manual domain setup" +msgstr "Manuaalne domeeni seadistus" #. module: base #: field:ir.actions.report.xml,report_xsl:0 msgid "XSL path" -msgstr "" +msgstr "XSL rada" #. module: base #: field:res.groups,model_access:0 @@ -2279,12 +2300,12 @@ msgstr "" #: view:ir.model.access:0 #: view:res.groups:0 msgid "Access Controls" -msgstr "Juurdepääsukontroll" +msgstr "Ligipääsukontroll" #. 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.dependency,state:0 @@ -2321,18 +2342,18 @@ msgstr "" #. module: base #: view:res.lang:0 msgid "5. %y, %Y ==> 08, 2008" -msgstr "" +msgstr "5. %y, %Y ==> 08, 2008" #. module: base #: field:ir.values,res_id:0 msgid "Object ID" -msgstr "" +msgstr "Objekt ID" #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 msgid "Street2" -msgstr "" +msgstr "Tänav2" #. module: base #: field:ir.report.custom.fields,alignment:0 @@ -2342,17 +2363,17 @@ msgstr "Joondus" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_UNDO" -msgstr "" +msgstr "STOCK_UNDO" #. module: base #: field:ir.attachment,create_date:0 msgid "Date Created" -msgstr "" +msgstr "Loomise kuupäev" #. module: base #: view:ir.attachment:0 msgid "Attachment" -msgstr "" +msgstr "Manus" #. module: base #: selection:ir.rule,operator:0 @@ -2362,7 +2383,7 @@ msgstr ">=" #. module: base #: model:ir.model,name:base.model_ir_actions_todo msgid "ir.actions.todo" -msgstr "" +msgstr "ir.actions.todo" #. module: base #: model:ir.ui.menu,name:base.menu_administration @@ -2382,7 +2403,7 @@ msgstr "" #. module: base #: wizard_view:module.module.update,init:0 msgid "This function will check for new modules in the 'addons' path and on module repositories:" -msgstr "" +msgstr "See funktsioon kontrollib uute moodulite olemasolu 'lisade' rajas ning moodulite varamus:" #. module: base #: model:ir.model,name:base.model_res_country @@ -2409,19 +2430,19 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GO_BACK" -msgstr "" +msgstr "STOCK_GO_BACK" #. module: base #: code:addons/base/ir/ir_model.py:0 #: code:osv/orm.py:0 #, python-format msgid "AccessError" -msgstr "" +msgstr "Ligipääsuviga" #. module: base #: view:res.lang:0 msgid "======================================================" -msgstr "" +msgstr "======================================================" #. module: base #: view:res.lang:0 @@ -2436,12 +2457,12 @@ msgstr "" #. module: base #: selection:ir.report.custom,type:0 msgid "Bar Chart" -msgstr "" +msgstr "Ribadiagramm" #. 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 @@ -2452,7 +2473,7 @@ msgstr "Veebileht" #. module: base #: field:ir.model.fields,selection:0 msgid "Field Selection" -msgstr "" +msgstr "Välja valimine" #. module: base #: field:ir.rule.group,rules:0 @@ -2469,7 +2490,7 @@ msgstr "" #: field:ir.ui.menu,icon_pict:0 #: field:wizard.module.lang.export,state:0 msgid "unknown" -msgstr "" +msgstr "tundmatu" #. module: base #: field:ir.ui.view_sc,res_id:0 @@ -2479,12 +2500,17 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_JUSTIFY_FILL" -msgstr "" +msgstr "STOCK_JUSTIFY_FILL" #. module: base #: selection:res.request,state:0 msgid "draft" -msgstr "" +msgstr "mustand" + +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "Tõenäosus (0.50)" #. module: base #: field:res.currency.rate,name:0 @@ -2497,7 +2523,7 @@ msgstr "Kuupäev" #. module: base #: field:ir.actions.report.xml,report_sxw:0 msgid "SXW path" -msgstr "" +msgstr "SXW rada" #. module: base #: view:ir.attachment:0 @@ -2512,7 +2538,7 @@ msgstr "RML" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DIALOG_ERROR" -msgstr "" +msgstr "STOCK_DIALOG_ERROR" #. module: base #: model:ir.actions.act_window,name:base.action_partner_category @@ -2567,17 +2593,17 @@ msgstr "Firmad" #: model:ir.actions.act_window,name:base.action_partner_supplier_form #: model:ir.ui.menu,name:base.menu_partner_supplier_form msgid "Suppliers Partners" -msgstr "Tarnijate partnerid" +msgstr "Tarnijad" #. module: base #: model:ir.model,name:base.model_ir_sequence_type msgid "ir.sequence.type" -msgstr "" +msgstr "ir.sequence.type" #. module: base #: field:ir.actions.wizard,type:0 msgid "Action type" -msgstr "" +msgstr "Toimingu tüüp" #. module: base #: selection:wizard.module.lang.export,format:0 @@ -2587,7 +2613,7 @@ msgstr "CSV fail" #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" -msgstr "" +msgstr "Emaettevõte" #. module: base #: view:ir.attachment:0 @@ -2597,7 +2623,7 @@ msgstr "" #. module: base #: field:res.lang,decimal_point:0 msgid "Decimal Separator" -msgstr "" +msgstr "Kümnendkohtade eraldaja" #. module: base #: field:ir.module.category,module_nr:0 @@ -2607,7 +2633,7 @@ msgstr "Moodulite arv" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_PLAY" -msgstr "" +msgstr "STOCK_MEDIA_PLAY" #. module: base #: field:ir.model.data,date_init:0 @@ -2627,12 +2653,12 @@ msgstr "Baasobjekt" #. 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 @@ -2643,35 +2669,29 @@ msgid "(year)=" msgstr "(year)=" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" +#: rml:ir.module.reference:0 +msgid "Dependencies :" msgstr "" #. module: base #: view:ir.module.module:0 msgid "Features" -msgstr "" +msgstr "Võimalused" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-partner" -msgstr "" +msgstr "terp-partner" #. module: base #: field:ir.attachment,create_uid:0 msgid "Creator" -msgstr "" +msgstr "Looja" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" +msgid "You cannot perform this operation." msgstr "" #. module: base @@ -2706,7 +2726,7 @@ msgstr "Tegevuse URL" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_INDEX" -msgstr "" +msgstr "STOCK_INDEX" #. module: base #: model:ir.actions.act_window,name:base.action_res_company_tree @@ -2724,7 +2744,6 @@ msgstr "Suhe" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2734,7 +2753,7 @@ msgstr "Tingimus" #: model:ir.actions.act_window,name:base.action_partner_customer_form #: model:ir.ui.menu,name:base.menu_partner_customer_form msgid "Customers Partners" -msgstr "" +msgstr "Kliendid" #. module: base #: wizard_button:res.partner.spam_send,init,end:0 @@ -2754,7 +2773,7 @@ msgstr "Tühista" #. module: base #: model:ir.model,name:base.model_res_users msgid "res.users" -msgstr "" +msgstr "res.users" #. module: base #: model:ir.ui.menu,name:base.menu_management @@ -2778,7 +2797,7 @@ msgstr "" #: field:workflow.instance,res_id:0 #: field:workflow.triggers,res_id:0 msgid "Resource ID" -msgstr "" +msgstr "Vahend ID" #. module: base #: field:ir.model,info:0 @@ -2789,7 +2808,7 @@ msgstr "Informatsioon" #. module: base #: model:ir.model,name:base.model_ir_exports msgid "ir.exports" -msgstr "" +msgstr "ir.exports" #. module: base #: field:workflow.activity,flow_start:0 @@ -2799,7 +2818,7 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MISSING_IMAGE" -msgstr "" +msgstr "STOCK_MISSING_IMAGE" #. module: base #: field:ir.report.custom.fields,bgcolor:0 @@ -2809,12 +2828,12 @@ msgstr "Taustavärv" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REMOVE" -msgstr "" +msgstr "STOCK_REMOVE" #. module: base #: field:ir.actions.report.xml,report_rml:0 msgid "RML path" -msgstr "" +msgstr "RML rada" #. module: base #: field:ir.actions.configuration.wizard,item_id:0 @@ -2866,25 +2885,25 @@ msgid "Childs Field" msgstr "" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Rolli nimi" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "Türgi / Türkçe" #. module: base #: 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 #: field:ir.module.module,latest_version:0 msgid "Installed version" -msgstr "" +msgstr "Paigaldatud versioon" #. module: base #: view:res.lang:0 msgid "9. %j ==> 340" -msgstr "" +msgstr "9. %j ==> 340" #. module: base #: model:ir.actions.act_window,name:base.action_workflow_activity_form @@ -2922,18 +2941,23 @@ msgstr "Kasutajad" #: 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 "Ekspordi tõlkefail" #. 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 aruanne" + +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "-" #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." -msgstr "" +msgstr "Sisemine kasutaja, kes vastutab selle partneriga suhtlemise eest." #. module: base #: selection:ir.translation,type:0 @@ -2959,7 +2983,7 @@ msgstr "" #. module: base #: field:ir.cron,nextcall:0 msgid "Next call date" -msgstr "" +msgstr "Järgmise kõne aeg" #. module: base #: field:ir.report.custom.fields,cumulate:0 @@ -2969,7 +2993,7 @@ msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_14 msgid "Bad customers" -msgstr "" +msgstr "Halvad kliendid" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -2996,7 +3020,12 @@ msgstr "Pank" #. 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 "Aruanded :" #. module: base #: code:tools/translate.py:0 @@ -3037,23 +3066,23 @@ msgstr "Nimi" #: 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 "Lae ametlik tõlge" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_APPLY" -msgstr "" +msgstr "STOCK_APPLY" #. module: base #: field:ir.module.module,reports_by_module:0 msgid "Reports" -msgstr "" +msgstr "Aruanded" #. 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 "Sinu hoolduslepingud" #. module: base #: field:workflow,on_create:0 @@ -3063,17 +3092,17 @@ msgstr "Loomisel" #. module: base #: wizard_view:base.module.import,init:0 msgid "Please give your module .ZIP file to import." -msgstr "" +msgstr "Palun anna oma mooduli .ZIP fail importimiseks." #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CLOSE" -msgstr "" +msgstr "STOCK_CLOSE" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_PAUSE" -msgstr "" +msgstr "STOCK_MEDIA_PAUSE" #. module: base #: code:addons/base/module/wizard/wizard_module_import.py:0 @@ -3095,12 +3124,12 @@ msgstr "GPL-2" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese (BR) / português (BR)" -msgstr "" +msgstr "Portugali (BR) / português (BR)" #. module: base #: field:ir.translation,value:0 msgid "Translation Value" -msgstr "" +msgstr "Tõlge" #. module: base #: help:wizard.module.lang.export,lang:0 @@ -3116,7 +3145,7 @@ msgstr "" #: field:maintenance.contract,module_ids:0 #: view:maintenance.contract:0 msgid "Covered Modules" -msgstr "" +msgstr "Kaetud moodulid" #. module: base #: selection:ir.report.custom.fields,operation:0 @@ -3132,7 +3161,7 @@ msgstr "Ajavöönd" #: 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 "Ligipääsukontrolli võrk" #. module: base #: model:ir.actions.act_window,name:base.ir_sequence_actions @@ -3153,25 +3182,30 @@ msgstr "" msgid "Instances" msgstr "" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Rolli nimi" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" -msgstr "" +msgstr "STOCK_COPY" #. module: base #: selection:ir.actions.todo,start_on:0 msgid "Auto" -msgstr "" +msgstr "Automaatne" #. module: base #: model:res.partner.category,name:base.res_partner_category_3 msgid "Starter Partner" -msgstr "" +msgstr "Uus partner" #. 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 @@ -3181,12 +3215,12 @@ 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 "Veeb" #. module: base #: help:res.bank,bic:0 @@ -3196,7 +3230,7 @@ msgstr "Panga identifitseerimiskood (BIC)" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CDROM" -msgstr "" +msgstr "STOCK_CDROM" #. module: base #: field:workflow.activity,action:0 @@ -3206,7 +3240,7 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DIRECTORY" -msgstr "" +msgstr "STOCK_DIRECTORY" #. module: base #: field:res.partner.event,planned_revenue:0 @@ -3216,7 +3250,7 @@ msgstr "" #. module: base #: view:ir.rule.group:0 msgid "Record rules" -msgstr "" +msgstr "Kirje reeglid" #. module: base #: wizard_view:module.lang.import,init:0 @@ -3226,33 +3260,24 @@ msgstr "" #. module: base #: field:ir.report.custom.fields,groupby:0 msgid "Group by" -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 "Partneri kategooriad" +msgstr "Rühmitamise alus" #. module: base #: field:ir.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 msgid "Readonly" -msgstr "" +msgstr "Ainult loetav" #. module: base #: 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 #: selection:ir.ui.menu,icon:0 msgid "STOCK_ITALIC" -msgstr "" +msgstr "STOCK_ITALIC" #. module: base #: help:ir.actions.report.xml,header:0 @@ -3268,7 +3293,7 @@ msgstr "Arvutustäpsus" #: 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 #: field:res.partner.event,document:0 @@ -3278,12 +3303,12 @@ msgstr "Dokument" #. module: base #: field:res.partner.event,type:0 msgid "Type of Event" -msgstr "" +msgstr "Sündmuse tüüp" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REFRESH" -msgstr "" +msgstr "STOCK_REFRESH" #. module: base #: model:ir.actions.act_window,name:base.ir_sequence_type @@ -3294,7 +3319,7 @@ msgstr "Jada tüüp" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_STOP" -msgstr "" +msgstr "STOCK_STOP" #. module: base #: code:addons/base/ir/ir_model.py:0 @@ -3310,7 +3335,7 @@ msgstr "Kontonumber" #. 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 #: field:ir.attachment,res_id:0 @@ -3320,7 +3345,7 @@ msgstr "" #. module: base #: selection:res.partner.event,type:0 msgid "Purchase Offer" -msgstr "" +msgstr "Ostupakkumine" #. module: base #: selection:ir.module.module.dependency,state:0 @@ -3342,12 +3367,12 @@ 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 msgid "STOCK_FIND_AND_REPLACE" -msgstr "" +msgstr "STOCK_FIND_AND_REPLACE" #. module: base #: field:res.request,history:0 @@ -3364,7 +3389,7 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DIALOG_WARNING" -msgstr "" +msgstr "STOCK_DIALOG_WARNING" #. module: base #: help:ir.module.repository,filter:0 @@ -3397,7 +3422,7 @@ msgstr "Intervalli ühik" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CONVERT" -msgstr "" +msgstr "STOCK_CONVERT" #. module: base #: field:ir.exports,name:0 @@ -3412,12 +3437,12 @@ msgstr "" #. 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 "Päevad" #. module: base #: field:ir.property,value:0 @@ -3436,7 +3461,7 @@ msgstr "" #. module: base #: field:ir.default,field_name:0 msgid "Object field" -msgstr "" +msgstr "Objekti väli" #. module: base #: view:wizard.module.update_translations:0 @@ -3444,9 +3469,15 @@ msgid "Update Translations" msgstr "Uuenda tõlkeid" #. module: base -#: view:res.config.view:0 -msgid "Set" -msgstr "Määra" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" +msgstr "Kood" #. module: base #: field:ir.report.custom.fields,width:0 @@ -3466,12 +3497,12 @@ msgstr "" #. module: base #: field:res.company,rml_footer1:0 msgid "Report Footer 1" -msgstr "" +msgstr "Aruande jalus 1" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_EXECUTE" -msgstr "" +msgstr "STOCK_EXECUTE" #. module: base #: selection:ir.cron,interval_type:0 @@ -3487,7 +3518,7 @@ msgstr "Moodulid on uuendatud / installeeritud !" #. module: base #: field:ir.actions.act_window,domain:0 msgid "Domain Value" -msgstr "" +msgstr "Domeeni väärtus" #. module: base #: selection:ir.translation,type:0 @@ -3510,12 +3541,12 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_YES" -msgstr "" +msgstr "STOCK_YES" #. module: base #: view:ir.actions.server:0 msgid "SMS Configuration" -msgstr "" +msgstr "SMS Seadistus" #. module: base #: model:ir.actions.act_window,name:base.res_partner_canal-act @@ -3524,11 +3555,17 @@ msgstr "" msgid "Channels" msgstr "Kanalid" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +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 "" +msgstr "Ligipääsukontrolli nimekiri" #. module: base #: help:ir.rule.group,global:0 @@ -3539,7 +3576,7 @@ msgstr "" #: code:tools/amount_to_text_en.py:0 #, python-format msgid "Number too large '%d', can not translate it" -msgstr "" +msgstr "Number liiga suur '%d', ei saa seda tõlkida" #. module: base #: field:ir.actions.wizard,wiz_name:0 @@ -3558,9 +3595,9 @@ msgid "Schedule for Installation" msgstr "Planeeri paigaldamisele" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" -msgstr "" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "Aasta ilma sajandita: %(y)s" #. module: base #: selection:ir.model.fields,select_level:0 @@ -3575,7 +3612,7 @@ msgstr "" #. 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 #: model:ir.actions.act_window,name:base.action_partner_form @@ -3598,7 +3635,7 @@ msgstr "Päästiku nimi" #. module: base #: wizard_button:server.action.create,step_1,create:0 msgid "Create" -msgstr "" +msgstr "Loo" #. module: base #: code:addons/base/res/res_user.py:0 @@ -3621,7 +3658,7 @@ msgstr "Otsetee" #. 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 @@ -3640,7 +3677,7 @@ msgstr "Allikas" #: model:ir.actions.act_window,name:base.action_partner_title_contact #: model:ir.ui.menu,name:base.menu_partner_title_contact msgid "Contacts Titles" -msgstr "" +msgstr "Kontaktide tiitlid" #. module: base #: help:res.partner.address,partner_id:0 @@ -3670,12 +3707,12 @@ msgstr "Valem" #. module: base #: view:res.company:0 msgid "Internal Header/Footer" -msgstr "" +msgstr "Sisemine päis/jalus" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_JUSTIFY_LEFT" -msgstr "" +msgstr "STOCK_JUSTIFY_LEFT" #. module: base #: view:res.partner.bank:0 @@ -3696,7 +3733,7 @@ msgstr "Vaate nimi" #. module: base #: field:ir.ui.view_sc,resource:0 msgid "Resource Name" -msgstr "" +msgstr "Vahendi nimi" #. module: base #: code:addons/base/module/wizard/wizard_export_lang.py:0 @@ -3750,7 +3787,7 @@ msgstr "Sagedus" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Catalan / Català" -msgstr "" +msgstr "Katalaani keel / Català" #. module: base #: view:res.request:0 @@ -3766,7 +3803,7 @@ msgstr "Viited" #: code:osv/orm.py:0 #, python-format msgid "This record was modified in the meanwhile" -msgstr "" +msgstr "Seda kirjet muudeti vahepeal" #. module: base #: view:res.lang:0 @@ -3776,22 +3813,17 @@ msgstr "" #. module: base #: wizard_view:module.lang.install,init:0 msgid "Note that this operation may take a few minutes." -msgstr "" +msgstr "See toiming võib võtta mõne minuti." #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COLOR_PICKER" -msgstr "" - -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "" +msgstr "STOCK_COLOR_PICKER" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" -msgstr "" +msgstr "terp-product" #. module: base #: field:res.request,act_to:0 @@ -3806,9 +3838,10 @@ msgid "Kind" msgstr "" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" -msgstr "Pangakontod" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" +msgstr "Seda meetodit ei eksisteeri enam" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 @@ -3825,24 +3858,24 @@ msgid "Tree" msgstr "Puu" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" -msgstr "" +#: view:res.partner.bank:0 +msgid "Bank accounts" +msgstr "Pangakontod" #. module: base #: selection:ir.actions.todo,start_on:0 msgid "Manual" -msgstr "" +msgstr "Manuaalne" #. module: base #: view:maintenance.contract.wizard:0 msgid "Could you check your contract information ?" -msgstr "" +msgstr "Kas sa võiksid kontrollida oma lepingu informatsiooni." #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_CLEAR" -msgstr "" +msgstr "STOCK_CLEAR" #. module: base #: help:res.users,password:0 @@ -3852,12 +3885,12 @@ msgstr "" #. module: base #: field:ir.model.access,perm_read:0 msgid "Read Access" -msgstr "" +msgstr "Lugemisõigus" #. module: base #: rml:ir.module.reference:0 msgid "Directory" -msgstr "" +msgstr "Kataloog" #. module: base #: selection:ir.report.custom,type:0 @@ -3867,7 +3900,7 @@ msgstr "" #. module: base #: field:res.lang,thousands_sep:0 msgid "Thousands Separator" -msgstr "" +msgstr "Tuhandeliste eraldaja" #. module: base #: selection:ir.model.fields,state:0 @@ -3877,7 +3910,7 @@ msgstr "" #. module: base #: field:ir.model.fields,relation_field:0 msgid "Relation Field" -msgstr "" +msgstr "Seose väli" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 @@ -3894,7 +3927,7 @@ msgstr "" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Spanish / Español" -msgstr "" +msgstr "Hispaania / Español" #. module: base #: field:ir.report.custom.fields,fontcolor:0 @@ -3911,7 +3944,7 @@ msgstr "Serveri tegevused" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Chinese (TW) / 正體字" -msgstr "" +msgstr "Hiina (TW) / 正體字" #. module: base #: field:ir.model.fields,view_load:0 @@ -3921,17 +3954,17 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GO_UP" -msgstr "" +msgstr "STOCK_GO_UP" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_SORT_DESCENDING" -msgstr "" +msgstr "STOCK_SORT_DESCENDING" #. module: base #: model:ir.model,name:base.model_res_request msgid "res.request" -msgstr "" +msgstr "res.request" #. module: base #: field:res.groups,rule_groups:0 @@ -3944,19 +3977,19 @@ msgstr "Reeglid" #: model:ir.actions.act_window,name:base.action_partner_title #: model:ir.ui.menu,name:base.menu_partner_title msgid "Titles" -msgstr "" +msgstr "Tiitlid" #. module: base #: wizard_view:module.upgrade,start:0 #: wizard_view:module.upgrade,end:0 msgid "System upgrade done" -msgstr "" +msgstr "Süsteemi uuendamine valmis" #. module: base #: field:ir.actions.act_window,view_type:0 #: field:ir.actions.act_window.view,view_mode:0 msgid "Type of view" -msgstr "" +msgstr "Vaate tüüp" #. module: base #: view:ir.actions.server:0 @@ -3971,7 +4004,7 @@ msgstr "pdf" #. module: base #: field:ir.actions.todo,start_date:0 msgid "Start Date" -msgstr "" +msgstr "Alguskuupäev" #. module: base #: model:ir.actions.act_window,name:base.action_partner_address_form @@ -3983,7 +4016,7 @@ msgstr "Partneri aadressid" #. module: base #: field:ir.actions.report.xml,report_xml:0 msgid "XML path" -msgstr "" +msgstr "XML rada" #. module: base #: field:ir.default,company_id:0 @@ -3997,12 +4030,12 @@ msgstr "Firma" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PROPERTIES" -msgstr "" +msgstr "STOCK_PROPERTIES" #. module: base #: model:res.partner.category,name:base.res_partner_category_11 msgid "Textile Suppliers" -msgstr "" +msgstr "Tekstiiliga varustajad" #. module: base #: view:wizard.module.lang.export:0 @@ -4017,7 +4050,7 @@ msgstr "Aruande pealkiri" #. module: base #: field:ir.attachment,datas:0 msgid "File Content" -msgstr "" +msgstr "Faili sisu" #. module: base #: view:ir.module.module:0 @@ -4034,7 +4067,7 @@ msgstr "Uus aken" #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Second field should be figures" -msgstr "" +msgstr "Teine väli peaks koosnema arvudest" #. module: base #: selection:res.partner.event,partner_type:0 @@ -4059,20 +4092,15 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" -msgstr "" +msgstr "Uuendatud moodulite arv" #. module: base #: view:ir.attachment:0 msgid "Preview" -msgstr "" +msgstr "Eelvaade" #. module: base #: view:ir.actions.configuration.wizard:0 @@ -4096,12 +4124,12 @@ msgstr "Rollide struktuur" #: 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 #: field:wizard.ir.model.menu.create,name:0 @@ -4112,7 +4140,7 @@ msgstr "Menüü nimi" #: 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 "Aktiivsed partneri sündmused" #. module: base #: code:osv/orm.py:0 @@ -4128,13 +4156,13 @@ msgstr "" #. module: base #: view:res.users:0 msgid "Define New Users" -msgstr "" +msgstr "Määra uued kasutajad" #. module: base #: model:ir.actions.act_window,name:base.action_rule #: model:ir.ui.menu,name:base.menu_action_rule msgid "Record Rules" -msgstr "" +msgstr "Kirje reeglid" #. module: base #: field:res.config.view,view:0 @@ -4144,7 +4172,7 @@ msgstr "Vaaterežiim" #. module: base #: wizard_field:module.module.update,update,add:0 msgid "Number of modules added" -msgstr "" +msgstr "Lisatud moodulite arv" #. module: base #: field:res.bank,phone:0 @@ -4165,7 +4193,7 @@ msgstr "" #. module: base #: field:workflow.transition,role_id:0 msgid "Role Required" -msgstr "" +msgstr "Roll nõutud" #. module: base #: model:ir.actions.act_window,name:base.action_res_groups @@ -4186,7 +4214,7 @@ msgstr "Grupid" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_SPELL_CHECK" -msgstr "" +msgstr "STOCK_SPELL_CHECK" #. module: base #: field:ir.actions.todo,active:0 @@ -4209,12 +4237,12 @@ msgstr "Aktiivne" #. module: base #: view:ir.module.module:0 msgid "Created Menus" -msgstr "" +msgstr "Loodud menüüd" #. module: base #: field:ir.ui.view.custom,ref_id:0 msgid "Orignal View" -msgstr "" +msgstr "Originaal vaade" #. module: base #: selection:res.partner.event,type:0 @@ -4232,7 +4260,7 @@ msgstr ">" #. module: base #: field:workflow.triggers,workitem_id:0 msgid "Workitem" -msgstr "" +msgstr "Tööese" #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field_contry @@ -4242,12 +4270,12 @@ msgstr "" #. module: base #: view:res.lang:0 msgid "%A - Full weekday name." -msgstr "" +msgstr "%A - Täielik nädalapäeva nimetus." #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DIALOG_AUTHENTICATION" -msgstr "" +msgstr "STOCK_DIALOG_AUTHENTICATION" #. module: base #: view:ir.actions.act_window:0 @@ -4257,7 +4285,7 @@ msgstr "Ava aken" #. module: base #: view:res.users:0 msgid "Groups are used to defined access rights on each screen and menu." -msgstr "" +msgstr "Gruppe kasutatakse, et määratleda ligipääsuõigused igale sirmile ja menüüle." #. module: base #: selection:ir.cron,interval_type:0 @@ -4272,7 +4300,7 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_OUT" -msgstr "" +msgstr "STOCK_ZOOM_OUT" #. module: base #: help:ir.actions.server,model_id:0 @@ -4322,13 +4350,13 @@ msgstr "E-posti seadistus" #. module: base #: model:ir.model,name:base.model_ir_cron msgid "ir.cron" -msgstr "" +msgstr "ir.cron" #. module: base #: selection:workflow.activity,join_mode:0 #: selection:workflow.activity,split_mode:0 msgid "And" -msgstr "" +msgstr "Ja" #. module: base #: field:ir.model.fields,relation:0 @@ -4351,12 +4379,12 @@ msgstr "Väli" #. module: base #: view:maintenance.contract.wizard:0 msgid "_Validate" -msgstr "" +msgstr "_Kinnita" #. module: base #: model:ir.model,name:base.model_maintenance_contract_wizard msgid "maintenance.contract.wizard" -msgstr "" +msgstr "maintenance.contract.wizard" #. module: base #: help:ir.actions.server,code:0 @@ -4366,7 +4394,7 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PRINT" -msgstr "" +msgstr "STOCK_PRINT" #. module: base #: field:ir.actions.wizard,multi:0 @@ -4382,7 +4410,7 @@ msgstr "Partneri viide" #. 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:ir.module.module:0 @@ -4393,12 +4421,12 @@ msgstr "Tühista eemaldus" #: 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 #: selection:ir.ui.menu,icon:0 msgid "terp-mrp" -msgstr "" +msgstr "terp-mrp" #. module: base #: selection:ir.actions.todo,state:0 @@ -4426,7 +4454,7 @@ msgstr "" #: wizard_view:module.upgrade,start:0 #: wizard_view:module.upgrade,end:0 msgid "You may have to reinstall some language pack." -msgstr "" +msgstr "Võimalik, et sa pead uuesti paigaldama mõned keelepakid." #. module: base #: model:ir.model,name:base.model_res_currency_rate @@ -4441,18 +4469,13 @@ msgstr "Kirjutusõigus" #. module: base #: view:wizard.module.lang.export:0 msgid "Export done" -msgstr "" +msgstr "Eksportimine valmis" #. module: base #: field:ir.cron,args:0 msgid "Arguments" msgstr "Argumendid" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4497,7 +4520,7 @@ msgstr "<=" #. module: base #: view:wizard.module.lang.export:0 msgid "Export Data" -msgstr "" +msgstr "Ekspordi Andmed" #. module: base #: field:workflow.triggers,instance_id:0 @@ -4507,7 +4530,7 @@ msgstr "" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Estonian / Eesti keel" -msgstr "" +msgstr "Estonian / Eesti keel" #. module: base #: field:ir.module.module,menus_by_module:0 @@ -4537,7 +4560,7 @@ msgstr "" #. module: base #: field:ir.report.custom,field_parent:0 msgid "Child Field" -msgstr "" +msgstr "Tütarväli" #. module: base #: model:res.partner.title,name:base.res_partner_title_sir @@ -4547,17 +4570,17 @@ msgstr "Härra" #. module: base #: view:wizard.module.lang.export:0 msgid "https://translations.launchpad.net/openobject" -msgstr "" +msgstr "https://translations.launchpad.net/openobject" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Portugese / português" -msgstr "" +msgstr "Portugali / português" #. module: base #: selection:ir.module.module,license:0 msgid "GPL-3 or later version" -msgstr "" +msgstr "GPL-3 või hilisem versioon" #. module: base #: field:ir.actions.actions,usage:0 @@ -4571,13 +4594,13 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_HOME" -msgstr "" +msgstr "STOCK_HOME" #. module: base #: 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.actions.server,child_ids:0 @@ -4587,12 +4610,12 @@ msgstr "" #. module: base #: model:ir.actions.wizard,name:base.wizard_server_action_create msgid "Create Action" -msgstr "" +msgstr "Loo toiming" #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" -msgstr "" +msgstr "workflow.workitem" #. module: base #: field:ir.ui.view_sc,name:0 @@ -4602,17 +4625,17 @@ msgstr "Kiirkorralduse nimi" #. module: base #: selection:ir.module.module,state:0 msgid "Not Installable" -msgstr "" +msgstr "Pole paigaldatav" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "Tõenäosus (0.50)" +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "Vaade :" #. module: base #: field:res.partner.address,mobile:0 msgid "Mobile" -msgstr "" +msgstr "Mobiil" #. module: base #: code:addons/base/ir/ir_actions.py:0 @@ -4633,18 +4656,18 @@ msgstr "" #. module: base #: field:res.lang,time_format:0 msgid "Time Format" -msgstr "" +msgstr "Kellaaja vorming" #. module: base #: wizard_view:module.upgrade,next:0 msgid "Your system will be upgraded." -msgstr "" +msgstr "Su süsteem saab uuendatud." #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form #: view:res.users:0 msgid "Configure User" -msgstr "" +msgstr "Seadista kasutaja" #. module: base #: help:res.country,name:0 @@ -4654,7 +4677,7 @@ msgstr "Riigi täisnimi." #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_JUMP_TO" -msgstr "" +msgstr "STOCK_JUMP_TO" #. module: base #: field:ir.ui.menu,child_id:0 @@ -4664,7 +4687,7 @@ msgstr "" #. module: base #: field:ir.actions.todo,end_date:0 msgid "End Date" -msgstr "" +msgstr "Lõpu kuupäev" #. module: base #: field:ir.exports,resource:0 @@ -4675,17 +4698,17 @@ msgstr "Ressurss" #. module: base #: field:ir.actions.server,email:0 msgid "Email Address" -msgstr "" +msgstr "E-posti aadress" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-tools" -msgstr "" +msgstr "terp-tools" #. module: base #: selection:ir.actions.server,state:0 msgid "Iteration" -msgstr "" +msgstr "Iteratsioon" #. module: base #: view:ir.actions.report.xml:0 @@ -4706,7 +4729,7 @@ msgstr "Moodulid" #: field:workflow.activity,subflow_id:0 #: field:workflow.workitem,subflow_id:0 msgid "Subflow" -msgstr "" +msgstr "Alamvoog" #. module: base #: help:res.partner,vat:0 @@ -4717,7 +4740,7 @@ msgstr "Käibemaksukohuslase number" #: field:maintenance.contract,name:0 #: field:maintenance.contract.wizard,name:0 msgid "Contract ID" -msgstr "" +msgstr "Leping ID" #. module: base #: view:ir.values:0 @@ -4727,7 +4750,7 @@ msgstr "Väärtused" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DIALOG_INFO" -msgstr "" +msgstr "STOCK_DIALOG_INFO" #. module: base #: field:workflow.transition,signal:0 @@ -4750,12 +4773,12 @@ msgstr "Pangad" #. module: base #: field:ir.cron,numbercall:0 msgid "Number of calls" -msgstr "" +msgstr "Kõnede arv" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-sale" -msgstr "" +msgstr "terp-sale" #. module: base #: view:ir.actions.server:0 @@ -4775,12 +4798,12 @@ msgstr "" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Romanian / limba română" -msgstr "" +msgstr "Rumeenia keel / limba română" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ADD" -msgstr "" +msgstr "STOCK_ADD" #. module: base #: view:ir.model.fields:0 @@ -4797,7 +4820,7 @@ msgstr "" #: 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 #: field:ir.server.object.lines,server_id:0 @@ -4807,7 +4830,7 @@ msgstr "" #. module: base #: field:ir.module.module,published_version:0 msgid "Published Version" -msgstr "" +msgstr "Avaldatud versioon" #. module: base #: field:ir.actions.act_window,auto_refresh:0 @@ -4819,7 +4842,7 @@ msgstr "Automaatne värskendus" #: field:maintenance.contract.wizard,state:0 #: model:ir.ui.menu,name:base.menu_country_state_partner msgid "States" -msgstr "Osariigid" +msgstr "Maakonnad" #. module: base #: field:res.currency.rate,rate:0 @@ -4834,12 +4857,12 @@ msgstr "" #. module: base #: view:ir.actions.server:0 msgid "Create / Write" -msgstr "" +msgstr "Loo / kirjuta" #. module: base #: model:ir.model,name:base.model_ir_exports_line msgid "ir.exports.line" -msgstr "" +msgstr "ir.exports.line" #. module: base #: field:res.partner,credit_limit:0 @@ -4865,7 +4888,7 @@ msgstr "" #: 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 "Kõik omadused" #. module: base #: selection:ir.report.custom.fields,alignment:0 @@ -4887,17 +4910,17 @@ msgstr "Olek" #: 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 "Akna toimingud" #. 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 #: selection:ir.actions.todo,type:0 msgid "Service" -msgstr "" +msgstr "Teenus" #. module: base #: help:ir.actions.act_window,auto_refresh:0 @@ -4913,12 +4936,12 @@ msgstr "Failinimi" #. module: base #: field:ir.model,access_ids:0 msgid "Access" -msgstr "Juurdepääs" +msgstr "Ligipääs" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_GO_DOWN" -msgstr "" +msgstr "STOCK_GO_DOWN" #. module: base #: view:ir.actions.server:0 @@ -4939,7 +4962,7 @@ msgstr "Grupi nimi" #: wizard_field:module.upgrade,next,module_download:0 #: wizard_view:module.upgrade,next:0 msgid "Modules to download" -msgstr "" +msgstr "Moodulid allalaadida" #. module: base #: view:res.lang:0 @@ -4961,12 +4984,12 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_workflow_workitem_form #: model:ir.ui.menu,name:base.menu_workflow_workitem msgid "Workitems" -msgstr "" +msgstr "Tööesemed" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PRINT_PREVIEW" -msgstr "" +msgstr "STOCK_PRINT_PREVIEW" #. module: base #: code:osv/orm.py:0 @@ -4987,7 +5010,7 @@ msgstr "" #. module: base #: field:res.request,create_date:0 msgid "Created date" -msgstr "" +msgstr "Loomiskuupäev" #. module: base #: field:res.bank,bic:0 @@ -4997,7 +5020,7 @@ msgstr "BIC/SWIFT kood" #. module: base #: model:ir.model,name:base.model_ir_sequence msgid "ir.sequence" -msgstr "" +msgstr "ir.sequence" #. module: base #: field:res.users,menu_id:0 @@ -5013,7 +5036,7 @@ msgstr "Pole paigaldatud" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Lithuanian / Lietuvių kalba" -msgstr "" +msgstr "Leedu keel / Lietuvių kalba" #. module: base #: field:res.partner.event,canal_id:0 @@ -5036,7 +5059,7 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_maintenance_contract_add #: view:maintenance.contract.wizard:0 msgid "Add Maintenance Contract" -msgstr "" +msgstr "Lisa hooldusleping" #. module: base #: wizard_button:module.lang.import,init,finish:0 @@ -5048,7 +5071,7 @@ msgstr "Ok" #. module: base #: field:ir.cron,doall:0 msgid "Repeat missed" -msgstr "" +msgstr "Korda vahele jäetud" #. module: base #: code:osv/orm.py:0 @@ -5059,12 +5082,12 @@ msgstr "" #. module: base #: field:ir.ui.view,inherit_id:0 msgid "Inherited View" -msgstr "" +msgstr "Päritud vaade" #. module: base #: model:ir.model,name:base.model_ir_translation msgid "ir.translation" -msgstr "" +msgstr "ir.translation" #. module: base #: view:res.lang:0 @@ -5075,12 +5098,17 @@ msgstr "" #: field:ir.actions.act_window,limit:0 #: field:ir.report.custom,limitt:0 msgid "Limit" -msgstr "" +msgstr "Piirang" #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" -msgstr "" +msgstr "Iteratsiooni toimingud" + +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "Partneri aadress" #. module: base #: model:ir.actions.act_window,name:base.res_request-act @@ -5088,12 +5116,12 @@ msgstr "" #: model:ir.ui.menu,name:base.next_id_12 #: view:res.request:0 msgid "Requests" -msgstr "" +msgstr "Päringud" #. module: base #: selection:workflow.activity,split_mode:0 msgid "Or" -msgstr "" +msgstr "Või" #. module: base #: field:ir.actions.todo,note:0 @@ -5103,12 +5131,12 @@ msgstr "Tekst" #. module: base #: model:res.partner.category,name:base.res_partner_category_7 msgid "Openstuff.net" -msgstr "" +msgstr "Openstuff.net" #. module: base #: model:ir.model,name:base.model_ir_rule_group msgid "ir.rule.group" -msgstr "" +msgstr "ir.rule.group" #. module: base #: field:res.roles,child_id:0 @@ -5118,7 +5146,7 @@ msgstr "" #. module: base #: field:maintenance.contract,date_stop:0 msgid "Ending Date" -msgstr "" +msgstr "Lõpu kuupäev" #. module: base #: selection:ir.translation,type:0 @@ -5150,7 +5178,7 @@ msgstr "Hoiatus" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ABOUT" -msgstr "" +msgstr "STOCK_ABOUT" #. module: base #: code:addons/base/ir/ir_actions.py:0 @@ -5164,9 +5192,9 @@ msgid "Operator" msgstr "Operaator" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" -msgstr "Partneri aadress" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" +msgstr "Araabia keel / الْعَرَبيّة" #. module: base #: view:wizard.module.lang.export:0 @@ -5182,7 +5210,7 @@ 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 @@ -5193,12 +5221,12 @@ msgstr "" #. module: base #: selection:ir.report.custom.fields,alignment:0 msgid "right" -msgstr "" +msgstr "paremal" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_PREVIOUS" -msgstr "" +msgstr "STOCK_MEDIA_PREVIOUS" #. module: base #: wizard_button:base.module.import,init,import:0 @@ -5210,34 +5238,34 @@ msgstr "Impordi moodul" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Czech / Čeština" -msgstr "" +msgstr "Tsehhi keel / Čeština" #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" -msgstr "" +msgstr "1. %c ==> Re Dets 5 18:25:20 2008" #. module: base #: field:ir.actions.server,loop_action:0 msgid "Loop Action" -msgstr "" +msgstr "Tsükkeltoiming" #. module: base #: model:ir.model,name:base.model_maintenance_contract #: view:maintenance.contract:0 msgid "Maintenance Contract" -msgstr "" +msgstr "Hooldusleping" #. module: base #: 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 #: field:res.lang,grouping:0 msgid "Separator Format" -msgstr "" +msgstr "Eraldaja formaat" #. module: base #: model:ir.actions.act_window,name:base.action_report_custom @@ -5264,13 +5292,13 @@ msgstr "" #. module: base #: field:ir.model.access,perm_create:0 msgid "Create Access" -msgstr "" +msgstr "Loo ligipääs" #. module: base #: model:ir.actions.act_window,name:base.action_partner_other_form #: model:ir.ui.menu,name:base.menu_partner_other_form msgid "Others Partners" -msgstr "" +msgstr "Muud partnerid" #. module: base #: field:ir.model.data,noupdate:0 @@ -5280,13 +5308,13 @@ msgstr "Pole uuendatav" #. module: base #: view:ir.values:0 msgid "Connect Events to Actions" -msgstr "" +msgstr "Ühenda sündmused toimingutega" #. module: base #: 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 #: code:osv/fields.py:0 @@ -5297,7 +5325,7 @@ msgstr "" #. module: base #: selection:ir.actions.act_window,target:0 msgid "Current Window" -msgstr "" +msgstr "Käesolev aken" #. module: base #: view:ir.values:0 @@ -5305,8 +5333,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5315,14 +5343,14 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" -msgstr "Partneri kategooria" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_NETWORK" -msgstr "" +msgstr "STOCK_NETWORK" #. module: base #: model:ir.actions.act_window,name:base.action_model_fields @@ -5347,7 +5375,7 @@ msgstr "Seadistus" #. module: base #: field:maintenance.contract,date_start:0 msgid "Starting Date" -msgstr "" +msgstr "Alguskuupäev" #. module: base #: field:ir.model.fields,ttype:0 @@ -5359,12 +5387,12 @@ msgstr "Välja tüüp" #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 msgid "Complete Name" -msgstr "" +msgstr "Täielik nimi" #. module: base #: field:res.country.state,code:0 msgid "State Code" -msgstr "Osariigi kood" +msgstr "Maakonna kood" #. module: base #: field:ir.model.fields,on_delete:0 @@ -5384,7 +5412,7 @@ msgstr "" #. module: base #: view:maintenance.contract.wizard:0 msgid "_Cancel" -msgstr "" +msgstr "_Tühista" #. module: base #: view:ir.report.custom:0 @@ -5394,12 +5422,12 @@ msgstr "" #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" -msgstr "" +msgstr "Vasakult-paremale" #. module: base #: field:ir.values,object:0 msgid "Is Object" -msgstr "" +msgstr "On objekt" #. module: base #: field:res.lang,translatable:0 @@ -5414,7 +5442,7 @@ msgstr "Igapäevane" #. 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 @@ -5425,7 +5453,7 @@ 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 #: field:res.partner.category,name:0 @@ -5437,7 +5465,7 @@ msgstr "Kategooria nimi" #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Gantt" -msgstr "" +msgstr "Gantt" #. module: base #: code:osv/fields.py:0 @@ -5448,7 +5476,7 @@ msgstr "Pole teostatud" #. module: base #: model:res.partner.category,name:base.res_partner_category_5 msgid "Gold Partner" -msgstr "" +msgstr "Kuldpartnerid" #. module: base #: model:res.partner.category,name:base.res_partner_category_15 @@ -5458,7 +5486,7 @@ msgstr "" #. module: base #: view:ir.property:0 msgid "Property" -msgstr "" +msgstr "Omadus" #. module: base #: model:ir.model,name:base.model_res_partner_bank_type @@ -5474,7 +5502,7 @@ msgstr "Järgmine seadistamise samm" #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-project" -msgstr "" +msgstr "terp-project" #. module: base #: field:res.groups,comment:0 @@ -5496,7 +5524,7 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_PREFERENCES" -msgstr "" +msgstr "STOCK_PREFERENCES" #. module: base #: view:res.lang:0 @@ -5506,7 +5534,7 @@ msgstr "" #. module: base #: field:ir.module.module,shortdesc:0 msgid "Short description" -msgstr "" +msgstr "Lühikirjeldus" #. module: base #: help:ir.actions.server,trigger_obj_id:0 @@ -5526,17 +5554,17 @@ msgstr "" #. module: base #: view:ir.actions.server:0 msgid "Iteration Action Configuration" -msgstr "" +msgstr "Iteratsiooni toimingu seadistus" #. module: base #: field:res.country.state,name:0 msgid "State Name" -msgstr "Osariigi nimi" +msgstr "Maakonna nimi" #. module: base #: view:res.company:0 msgid "Your Logo - Use a size of about 450x150 pixels." -msgstr "" +msgstr "Teie logo - Kasutage suurust umbes 450x150 pikselit." #. module: base #: help:res.lang,grouping:0 @@ -5552,17 +5580,17 @@ msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DELETE" -msgstr "" +msgstr "STOCK_DELETE" #. module: base #: field:res.partner.event,planned_cost:0 msgid "Planned Cost" -msgstr "" +msgstr "Planeeritud kulu" #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" -msgstr "" +msgstr "Ühinemismoodus" #. module: base #: selection:ir.report.custom,print_format:0 @@ -5584,7 +5612,7 @@ msgstr "" #: 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 @@ -5612,12 +5640,12 @@ msgstr "Graafik" #. module: base #: field:ir.module.module,installed_version:0 msgid "Latest version" -msgstr "" +msgstr "Uusim versioon" #. module: base #: model:ir.model,name:base.model_ir_actions_server msgid "ir.actions.server" -msgstr "" +msgstr "ir.actions.server" #. module: base #: model:res.partner.category,name:base.res_partner_category_17 @@ -5637,7 +5665,7 @@ msgstr "suletud" #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" -msgstr "" +msgstr "Mooduli sõltuvus" #. module: base #: view:res.lang:0 @@ -5653,22 +5681,22 @@ msgstr "Paigalda valitud uuendused" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DND_MULTIPLE" -msgstr "" +msgstr "STOCK_DND_MULTIPLE" #. module: base #: model:ir.ui.menu,name:base.maintenance msgid "Maintenance" -msgstr "" +msgstr "Hooldus" #. module: base #: model:res.partner.category,name:base.res_partner_category_2 msgid "OpenERP Partners" -msgstr "" +msgstr "OpenERP partnerid" #. module: base #: view:res.config.view:0 msgid "Choose Your Mode" -msgstr "" +msgstr "Vali oma moodus" #. module: base #: view:ir.actions.report.custom:0 @@ -5679,12 +5707,12 @@ msgstr "" #: field:workflow.activity,action_id:0 #: view:ir.actions.server:0 msgid "Server Action" -msgstr "" +msgstr "Serveri toiming" #. module: base #: selection:ir.module.module,license:0 msgid "GPL-3" -msgstr "" +msgstr "GPL-3" #. module: base #: field:ir.actions.act_window_close,name:0 @@ -5714,12 +5742,12 @@ msgstr "E-post" #. 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.model,name:base.model_res_groups msgid "res.groups" -msgstr "" +msgstr "res.groups" #. module: base #: field:workflow.activity,split_mode:0 @@ -5754,7 +5782,7 @@ msgstr "Kasutaja" #. module: base #: field:res.partner,parent_id:0 msgid "Main Company" -msgstr "Peafirma" +msgstr "Emaettevõte" #. module: base #: model:ir.actions.act_window,name:base.ir_property_form @@ -5794,13 +5822,13 @@ msgstr "Partnerite tiitlid" #. module: base #: view:ir.rule:0 msgid "Simple domain setup" -msgstr "" +msgstr "Lihtne domeeni häälestus" #. 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 "Tõlkimata terminid" #. module: base #: view:ir.actions.server:0 @@ -5810,12 +5838,12 @@ msgstr "" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Italian / Italiano" -msgstr "" +msgstr "Itaalia keel / Italiano" #. 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 @@ -5830,7 +5858,7 @@ msgstr "Käibemaks" #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" -msgstr "" +msgstr "Rakenduse terminid" #. module: base #: field:res.partner.address,birthdate:0 @@ -5852,15 +5880,20 @@ msgstr "" msgid "Trigger Object" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "Kuu: %(kuu)d" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" -msgstr "" +msgstr "res.partner.som" #. module: base #: field:ir.actions.server,mobile:0 msgid "Mobile No" -msgstr "" +msgstr "Mobiili nr." #. module: base #: code:addons/base/ir/ir_actions.py:0 @@ -5874,14 +5907,18 @@ msgid "Error" msgstr "Viga" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" -msgstr "" +#: 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 "Partneri kategooriad" #. module: base #: model:ir.model,name:base.model_workflow_activity msgid "workflow.activity" -msgstr "" +msgstr "workflow.activity" #. module: base #: field:ir.sequence,code:0 @@ -5897,12 +5934,12 @@ msgstr "aktiivne" #. module: base #: selection:server.action.create,init,type:0 msgid "Open Report" -msgstr "" +msgstr "Ava aruanne" #. module: base #: field:res.currency,rounding:0 msgid "Rounding factor" -msgstr "" +msgstr "Ümardusfaktor" #. module: base #: selection:ir.translation,type:0 @@ -5942,7 +5979,7 @@ msgstr "Pangakonto" #. module: base #: model:ir.model,name:base.model_res_partner_title msgid "res.partner.title" -msgstr "" +msgstr "res.partner.title" #. module: base #: view:res.company:0 @@ -5958,17 +5995,17 @@ msgstr "Prefiks" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_DISCONNECT" -msgstr "" +msgstr "STOCK_DISCONNECT" #. module: base #: selection:module.lang.install,init,lang:0 msgid "German / Deutsch" -msgstr "" +msgstr "Saksa keel / Deutsch" #. module: base #: model:ir.model,name:base.model_res_company msgid "res.company" -msgstr "" +msgstr "res.company" #. module: base #: field:ir.actions.server,fields_lines:0 @@ -5995,7 +6032,7 @@ msgstr "Jada nimi" #. module: base #: model:ir.model,name:base.model_res_request_history msgid "res.request.history" -msgstr "" +msgstr "res.request.history" #. module: base #: constraint:res.partner:0 @@ -6005,7 +6042,7 @@ msgstr "Käibemaksukohuslase numbris on viga" #. module: base #: view:ir.sequence:0 msgid "Hour 00->12: %(h12)s" -msgstr "" +msgstr "Tund 00->12: %(h12)s" #. module: base #: field:res.currency,rate:0 @@ -6015,7 +6052,7 @@ msgstr "Hetkekurss" #. module: base #: model:ir.actions.act_window,name:base.action_config_simple_view_form msgid "Configure Simple View" -msgstr "" +msgstr "Seadista lihtvaade" #. module: base #: wizard_button:module.upgrade,next,start:0 @@ -6025,17 +6062,17 @@ msgstr "Alusta uuendust" #. module: base #: selection:module.lang.install,init,lang:0 msgid "French / Français" -msgstr "" +msgstr "Prantsuse keel / Français" #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" -msgstr "" +msgstr "Tähtsad kliendid" #. module: base #: field:res.partner.som,factor:0 msgid "Factor" -msgstr "" +msgstr "Faktor" #. module: base #: field:res.partner,category_id:0 @@ -6094,12 +6131,12 @@ msgstr "" #: code:addons/base/ir/ir_actions.py:0 #, python-format msgid "Please specify the Partner Email address !" -msgstr "" +msgstr "Palun määra partneri e-posti aadress !" #. module: base #: model:ir.model,name:base.model_res_config_view msgid "res.config.view" -msgstr "" +msgstr "res.config.view" #. module: base #: field:ir.attachment,description:0 @@ -6119,7 +6156,7 @@ msgstr "Konto omanik" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_INDENT" -msgstr "" +msgstr "STOCK_INDENT" #. module: base #: view:res.request.history:0 @@ -6140,7 +6177,7 @@ msgstr "Kättetoimetamine" #. module: base #: model:ir.model,name:base.model_ir_attachment msgid "ir.attachment" -msgstr "" +msgstr "ir.attachment" #. module: base #: code:osv/orm.py:0 @@ -6156,7 +6193,7 @@ msgstr "Automaatne XSL:RML" #. module: base #: field:ir.attachment,preview:0 msgid "Image Preview" -msgstr "" +msgstr "Pildi eelvaade" #. module: base #: view:workflow.workitem:0 @@ -6185,7 +6222,7 @@ msgstr "Roll" #. module: base #: selection:res.lang,direction:0 msgid "Right-to-Left" -msgstr "" +msgstr "Paremalt vasakule" #. module: base #: field:res.partner,customer:0 @@ -6197,12 +6234,12 @@ msgstr "Klient" #. module: base #: selection:maintenance.contract.wizard,state:0 msgid "Unvalidated" -msgstr "" +msgstr "Kinnitamata" #. module: base #: field:ir.model.access,perm_unlink:0 msgid "Delete Permission" -msgstr "" +msgstr "Kustutamisõigus" #. module: base #: field:ir.actions.report.custom,name:0 @@ -6229,7 +6266,7 @@ msgstr "Massi meilimine" #. module: base #: wizard_view:module.lang.import,init:0 msgid "You can also import .po files." -msgstr "" +msgstr "Te saate importida ka .po faile." #. module: base #: wizard_view:base.module.import,import:0 @@ -6254,7 +6291,7 @@ msgstr "" #. module: base #: view:ir.sequence:0 msgid "Hour 00->24: %(h24)s" -msgstr "" +msgstr "Tund 00->24: %(h24)s" #. module: base #: constraint:res.partner.category:0 @@ -6280,7 +6317,7 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_partner_customer_form_new #: model:ir.ui.menu,name:base.menu_partner_customer_form_new msgid "New Partner" -msgstr "" +msgstr "Uus partner" #. module: base #: wizard_view:module.lang.install,start:0 @@ -6290,12 +6327,12 @@ msgstr "Paigaldamine valmis" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_JUSTIFY_RIGHT" -msgstr "" +msgstr "STOCK_JUSTIFY_RIGHT" #. module: base #: model:res.partner.category,name:base.res_partner_category_1 msgid "Prospect" -msgstr "" +msgstr "Perspektiiv" #. module: base #: model:ir.model,name:base.model_res_partner_function @@ -6309,9 +6346,9 @@ msgid "Modules to be installed, upgraded or removed" msgstr "Paigaldamist, uuendamist või eemaldamist ootavad moodulid" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" -msgstr "Kuu: %(kuu)d" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" +msgstr "Poola keel / Język polski" #. module: base #: model:ir.ui.menu,name:base.menu_partner_address_form @@ -6334,7 +6371,7 @@ msgstr "Jada" #. module: base #: view:res.lang:0 msgid "11. %U or %W ==> 48 (49th week)" -msgstr "" +msgstr "11. %U or %W ==> 48 (49. nädal)" #. module: base #: wizard_view:module.lang.import,init:0 @@ -6355,7 +6392,7 @@ msgstr "" #. module: base #: selection:module.lang.install,init,lang:0 msgid "Chinese (CN) / 简体中文" -msgstr "" +msgstr "Hiina keel (CN) / 简体中文" #. module: base #: field:ir.report.custom,footer:0 @@ -6365,12 +6402,12 @@ msgstr "Aruande jalus" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_MEDIA_NEXT" -msgstr "" +msgstr "STOCK_MEDIA_NEXT" #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_REDO" -msgstr "" +msgstr "STOCK_REDO" #. module: base #: wizard_view:module.lang.install,init:0 @@ -6387,11 +6424,6 @@ msgstr "Üldine kirjeldus" msgid "Cancel Install" msgstr "Katkesta paigaldamine" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format @@ -6401,7 +6433,7 @@ msgstr "Palun konrolli, et kõigil ridadel oleks %d veerud." #. module: base #: selection:module.lang.install,init,lang:0 msgid "Russian / русский язык" -msgstr "" +msgstr "Vene keel / русский язык" #. module: base #: field:ir.model.data,name:0 diff --git a/bin/addons/base/i18n/fr_FR.po b/bin/addons/base/i18n/fr_FR.po index cac21df8cff..2806f675cf7 100644 --- a/bin/addons/base/i18n/fr_FR.po +++ b/bin/addons/base/i18n/fr_FR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 17:55:18+0000\n" -"PO-Revision-Date: 2008-12-22 17:55:18+0000\n" +"POT-Creation-Date: 2009-01-03 02:06:17+0000\n" +"PO-Revision-Date: 2009-01-03 02:06:17+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "Nom de la Fonction" msgid "terp-account" msgstr "terp-account" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "Catégorie de Partenaire" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -370,9 +375,9 @@ msgid "Sender's email" msgstr "Courriel de l'expéditeur" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" -msgstr "Tabulation" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" +msgstr "" #. module: base #: help:ir.actions.server,email:0 @@ -458,9 +463,9 @@ msgid "STOCK_CANCEL" msgstr "STOCK_CANCEL" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" -msgstr "Contact du prospet" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" +msgstr "" #. module: base #: constraint:ir.ui.view:0 @@ -942,11 +947,21 @@ msgstr "Si la langue chargée dans le système est l'anglais, tous les documents msgid "STOCK_UNDERLINE" msgstr "STOCK_UNDERLINE" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "Objet Personalisé" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" @@ -1838,11 +1853,6 @@ msgstr "terp-stock" msgid "Get file" msgstr "Obtenir le Fichier" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1865,6 +1875,12 @@ msgstr "0=Très Urgent\n" msgid "ir.model.data" msgstr "ir.model.data" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1964,17 +1980,16 @@ msgstr "Global" msgid "From" msgstr "De" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "Cette méthode n'existe plus" - #. module: base #: selection:res.partner.event,partner_type:0 msgid "Retailer" msgstr "Détaillant" +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2000,11 +2015,6 @@ msgstr "Archive TGZ" msgid "Set NULL" msgstr "Mettre NULL" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2037,6 +2047,11 @@ msgstr "Créé Manuellement" msgid "Defined Reports" msgstr "Rapports Définis" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "Tabulation" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" @@ -2132,6 +2147,11 @@ msgstr "Mot de passe vide !" msgid "RML Header" msgstr "En-tête RML" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "Définir" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2266,9 +2286,9 @@ msgid "Recursion error in modules dependencies !" msgstr "Erreur de Récursion dans les dépendances des modules !" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" -msgstr "" +#: view:ir.rule:0 +msgid "Manual domain setup" +msgstr "Configuration manuelle du domaine" #. module: base #: field:ir.actions.report.xml,report_xsl:0 @@ -2488,6 +2508,11 @@ msgstr "STOCK_JUSTIFY_FILL" msgid "draft" msgstr "brouillon" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "Probabilité (0.50)" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2645,15 +2670,9 @@ msgid "(year)=" msgstr "(année)=" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" -msgstr "Code" +#: rml:ir.module.reference:0 +msgid "Dependencies :" +msgstr "" #. module: base #: view:ir.module.module:0 @@ -2671,10 +2690,10 @@ msgid "Creator" msgstr "Créateur" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" -msgstr "Méthode non implémentée: 'get_memory' !" +msgid "You cannot perform this operation." +msgstr "" #. module: base #: field:ir.actions.server,code:0 @@ -2726,7 +2745,6 @@ msgstr "Relation" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2868,9 +2886,9 @@ msgid "Childs Field" msgstr "Champ Enfants" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Nom du rôle" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "" #. module: base #: code:addons/base/res/res_user.py:0 @@ -2881,7 +2899,7 @@ msgstr "Impossible d'effacer l'utilisateur 'root' !" #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" -msgstr "" +msgstr "Version installée" #. module: base #: view:res.lang:0 @@ -2932,6 +2950,11 @@ msgstr "Exporter un Fichier de Traduction" msgid "Report Xml" msgstr "Rapport XML" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -3000,6 +3023,11 @@ msgstr "Banque" msgid "STOCK_HARDDISK" msgstr "STOCK_HARDDISK" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3155,6 +3183,11 @@ msgstr "Élevé" msgid "Instances" msgstr "Instances" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Nom du rôle" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3230,15 +3263,6 @@ msgstr "Vous devez importer une fichier .CSV encodé en UTF-8. Veuillez vérifie msgid "Group by" msgstr "Grouper par" -#. 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 "Catégories du Partenaire" - #. module: base #: field:ir.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3449,9 +3473,15 @@ msgid "Update Translations" msgstr "Mettre à jour les Traductions" #. module: base -#: view:res.config.view:0 -msgid "Set" -msgstr "Définir" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" +msgstr "Code" #. module: base #: field:ir.report.custom.fields,width:0 @@ -3529,6 +3559,12 @@ msgstr "" msgid "Channels" msgstr "Canaux" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "Méthode non implémentée: 'get_memory' !" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3563,9 +3599,9 @@ msgid "Schedule for Installation" msgstr "Plannifier pour Installation" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" -msgstr "" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "Année sans le siècle : %(y)s" #. module: base #: selection:ir.model.fields,select_level:0 @@ -3788,11 +3824,6 @@ msgstr "Notez que cette opération peut prendre quelques minutes" msgid "STOCK_COLOR_PICKER" msgstr "STOCK_COLOR_PICKER" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "Configuration manuelle du domaine" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3811,9 +3842,10 @@ msgid "Kind" msgstr "Genre" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" -msgstr "Comptes banquaires" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" +msgstr "Cette méthode n'existe plus" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 @@ -3830,9 +3862,9 @@ msgid "Tree" msgstr "Arbre" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" -msgstr "" +#: view:res.partner.bank:0 +msgid "Bank accounts" +msgstr "Comptes banquaires" #. module: base #: selection:ir.actions.todo,start_on:0 @@ -4064,11 +4096,6 @@ msgstr "Impossible de générer le prochain identifiant car certains partenaires msgid "Unsubscribed" msgstr "Non Inscrit" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "Année sans le siècle : %(y)s" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4453,11 +4480,6 @@ msgstr "Export effectué" msgid "Arguments" msgstr "Arguments" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4610,9 +4632,9 @@ msgid "Not Installable" msgstr "Non Installable" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "Probabilité (0.50)" +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "" #. module: base #: field:res.partner.address,mobile:0 @@ -5087,6 +5109,11 @@ msgstr "Limite" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "Adresse du Partenaire" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5169,9 +5196,9 @@ msgid "Operator" msgstr "Opérateur" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" -msgstr "Adresse du Partenaire" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" +msgstr "" #. module: base #: view:wizard.module.lang.export:0 @@ -5310,8 +5337,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5320,9 +5347,9 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" -msgstr "Catégorie de Partenaire" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" +msgstr "Contact du prospet" #. module: base #: selection:ir.ui.menu,icon:0 @@ -5617,7 +5644,7 @@ msgstr "Graphe" #. module: base #: field:ir.module.module,installed_version:0 msgid "Latest version" -msgstr "" +msgstr "Dernière version" #. module: base #: model:ir.model,name:base.model_ir_actions_server @@ -5857,6 +5884,11 @@ msgstr "Accès au menu" msgid "Trigger Object" msgstr "Objet Déclencheur" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "Mois: %(month)s" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5879,9 +5911,13 @@ msgid "Error" msgstr "Erreur" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" -msgstr "" +#: 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 "Catégories du Partenaire" #. module: base #: model:ir.model,name:base.model_workflow_activity @@ -6314,9 +6350,9 @@ msgid "Modules to be installed, upgraded or removed" msgstr "Modules a installer, mettre à jour ou supprimer" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" -msgstr "Mois: %(month)s" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_partner_address_form @@ -6393,11 +6429,6 @@ msgstr "Description générale" msgid "Cancel Install" msgstr "Annuler l'installation" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/i18n/hr_HR.po b/bin/addons/base/i18n/hr_HR.po index d937d9975fe..909f3757550 100644 --- a/bin/addons/base/i18n/hr_HR.po +++ b/bin/addons/base/i18n/hr_HR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 17:52:44+0000\n" -"PO-Revision-Date: 2008-12-22 17:52:44+0000\n" +"POT-Creation-Date: 2009-01-03 02:03:35+0000\n" +"PO-Revision-Date: 2009-01-03 02:03:35+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "" msgid "terp-account" msgstr "" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -370,8 +375,8 @@ msgid "Sender's email" msgstr "" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" msgstr "" #. module: base @@ -458,8 +463,8 @@ msgid "STOCK_CANCEL" msgstr "" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" msgstr "" #. module: base @@ -942,11 +947,21 @@ msgstr "" msgid "STOCK_UNDERLINE" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" @@ -1837,11 +1852,6 @@ msgstr "" msgid "Get file" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1863,6 +1873,12 @@ msgstr "" msgid "ir.model.data" msgstr "" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1963,14 +1979,13 @@ msgid "From" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" +#: selection:res.partner.event,partner_type:0 +msgid "Retailer" msgstr "" #. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Retailer" +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" msgstr "" #. module: base @@ -1998,11 +2013,6 @@ msgstr "" msgid "Set NULL" msgstr "" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2035,6 +2045,11 @@ msgstr "" msgid "Defined Reports" msgstr "" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" @@ -2130,6 +2145,11 @@ msgstr "" msgid "RML Header" msgstr "" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2264,8 +2284,8 @@ msgid "Recursion error in modules dependencies !" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" +#: view:ir.rule:0 +msgid "Manual domain setup" msgstr "" #. module: base @@ -2486,6 +2506,11 @@ msgstr "" msgid "draft" msgstr "" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2643,14 +2668,8 @@ msgid "(year)=" msgstr "" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" +#: rml:ir.module.reference:0 +msgid "Dependencies :" msgstr "" #. module: base @@ -2669,9 +2688,9 @@ msgid "Creator" msgstr "" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" +msgid "You cannot perform this operation." msgstr "" #. module: base @@ -2724,7 +2743,6 @@ msgstr "" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2866,8 +2884,8 @@ msgid "Childs Field" msgstr "" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" msgstr "" #. module: base @@ -2930,6 +2948,11 @@ msgstr "" msgid "Report Xml" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -2998,6 +3021,11 @@ msgstr "" msgid "STOCK_HARDDISK" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3153,6 +3181,11 @@ msgstr "" msgid "Instances" msgstr "" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3228,15 +3261,6 @@ msgstr "" msgid "Group by" 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.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3444,8 +3468,14 @@ msgid "Update Translations" msgstr "" #. module: base -#: view:res.config.view:0 -msgid "Set" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" msgstr "" #. module: base @@ -3524,6 +3554,12 @@ msgstr "" msgid "Channels" msgstr "" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3558,8 +3594,8 @@ msgid "Schedule for Installation" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" msgstr "" #. module: base @@ -3783,11 +3819,6 @@ msgstr "" msgid "STOCK_COLOR_PICKER" msgstr "" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3806,8 +3837,9 @@ msgid "Kind" msgstr "" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" msgstr "" #. module: base @@ -3825,8 +3857,8 @@ msgid "Tree" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" +#: view:res.partner.bank:0 +msgid "Bank accounts" msgstr "" #. module: base @@ -4059,11 +4091,6 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4448,11 +4475,6 @@ msgstr "" msgid "Arguments" msgstr "" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4605,8 +4627,8 @@ msgid "Not Installable" msgstr "" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" +#: rml:ir.module.reference:0 +msgid "View :" msgstr "" #. module: base @@ -5082,6 +5104,11 @@ msgstr "" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5164,8 +5191,8 @@ msgid "Operator" msgstr "" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" msgstr "" #. module: base @@ -5305,8 +5332,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5315,8 +5342,8 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" msgstr "" #. module: base @@ -5852,6 +5879,11 @@ msgstr "" msgid "Trigger Object" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5874,8 +5906,12 @@ msgid "Error" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" +#: 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 @@ -6309,8 +6345,8 @@ msgid "Modules to be installed, upgraded or removed" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" msgstr "" #. module: base @@ -6387,11 +6423,6 @@ msgstr "" msgid "Cancel Install" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/i18n/hu_HU.po b/bin/addons/base/i18n/hu_HU.po index a91e0f06a2d..31cc54fb455 100644 --- a/bin/addons/base/i18n/hu_HU.po +++ b/bin/addons/base/i18n/hu_HU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 17:56:37+0000\n" -"PO-Revision-Date: 2008-12-22 17:56:37+0000\n" +"POT-Creation-Date: 2009-01-03 02:07:39+0000\n" +"PO-Revision-Date: 2009-01-03 02:07:39+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "" msgid "terp-account" msgstr "" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -370,8 +375,8 @@ msgid "Sender's email" msgstr "" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" msgstr "" #. module: base @@ -458,8 +463,8 @@ msgid "STOCK_CANCEL" msgstr "" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" msgstr "" #. module: base @@ -942,11 +947,21 @@ msgstr "" msgid "STOCK_UNDERLINE" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" @@ -1837,11 +1852,6 @@ msgstr "" msgid "Get file" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1863,6 +1873,12 @@ msgstr "" msgid "ir.model.data" msgstr "" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1963,14 +1979,13 @@ msgid "From" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" +#: selection:res.partner.event,partner_type:0 +msgid "Retailer" msgstr "" #. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Retailer" +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" msgstr "" #. module: base @@ -1998,11 +2013,6 @@ msgstr "" msgid "Set NULL" msgstr "" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2035,6 +2045,11 @@ msgstr "" msgid "Defined Reports" msgstr "" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" @@ -2130,6 +2145,11 @@ msgstr "" msgid "RML Header" msgstr "" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2264,8 +2284,8 @@ msgid "Recursion error in modules dependencies !" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" +#: view:ir.rule:0 +msgid "Manual domain setup" msgstr "" #. module: base @@ -2486,6 +2506,11 @@ msgstr "" msgid "draft" msgstr "" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "Valószínűség (0.50)" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2643,14 +2668,8 @@ msgid "(year)=" msgstr "" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" +#: rml:ir.module.reference:0 +msgid "Dependencies :" msgstr "" #. module: base @@ -2669,9 +2688,9 @@ msgid "Creator" msgstr "" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" +msgid "You cannot perform this operation." msgstr "" #. module: base @@ -2724,7 +2743,6 @@ msgstr "" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2866,8 +2884,8 @@ msgid "Childs Field" msgstr "Gyerek mezői" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" msgstr "" #. module: base @@ -2930,6 +2948,11 @@ msgstr "" msgid "Report Xml" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -2998,6 +3021,11 @@ msgstr "" msgid "STOCK_HARDDISK" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3153,6 +3181,11 @@ msgstr "" msgid "Instances" msgstr "" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3228,15 +3261,6 @@ msgstr "" msgid "Group by" 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.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3444,8 +3468,14 @@ msgid "Update Translations" msgstr "" #. module: base -#: view:res.config.view:0 -msgid "Set" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" msgstr "" #. module: base @@ -3524,6 +3554,12 @@ msgstr "" msgid "Channels" msgstr "" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3558,8 +3594,8 @@ msgid "Schedule for Installation" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" msgstr "" #. module: base @@ -3783,11 +3819,6 @@ msgstr "" msgid "STOCK_COLOR_PICKER" msgstr "" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3806,8 +3837,9 @@ msgid "Kind" msgstr "" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" msgstr "" #. module: base @@ -3825,8 +3857,8 @@ msgid "Tree" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" +#: view:res.partner.bank:0 +msgid "Bank accounts" msgstr "" #. module: base @@ -4059,11 +4091,6 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4448,11 +4475,6 @@ msgstr "" msgid "Arguments" msgstr "" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4605,9 +4627,9 @@ msgid "Not Installable" msgstr "" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "Valószínűség (0.50)" +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "" #. module: base #: field:res.partner.address,mobile:0 @@ -5082,6 +5104,11 @@ msgstr "" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5164,8 +5191,8 @@ msgid "Operator" msgstr "" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" msgstr "" #. module: base @@ -5305,8 +5332,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5315,8 +5342,8 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" msgstr "" #. module: base @@ -5852,6 +5879,11 @@ msgstr "" msgid "Trigger Object" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5874,8 +5906,12 @@ msgid "Error" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" +#: 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 @@ -6309,8 +6345,8 @@ msgid "Modules to be installed, upgraded or removed" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" msgstr "" #. module: base @@ -6387,11 +6423,6 @@ msgstr "Általános leírás" msgid "Cancel Install" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/i18n/it_IT.po b/bin/addons/base/i18n/it_IT.po index 3d1aedf023b..8b3009527e7 100644 --- a/bin/addons/base/i18n/it_IT.po +++ b/bin/addons/base/i18n/it_IT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 17:57:17+0000\n" -"PO-Revision-Date: 2008-12-22 17:57:17+0000\n" +"POT-Creation-Date: 2009-01-03 02:08:21+0000\n" +"PO-Revision-Date: 2009-01-03 02:08:21+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "Nome Funzione" msgid "terp-account" msgstr "terp-account" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "Categoria Partner" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -223,7 +228,7 @@ msgstr "Non Avviato" #. module: base #: view:ir.sequence:0 msgid "Minute: %(min)s" -msgstr "" +msgstr "Minuti: %(min)s" #. module: base #: view:res.company:0 @@ -370,9 +375,9 @@ msgid "Sender's email" msgstr "Email Mittente" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" -msgstr "Tabulare" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" +msgstr "" #. module: base #: help:ir.actions.server,email:0 @@ -458,9 +463,9 @@ msgid "STOCK_CANCEL" msgstr "STOCK_CANCEL" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" -msgstr "Contatto Possibile Cliente" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" +msgstr "" #. module: base #: constraint:ir.ui.view:0 @@ -573,7 +578,7 @@ msgstr "Attività di Destinazione" #. module: base #: model:res.partner.category,name:base.res_partner_category_10 msgid "Open Source Service Company" -msgstr "" +msgstr "Società di servizi Open Source" #. module: base #: selection:ir.ui.menu,icon:0 @@ -756,7 +761,7 @@ msgstr "EAN13" #. module: base #: view:res.users:0 msgid "Roles are used to defined available actions, provided by workflows." -msgstr "" +msgstr "Ruoli utilizzati per definire le azioni disponibili, fornite dai workflow." #. module: base #: model:ir.actions.act_window,name:base.open_repository_tree @@ -808,7 +813,7 @@ msgstr "Limite Predefinito per la vista 'Lista'" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 msgid "Segmentation" -msgstr "" +msgstr "Segmentazione" #. module: base #: model:ir.model,name:base.model_ir_server_object_lines @@ -851,7 +856,7 @@ msgstr "Gruppo" #. module: base #: help:res.partner,customer:0 msgid "Check this box if the partner is a customer." -msgstr "" +msgstr "Seleziona questo box se il partner è un cliente." #. module: base #: selection:ir.ui.menu,icon:0 @@ -912,7 +917,7 @@ msgstr "res.partner.event" #: wizard_field:server.action.create,init,type:0 #: wizard_view:server.action.create,init:0 msgid "Select Action Type" -msgstr "" +msgstr "Selezionare il Tipo di Azione" #. module: base #: code:addons/base/module/wizard/wizard_export_lang.py:0 @@ -930,7 +935,7 @@ msgstr "Valute" #. module: base #: selection:ir.actions.todo,type:0 msgid "Configure" -msgstr "" +msgstr "Configurare" #. module: base #: help:res.partner,lang:0 @@ -942,11 +947,21 @@ msgstr "Se la lingua selezionata è stata caricata nel sistema, allora il relati msgid "STOCK_UNDERLINE" msgstr "STOCK_UNDERLINE" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "Oggetto Personalizzato" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" @@ -1007,7 +1022,7 @@ msgstr "Rif. ID" #. module: base #: help:res.partner.address,active:0 msgid "Uncheck the active field to hide the contact." -msgstr "" +msgstr "Deseleziona il campo attivo per nascondere il contatto." #. module: base #: model:ir.ui.menu,name:base.next_id_10 @@ -1546,7 +1561,7 @@ msgstr "Posizione sconosciuta nell vista ereditata %s !" #. module: base #: view:res.users:0 msgid "Add User" -msgstr "" +msgstr "Aggiungi Utente" #. module: base #: field:res.request,trigger_date:0 @@ -1838,11 +1853,6 @@ msgstr "terp-stock" msgid "Get file" msgstr "Ricevi File" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1865,6 +1875,12 @@ msgstr "0=Molto Urgente\n" msgid "ir.model.data" msgstr "ir.model.data" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1884,7 +1900,7 @@ msgstr "Il percorso .rml del file oppure NULL se il contenuto si trova in report #. module: base #: view:res.users:0 msgid "Skip" -msgstr "" +msgstr "Salta" #. module: base #: model:ir.actions.act_window,name:base.act_menu_create @@ -1964,17 +1980,16 @@ msgstr "Globale" msgid "From" msgstr "Da" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "Questo metodo non esiste più" - #. module: base #: selection:res.partner.event,partner_type:0 msgid "Retailer" msgstr "Fornitore" +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -1983,7 +1998,7 @@ msgstr "Invia" #. module: base #: wizard_button:server.action.create,init,step_1:0 msgid "Next" -msgstr "" +msgstr "Successivo" #. module: base #: model:ir.ui.menu,name:base.next_id_11 @@ -2000,11 +2015,6 @@ msgstr "File TGZ" msgid "Set NULL" msgstr "Imposta a NULL" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2035,7 +2045,12 @@ msgstr "Creato Manualmente" #. module: base #: view:ir.module.module:0 msgid "Defined Reports" -msgstr "" +msgstr "Report Definiti" + +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "Tabulare" #. module: base #: selection:ir.ui.menu,icon:0 @@ -2050,7 +2065,7 @@ msgstr "STOCK_FILE" #. module: base #: model:res.partner.category,name:base.res_partner_category_9 msgid "Components Supplier" -msgstr "" +msgstr "Fornitori" #. module: base #: view:ir.rule.group:0 @@ -2119,7 +2134,7 @@ msgstr "STOCK_OK" #: code:report/report_sxw.py:0 #, python-format msgid "print" -msgstr "" +msgstr "stampa" #. module: base #: code:addons/base/ir/ir_model.py:0 @@ -2132,6 +2147,11 @@ msgstr "Manca la Password !" msgid "RML Header" msgstr "Intestazione RML" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "Imposta" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2179,7 +2199,7 @@ msgstr "Operando" #. module: base #: help:res.partner,supplier:0 msgid "Check this box if the partner is a supplier. If it's not checked, purchase people will not see it when encoding a purchase order." -msgstr "" +msgstr "Seleziona questa casella se il partner è un fornitore. Se non selezionata, gli acquirenti non la vedranno durante la definizione di un ordine di acquisto." #. module: base #: wizard_view:module.module.update,init:0 @@ -2204,7 +2224,7 @@ msgstr "STOCK_UNINDENT" #. module: base #: selection:ir.actions.todo,start_on:0 msgid "At Once" -msgstr "" +msgstr "In una sola volta" #. module: base #: model:ir.ui.menu,name:base.menu_security @@ -2266,9 +2286,9 @@ msgid "Recursion error in modules dependencies !" msgstr "Errore ricorsivo nelle dipendenze dei moduli !" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" -msgstr "" +#: view:ir.rule:0 +msgid "Manual domain setup" +msgstr "Configurazione Manuale Dominio" #. module: base #: field:ir.actions.report.xml,report_xsl:0 @@ -2349,12 +2369,12 @@ msgstr "STOCK_UNDO" #. module: base #: field:ir.attachment,create_date:0 msgid "Date Created" -msgstr "" +msgstr "Data di creazione" #. module: base #: view:ir.attachment:0 msgid "Attachment" -msgstr "" +msgstr "Allegato" #. module: base #: selection:ir.rule,operator:0 @@ -2379,7 +2399,7 @@ msgstr "Numero Successivo" #. module: base #: view:ir.sequence:0 msgid "Seconde: %(sec)s" -msgstr "" +msgstr "Secondi: %(sec)s" #. module: base #: wizard_view:module.module.update,init:0 @@ -2488,6 +2508,11 @@ msgstr "STOCK_JUSTIFY_FILL" msgid "draft" msgstr "Bozza" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "Probabilità (0.50)" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2594,7 +2619,7 @@ msgstr "Azienda Principale" #. module: base #: view:ir.attachment:0 msgid "Attached To" -msgstr "" +msgstr "Allegato a" #. module: base #: field:res.lang,decimal_point:0 @@ -2645,20 +2670,14 @@ msgid "(year)=" msgstr "(anno)=" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" -msgstr "Codice" +#: rml:ir.module.reference:0 +msgid "Dependencies :" +msgstr "" #. module: base #: view:ir.module.module:0 msgid "Features" -msgstr "" +msgstr "Funzionalità" #. module: base #: selection:ir.ui.menu,icon:0 @@ -2668,13 +2687,13 @@ msgstr "terp-partner" #. module: base #: field:ir.attachment,create_uid:0 msgid "Creator" -msgstr "" +msgstr "Creatore" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" -msgstr "Il modo get_memory non è implementato !" +msgid "You cannot perform this operation." +msgstr "" #. module: base #: field:ir.actions.server,code:0 @@ -2726,7 +2745,6 @@ msgstr "Relazione" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2868,9 +2886,9 @@ msgid "Childs Field" msgstr "Campo Collegato" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Nome Ruolo" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "" #. module: base #: code:addons/base/res/res_user.py:0 @@ -2881,7 +2899,7 @@ msgstr "Non posso rimuovere l'utente root" #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" -msgstr "" +msgstr "Versione Installata" #. module: base #: view:res.lang:0 @@ -2932,6 +2950,11 @@ msgstr "Esporta File Traduzione" msgid "Report Xml" msgstr "Report XML" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -2971,7 +2994,7 @@ msgstr "Accumuka" #. module: base #: model:res.partner.category,name:base.res_partner_category_14 msgid "Bad customers" -msgstr "" +msgstr "Cattivi clienti" #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -3000,6 +3023,11 @@ msgstr "Banca" msgid "STOCK_HARDDISK" msgstr "STOCK_HARDDISK" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3039,7 +3067,7 @@ msgstr "Nome" #: 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 "Carica una Traduzione Ufficiale" #. module: base #: selection:ir.ui.menu,icon:0 @@ -3049,7 +3077,7 @@ msgstr "STOCK_APPLY" #. module: base #: field:ir.module.module,reports_by_module:0 msgid "Reports" -msgstr "" +msgstr "Resoconti" #. module: base #: model:ir.actions.act_window,name:base.action_maintenance_contract_form @@ -3155,6 +3183,11 @@ msgstr "Alta" msgid "Instances" msgstr "Istanze" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Nome Ruolo" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3163,7 +3196,7 @@ msgstr "STOCK_COPY" #. module: base #: selection:ir.actions.todo,start_on:0 msgid "Auto" -msgstr "" +msgstr "Automatico" #. module: base #: model:res.partner.category,name:base.res_partner_category_3 @@ -3223,22 +3256,13 @@ msgstr "Registra Regole" #. module: base #: wizard_view:module.lang.import,init:0 msgid "You have to import a .CSV file wich is encoded in UTF-8. Please check that the first line of your file is one of the following:" -msgstr "" +msgstr "Devi importare un file .CSV codificato in UTF-8. Per favore controlla che la prima riga del tuo file sia una delle seguenti:" #. module: base #: field:ir.report.custom.fields,groupby:0 msgid "Group by" msgstr "Raggruppa per" -#. 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 "Categorie Partner" - #. module: base #: field:ir.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3317,7 +3341,7 @@ msgstr "wizard.ir.model.menu.create.line" #. module: base #: field:ir.attachment,res_id:0 msgid "Attached ID" -msgstr "" +msgstr "ID Allegato" #. module: base #: selection:res.partner.event,type:0 @@ -3449,9 +3473,15 @@ msgid "Update Translations" msgstr "Aggiorna Traduzioni" #. module: base -#: view:res.config.view:0 -msgid "Set" -msgstr "Imposta" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" +msgstr "Codice" #. module: base #: field:ir.report.custom.fields,width:0 @@ -3529,6 +3559,12 @@ msgstr "" msgid "Channels" msgstr "Canali" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "Il modo get_memory non è implementato !" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3563,9 +3599,9 @@ msgid "Schedule for Installation" msgstr "Pianifica per Installazione" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" -msgstr "" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "Anno senza secolo: %(y)s" #. module: base #: selection:ir.model.fields,select_level:0 @@ -3603,7 +3639,7 @@ msgstr "Nome Trigger" #. module: base #: wizard_button:server.action.create,step_1,create:0 msgid "Create" -msgstr "" +msgstr "Crea" #. module: base #: code:addons/base/res/res_user.py:0 @@ -3645,7 +3681,7 @@ msgstr "Sorgente" #: model:ir.actions.act_window,name:base.action_partner_title_contact #: model:ir.ui.menu,name:base.menu_partner_title_contact msgid "Contacts Titles" -msgstr "" +msgstr "Qualifiche dei contatti" #. module: base #: help:res.partner.address,partner_id:0 @@ -3788,11 +3824,6 @@ msgstr "Questa operazione potrebbe richiedere alcuni minuti" msgid "STOCK_COLOR_PICKER" msgstr "STOCK_COLOR_PICKER" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "Configurazione Manuale Dominio" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3811,9 +3842,10 @@ msgid "Kind" msgstr "Tipo" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" -msgstr "Conti Bancari" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" +msgstr "Questo metodo non esiste più" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 @@ -3830,9 +3862,9 @@ msgid "Tree" msgstr "Struttura ad Albero" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" -msgstr "" +#: view:res.partner.bank:0 +msgid "Bank accounts" +msgstr "Conti Bancari" #. module: base #: selection:ir.actions.todo,start_on:0 @@ -3852,7 +3884,7 @@ 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 "Tenere vuoto se non si vuole che l'utente possa collegarsi al sistema" #. module: base #: field:ir.model.access,perm_read:0 @@ -3882,7 +3914,7 @@ msgstr "Campo Personalizzato" #. module: base #: field:ir.model.fields,relation_field:0 msgid "Relation Field" -msgstr "" +msgstr "Campo di relazione" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 @@ -3949,7 +3981,7 @@ msgstr "Regole" #: model:ir.actions.act_window,name:base.action_partner_title #: model:ir.ui.menu,name:base.menu_partner_title msgid "Titles" -msgstr "" +msgstr "Qualifiche" #. module: base #: wizard_view:module.upgrade,start:0 @@ -3976,7 +4008,7 @@ msgstr "pdf" #. module: base #: field:ir.actions.todo,start_date:0 msgid "Start Date" -msgstr "" +msgstr "Data di inizio" #. module: base #: model:ir.actions.act_window,name:base.action_partner_address_form @@ -4012,7 +4044,7 @@ msgstr "" #. module: base #: view:wizard.module.lang.export:0 msgid "The official translations pack of all OpenERP/OpenObjects module are managed through launchpad. We use their online interface to synchronize all translations efforts." -msgstr "" +msgstr "Il pacchetto delle traduzioni ufficiali di OpenErp/OpenObjects sono gestite tramite launchpad. Utilizziamo la loro interfaccia online per sincronizzare tutte le traduzioni" #. module: base #: field:ir.report.custom,title:0 @@ -4022,7 +4054,7 @@ msgstr "Titolo Report" #. module: base #: field:ir.attachment,datas:0 msgid "File Content" -msgstr "" +msgstr "Contenuto del file" #. module: base #: view:ir.module.module:0 @@ -4064,11 +4096,6 @@ msgstr "Impossibile generare il prossimo ID poichè alcuni partner hanno un ID a msgid "Unsubscribed" msgstr "Disiscritto" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4077,7 +4104,7 @@ msgstr "Numero di moduli aggiornati" #. module: base #: view:ir.attachment:0 msgid "Preview" -msgstr "" +msgstr "Anteprima" #. module: base #: view:ir.actions.configuration.wizard:0 @@ -4133,7 +4160,7 @@ msgstr "" #. module: base #: view:res.users:0 msgid "Define New Users" -msgstr "" +msgstr "Definire Nuovi Utenti" #. module: base #: model:ir.actions.act_window,name:base.action_rule @@ -4160,7 +4187,7 @@ msgstr "Telefono" #. module: base #: view:ir.sequence:0 msgid "Day of the year: %(doy)s" -msgstr "" +msgstr "Giorno dell'anno: %(doy)s" #. module: base #: help:ir.actions.wizard,multi:0 @@ -4214,7 +4241,7 @@ msgstr "Attivo" #. module: base #: view:ir.module.module:0 msgid "Created Menus" -msgstr "" +msgstr "Menu Creati" #. module: base #: field:ir.ui.view.custom,ref_id:0 @@ -4262,7 +4289,7 @@ msgstr "Apri Finestra" #. module: base #: view:res.users:0 msgid "Groups are used to defined access rights on each screen and menu." -msgstr "" +msgstr "I gruppi sono utilizzati per definire i diritti di accesso su ciascuna schermata e menu" #. module: base #: selection:ir.cron,interval_type:0 @@ -4453,11 +4480,6 @@ msgstr "Esportazione Completata" msgid "Arguments" msgstr "Argomenti" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4502,7 +4524,7 @@ msgstr "<=" #. module: base #: view:wizard.module.lang.export:0 msgid "Export Data" -msgstr "" +msgstr "Esporta Dati" #. module: base #: field:workflow.triggers,instance_id:0 @@ -4562,7 +4584,7 @@ msgstr "" #. module: base #: selection:ir.module.module,license:0 msgid "GPL-3 or later version" -msgstr "" +msgstr "GPL-3 o versione successiva" #. module: base #: field:ir.actions.actions,usage:0 @@ -4592,7 +4614,7 @@ msgstr "Altre Azioni" #. module: base #: model:ir.actions.wizard,name:base.wizard_server_action_create msgid "Create Action" -msgstr "" +msgstr "Crea azione" #. module: base #: model:ir.model,name:base.model_workflow_workitem @@ -4610,9 +4632,9 @@ msgid "Not Installable" msgstr "Non Installabile" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "Probabilità (0.50)" +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "" #. module: base #: field:res.partner.address,mobile:0 @@ -4669,7 +4691,7 @@ msgstr "ID Collegati" #. module: base #: field:ir.actions.todo,end_date:0 msgid "End Date" -msgstr "" +msgstr "Data finale" #. module: base #: field:ir.exports,resource:0 @@ -4902,7 +4924,7 @@ msgstr "ir.actions.act_window_close" #. module: base #: selection:ir.actions.todo,type:0 msgid "Service" -msgstr "" +msgstr "Servizio" #. module: base #: help:ir.actions.act_window,auto_refresh:0 @@ -5087,6 +5109,11 @@ msgstr "Limite" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "Indirizzo Partner" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5138,7 +5165,7 @@ msgstr "Importa / Esporta" #. module: base #: view:ir.sequence:0 msgid "Week of the year: %(woy)s" -msgstr "" +msgstr "Settimana dell'anno: %(woy)s" #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install @@ -5169,9 +5196,9 @@ msgid "Operator" msgstr "Operatore" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" -msgstr "Indirizzo Partner" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" +msgstr "" #. module: base #: view:wizard.module.lang.export:0 @@ -5253,7 +5280,7 @@ msgstr "Report Personalizzato" #. module: base #: view:ir.sequence:0 msgid "Day of the week (0:Monday): %(weekday)s" -msgstr "" +msgstr "Giorno della settimana (0:Lunedì): %(weekday)" #. module: base #: selection:ir.actions.server,state:0 @@ -5264,7 +5291,7 @@ msgstr "Email" #: 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 "Risincronizza i termini" #. module: base #: field:ir.model.access,perm_create:0 @@ -5291,7 +5318,7 @@ msgstr "" #: code:addons/base/module/module.py:0 #, python-format msgid "Can not upgrade module '%s'. It is not installed." -msgstr "" +msgstr "Impossibile aggiornare il modulo '%s'. Non è installato.," #. module: base #: code:osv/fields.py:0 @@ -5310,8 +5337,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5320,9 +5347,9 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" -msgstr "Categoria Partner" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" +msgstr "Contatto Possibile Cliente" #. module: base #: selection:ir.ui.menu,icon:0 @@ -5384,7 +5411,7 @@ msgstr "Rispondi" #. module: base #: view:ir.sequence:0 msgid "Year with century: %(year)s" -msgstr "" +msgstr "Anno del secolo: %(year)" #. module: base #: view:maintenance.contract.wizard:0 @@ -5442,7 +5469,7 @@ msgstr "Nome Categoria" #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Gantt" -msgstr "" +msgstr "Gantt" #. module: base #: code:osv/fields.py:0 @@ -5453,7 +5480,7 @@ msgstr "Non Implementato" #. module: base #: model:res.partner.category,name:base.res_partner_category_5 msgid "Gold Partner" -msgstr "" +msgstr "Gold Partner" #. module: base #: model:res.partner.category,name:base.res_partner_category_15 @@ -5617,7 +5644,7 @@ msgstr "Grafico" #. module: base #: field:ir.module.module,installed_version:0 msgid "Latest version" -msgstr "" +msgstr "La versione più recente" #. module: base #: model:ir.model,name:base.model_ir_actions_server @@ -5668,7 +5695,7 @@ msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_2 msgid "OpenERP Partners" -msgstr "" +msgstr "Partners OpenERP" #. module: base #: view:res.config.view:0 @@ -5689,7 +5716,7 @@ msgstr "Azione Server" #. module: base #: selection:ir.module.module,license:0 msgid "GPL-3" -msgstr "" +msgstr "GPL-3" #. module: base #: field:ir.actions.act_window_close,name:0 @@ -5794,7 +5821,7 @@ msgstr "Transizioni in Ingresso" #: model:ir.ui.menu,name:base.menu_partner_title_partner #: view:res.partner.title:0 msgid "Partners Titles" -msgstr "Titoli Partner" +msgstr "Qualifiche dei partners" #. module: base #: view:ir.rule:0 @@ -5857,6 +5884,11 @@ msgstr "Menu Accesso" msgid "Trigger Object" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "Mese: %(month)s" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5879,9 +5911,13 @@ msgid "Error" msgstr "Errore" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" -msgstr "" +#: 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 "Categorie Partner" #. module: base #: model:ir.model,name:base.model_workflow_activity @@ -6010,7 +6046,7 @@ msgstr "L'IVA non sembra essere corretta" #. module: base #: view:ir.sequence:0 msgid "Hour 00->12: %(h12)s" -msgstr "" +msgstr "Formato Orario 00->12: %(h12)s" #. module: base #: field:res.currency,rate:0 @@ -6035,7 +6071,7 @@ msgstr "" #. module: base #: model:res.partner.category,name:base.res_partner_category_13 msgid "Important customers" -msgstr "" +msgstr "Clienti importanti" #. module: base #: field:res.partner.som,factor:0 @@ -6099,7 +6135,7 @@ msgstr "Attenzione: non puoi creare aziende ricorsive" #: code:addons/base/ir/ir_actions.py:0 #, python-format msgid "Please specify the Partner Email address !" -msgstr "" +msgstr "Per favore specificare l'indirizzo Email del Partner" #. module: base #: model:ir.model,name:base.model_res_config_view @@ -6161,7 +6197,7 @@ msgstr "XSL RML Automatico" #. module: base #: field:ir.attachment,preview:0 msgid "Image Preview" -msgstr "" +msgstr "Anteprima immagine" #. module: base #: view:workflow.workitem:0 @@ -6234,7 +6270,7 @@ msgstr "Mailing di Massa" #. module: base #: wizard_view:module.lang.import,init:0 msgid "You can also import .po files." -msgstr "" +msgstr "Possibile importare anche .po files" #. module: base #: wizard_view:base.module.import,import:0 @@ -6259,7 +6295,7 @@ msgstr "Annula Sottoscrizione Report" #. module: base #: view:ir.sequence:0 msgid "Hour 00->24: %(h24)s" -msgstr "" +msgstr "Formato Orario 00->24: %(h24)s" #. module: base #: constraint:res.partner.category:0 @@ -6285,7 +6321,7 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_partner_customer_form_new #: model:ir.ui.menu,name:base.menu_partner_customer_form_new msgid "New Partner" -msgstr "" +msgstr "Nuovo Partner" #. module: base #: wizard_view:module.lang.install,start:0 @@ -6314,9 +6350,9 @@ msgid "Modules to be installed, upgraded or removed" msgstr "Moduli da installare, aggiornare o rimuovere" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" -msgstr "Mese: %(month)s" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_partner_address_form @@ -6349,7 +6385,7 @@ msgstr "Importa Lingua" #. 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 "" +msgstr "Utilizzato per selezionare automaticamente l'indirizzo corretto in base al contesto nei documenti vendite e acquisti." #. module: base #: help:ir.cron,numbercall:0 @@ -6393,11 +6429,6 @@ msgstr "Descrizione Generale" msgid "Cancel Install" msgstr "Annulla Installazione" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/i18n/lt_LT.po b/bin/addons/base/i18n/lt_LT.po index 7ed5a1c85a2..caa4f2f9edc 100644 --- a/bin/addons/base/i18n/lt_LT.po +++ b/bin/addons/base/i18n/lt_LT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 17:57:56+0000\n" -"PO-Revision-Date: 2008-12-22 17:57:56+0000\n" +"POT-Creation-Date: 2009-01-03 02:09:02+0000\n" +"PO-Revision-Date: 2009-01-03 02:09:02+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "" msgid "terp-account" msgstr "" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -370,8 +375,8 @@ msgid "Sender's email" msgstr "" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" msgstr "" #. module: base @@ -458,8 +463,8 @@ msgid "STOCK_CANCEL" msgstr "" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" msgstr "" #. module: base @@ -942,11 +947,21 @@ msgstr "" msgid "STOCK_UNDERLINE" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" @@ -1837,11 +1852,6 @@ msgstr "" msgid "Get file" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1863,6 +1873,12 @@ msgstr "" msgid "ir.model.data" msgstr "" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1963,14 +1979,13 @@ msgid "From" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" +#: selection:res.partner.event,partner_type:0 +msgid "Retailer" msgstr "" #. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Retailer" +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" msgstr "" #. module: base @@ -1998,11 +2013,6 @@ msgstr "" msgid "Set NULL" msgstr "" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2035,6 +2045,11 @@ msgstr "" msgid "Defined Reports" msgstr "" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" @@ -2130,6 +2145,11 @@ msgstr "" msgid "RML Header" msgstr "" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2264,8 +2284,8 @@ msgid "Recursion error in modules dependencies !" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" +#: view:ir.rule:0 +msgid "Manual domain setup" msgstr "" #. module: base @@ -2486,6 +2506,11 @@ msgstr "" msgid "draft" msgstr "" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2643,14 +2668,8 @@ msgid "(year)=" msgstr "" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" +#: rml:ir.module.reference:0 +msgid "Dependencies :" msgstr "" #. module: base @@ -2669,9 +2688,9 @@ msgid "Creator" msgstr "" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" +msgid "You cannot perform this operation." msgstr "" #. module: base @@ -2724,7 +2743,6 @@ msgstr "" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2866,8 +2884,8 @@ msgid "Childs Field" msgstr "" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" msgstr "" #. module: base @@ -2930,6 +2948,11 @@ msgstr "" msgid "Report Xml" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -2998,6 +3021,11 @@ msgstr "" msgid "STOCK_HARDDISK" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3153,6 +3181,11 @@ msgstr "" msgid "Instances" msgstr "" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3228,15 +3261,6 @@ msgstr "" msgid "Group by" 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.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3444,8 +3468,14 @@ msgid "Update Translations" msgstr "" #. module: base -#: view:res.config.view:0 -msgid "Set" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" msgstr "" #. module: base @@ -3524,6 +3554,12 @@ msgstr "" msgid "Channels" msgstr "" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3558,8 +3594,8 @@ msgid "Schedule for Installation" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" msgstr "" #. module: base @@ -3783,11 +3819,6 @@ msgstr "" msgid "STOCK_COLOR_PICKER" msgstr "" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3806,8 +3837,9 @@ msgid "Kind" msgstr "" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" msgstr "" #. module: base @@ -3825,8 +3857,8 @@ msgid "Tree" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" +#: view:res.partner.bank:0 +msgid "Bank accounts" msgstr "" #. module: base @@ -4059,11 +4091,6 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4448,11 +4475,6 @@ msgstr "" msgid "Arguments" msgstr "" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4605,8 +4627,8 @@ msgid "Not Installable" msgstr "" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" +#: rml:ir.module.reference:0 +msgid "View :" msgstr "" #. module: base @@ -5082,6 +5104,11 @@ msgstr "" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5164,8 +5191,8 @@ msgid "Operator" msgstr "" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" msgstr "" #. module: base @@ -5305,8 +5332,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5315,8 +5342,8 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" msgstr "" #. module: base @@ -5852,6 +5879,11 @@ msgstr "" msgid "Trigger Object" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5874,8 +5906,12 @@ msgid "Error" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" +#: 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 @@ -6309,8 +6345,8 @@ msgid "Modules to be installed, upgraded or removed" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" msgstr "" #. module: base @@ -6387,11 +6423,6 @@ msgstr "" msgid "Cancel Install" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/i18n/nl_NL.po b/bin/addons/base/i18n/nl_NL.po index c94445825e0..59eac5a478f 100644 --- a/bin/addons/base/i18n/nl_NL.po +++ b/bin/addons/base/i18n/nl_NL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 17:54:00+0000\n" -"PO-Revision-Date: 2008-12-22 17:54:00+0000\n" +"POT-Creation-Date: 2009-01-03 02:04:56+0000\n" +"PO-Revision-Date: 2009-01-03 02:04:56+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "Functie naam" msgid "terp-account" msgstr "terp-account" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "Relatie categorie" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -125,7 +130,7 @@ msgstr "STOCK_SORT_ASCENDING" #: view:res.groups:0 #: view:ir.model:0 msgid "Access Rules" -msgstr "Gebruikers Rechten" +msgstr "Toegangsrechten" #. module: base #: field:ir.ui.view,arch:0 @@ -370,9 +375,9 @@ msgid "Sender's email" msgstr "E-mailadres Afzender" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" -msgstr "In tabelvorm" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" +msgstr "" #. module: base #: help:ir.actions.server,email:0 @@ -406,7 +411,7 @@ msgstr "Referentie Gids" #: field:res.partner.event,partner_id:0 #: selection:res.partner.title,domain:0 msgid "Partner" -msgstr "Partner" +msgstr "Relatie" #. module: base #: model:ir.actions.act_window,name:base.action_workflow_transition_form @@ -458,9 +463,9 @@ msgid "STOCK_CANCEL" msgstr "STOCK_CANCEL" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" -msgstr "Contactpersoon Prospect" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" +msgstr "" #. module: base #: constraint:ir.ui.view:0 @@ -563,7 +568,7 @@ msgstr "Kolom %s is ondefinieerbaar. Gereserveerd sleutelwoord !" #. module: base #: help:ir.ui.menu,groups_id:0 msgid "If you put groups, the visibility of this menu will be based on these groups. If this field is empty, Open ERP will compute visibility based on the related object's read access." -msgstr "" +msgstr "Als er groepen worden toegevoegd dan zullen de menu's daarop gebaseerd worden. Als deze velden leeg worden gelaten dan zal OpenERP de menu's baseren op leesrechten." #. module: base #: field:workflow.transition,act_to:0 @@ -942,11 +947,21 @@ msgstr "Als een vertaling in het systeem is geladen zullen alle, aan deze partne msgid "STOCK_UNDERLINE" msgstr "STOCK_UNDERLINE" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "Aangepast Object" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" @@ -1838,11 +1853,6 @@ msgstr "terp-stock" msgid "Get file" msgstr "Bestand ophalen" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1865,6 +1875,12 @@ msgstr "0=Zeer Urgent\n" msgid "ir.model.data" msgstr "ir.model.data" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1964,17 +1980,16 @@ msgstr "Algemeen" msgid "From" msgstr "Van" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "Deze methode bestaat niet meer" - #. module: base #: selection:res.partner.event,partner_type:0 msgid "Retailer" msgstr "Detailhandelaar" +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2000,11 +2015,6 @@ msgstr "TGZ archiefbestand" msgid "Set NULL" msgstr "Set NULL" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2037,6 +2047,11 @@ msgstr "Handmatig gecreëerd" msgid "Defined Reports" msgstr "" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "In tabelvorm" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" @@ -2132,6 +2147,11 @@ msgstr "Geen Wachtwoord!" msgid "RML Header" msgstr "RML Header" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "Toepassen" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2266,9 +2286,9 @@ msgid "Recursion error in modules dependencies !" msgstr "Terugkeerende fout in de module-afhanlijkheden !" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" -msgstr "" +#: view:ir.rule:0 +msgid "Manual domain setup" +msgstr "Handmatige domein opzet" #. module: base #: field:ir.actions.report.xml,report_xsl:0 @@ -2281,7 +2301,7 @@ msgstr "XSL pad" #: view:ir.model.access:0 #: view:res.groups:0 msgid "Access Controls" -msgstr "Toegangsrechten" +msgstr "Toegangsbeperkingen" #. module: base #: model:ir.model,name:base.model_wizard_module_lang_export @@ -2418,7 +2438,7 @@ msgstr "STOCK_GO_BACK" #: code:osv/orm.py:0 #, python-format msgid "AccessError" -msgstr "AccessError" +msgstr "Toegangsbeperking" #. module: base #: view:res.lang:0 @@ -2488,6 +2508,11 @@ msgstr "STOCK_JUSTIFY_FILL" msgid "draft" msgstr "concept" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "Slagingskans" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2645,15 +2670,9 @@ msgid "(year)=" msgstr "(jaar)=" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" -msgstr "Code" +#: rml:ir.module.reference:0 +msgid "Dependencies :" +msgstr "" #. module: base #: view:ir.module.module:0 @@ -2671,10 +2690,10 @@ msgid "Creator" msgstr "" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" -msgstr "Niet geïmplementeerde get_memory methode !" +msgid "You cannot perform this operation." +msgstr "" #. module: base #: field:ir.actions.server,code:0 @@ -2726,7 +2745,6 @@ msgstr "Gerelateerd aan" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2868,9 +2886,9 @@ msgid "Childs Field" msgstr "Onderliggend veld" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Rolnaam" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "" #. module: base #: code:addons/base/res/res_user.py:0 @@ -2881,7 +2899,7 @@ msgstr "Kan de root gebruiker niet verwijderen." #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" -msgstr "" +msgstr "Geïnstalleerde versie" #. module: base #: view:res.lang:0 @@ -2932,6 +2950,11 @@ msgstr "Vertalingsbestand exporteren" msgid "Report Xml" msgstr "Rapport Xml" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -3000,6 +3023,11 @@ msgstr "Bank" msgid "STOCK_HARDDISK" msgstr "STOCK_HARDDISK" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3155,6 +3183,11 @@ msgstr "Hoog" msgid "Instances" msgstr "Exemplaren" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Rolnaam" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3230,15 +3263,6 @@ msgstr "" msgid "Group by" msgstr "Groeperen per" -#. 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 "Relatie Categorieën" - #. module: base #: field:ir.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3449,9 +3473,15 @@ msgid "Update Translations" msgstr "Vertalingen updaten" #. module: base -#: view:res.config.view:0 -msgid "Set" -msgstr "Toepassen" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" +msgstr "Code" #. module: base #: field:ir.report.custom.fields,width:0 @@ -3529,6 +3559,12 @@ msgstr "" msgid "Channels" msgstr "Kanalen" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "Niet geïmplementeerde get_memory methode !" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3563,8 +3599,8 @@ msgid "Schedule for Installation" msgstr "Inplannen voor installatie" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" msgstr "" #. module: base @@ -3788,11 +3824,6 @@ msgstr "Deze uitvoering kan enige minuten duren." msgid "STOCK_COLOR_PICKER" msgstr "STOCK_COLOR_PICKER" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "Handmatige domein opzet" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3811,9 +3842,10 @@ msgid "Kind" msgstr "Soort" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" -msgstr "Bankrekeningen" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" +msgstr "Deze methode bestaat niet meer" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 @@ -3830,9 +3862,9 @@ msgid "Tree" msgstr "Boomstructuur" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" -msgstr "" +#: view:res.partner.bank:0 +msgid "Bank accounts" +msgstr "Bankrekeningen" #. module: base #: selection:ir.actions.todo,start_on:0 @@ -3857,7 +3889,7 @@ msgstr "" #. module: base #: field:ir.model.access,perm_read:0 msgid "Read Access" -msgstr "Schrijfrechten" +msgstr "Lezen" #. module: base #: rml:ir.module.reference:0 @@ -4064,11 +4096,6 @@ msgstr "Volgende ID genereren is onmogelijk omdat sommige Relaties een alfabetis msgid "Unsubscribed" msgstr "Afgemeld" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4441,7 +4468,7 @@ msgstr "Wisselkoers" #. module: base #: field:ir.model.access,perm_write:0 msgid "Write Access" -msgstr "Schrijfrechten" +msgstr "Schrijven" #. module: base #: view:wizard.module.lang.export:0 @@ -4453,11 +4480,6 @@ msgstr "Export Voltooid" msgid "Arguments" msgstr "Argumenten" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4610,9 +4632,9 @@ msgid "Not Installable" msgstr "Niet installeerbaar" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "Slagingskans" +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "" #. module: base #: field:res.partner.address,mobile:0 @@ -5087,6 +5109,11 @@ msgstr "Limiet" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "Relatie Adres" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5169,9 +5196,9 @@ msgid "Operator" msgstr "Operator" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" -msgstr "Relatie Adres" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" +msgstr "" #. module: base #: view:wizard.module.lang.export:0 @@ -5269,7 +5296,7 @@ msgstr "" #. module: base #: field:ir.model.access,perm_create:0 msgid "Create Access" -msgstr "Toegang Aanmaken" +msgstr "Aanmaken" #. module: base #: model:ir.actions.act_window,name:base.action_partner_other_form @@ -5310,8 +5337,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5320,9 +5347,9 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" -msgstr "Relatie categorie" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" +msgstr "Contactpersoon Prospect" #. module: base #: selection:ir.ui.menu,icon:0 @@ -5617,7 +5644,7 @@ msgstr "Grafiek" #. module: base #: field:ir.module.module,installed_version:0 msgid "Latest version" -msgstr "" +msgstr "Laatste Versie" #. module: base #: model:ir.model,name:base.model_ir_actions_server @@ -5857,6 +5884,11 @@ msgstr "Toegangsmenu" msgid "Trigger Object" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "Maand %(maand)en" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5879,9 +5911,13 @@ msgid "Error" msgstr "Fout" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" -msgstr "" +#: 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 "Relatie Categorieën" #. module: base #: model:ir.model,name:base.model_workflow_activity @@ -6314,9 +6350,9 @@ msgid "Modules to be installed, upgraded or removed" msgstr "Modules die worden geïnstalleerd, bijgewerkt of verwijderd" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" -msgstr "Maand %(maand)en" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_partner_address_form @@ -6393,11 +6429,6 @@ msgstr "Algemene Omschrijving" msgid "Cancel Install" msgstr "Installatie afbreken" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/i18n/pl_PL.po b/bin/addons/base/i18n/pl_PL.po index 005014dea04..d355a740f87 100644 --- a/bin/addons/base/i18n/pl_PL.po +++ b/bin/addons/base/i18n/pl_PL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:05:30+0000\n" -"PO-Revision-Date: 2008-12-22 18:05:30+0000\n" +"POT-Creation-Date: 2009-01-03 02:09:43+0000\n" +"PO-Revision-Date: 2009-01-03 02:09:43+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "" msgid "terp-account" msgstr "" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -370,8 +375,8 @@ msgid "Sender's email" msgstr "" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" msgstr "" #. module: base @@ -458,8 +463,8 @@ msgid "STOCK_CANCEL" msgstr "" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" msgstr "" #. module: base @@ -942,11 +947,21 @@ msgstr "" msgid "STOCK_UNDERLINE" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" @@ -1837,11 +1852,6 @@ msgstr "" msgid "Get file" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1863,6 +1873,12 @@ msgstr "" msgid "ir.model.data" msgstr "" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1963,14 +1979,13 @@ msgid "From" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" +#: selection:res.partner.event,partner_type:0 +msgid "Retailer" msgstr "" #. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Retailer" +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" msgstr "" #. module: base @@ -1998,11 +2013,6 @@ msgstr "" msgid "Set NULL" msgstr "" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2035,6 +2045,11 @@ msgstr "" msgid "Defined Reports" msgstr "" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" @@ -2130,6 +2145,11 @@ msgstr "" msgid "RML Header" msgstr "" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2264,8 +2284,8 @@ msgid "Recursion error in modules dependencies !" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" +#: view:ir.rule:0 +msgid "Manual domain setup" msgstr "" #. module: base @@ -2486,6 +2506,11 @@ msgstr "" msgid "draft" msgstr "" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2643,14 +2668,8 @@ msgid "(year)=" msgstr "" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" +#: rml:ir.module.reference:0 +msgid "Dependencies :" msgstr "" #. module: base @@ -2669,9 +2688,9 @@ msgid "Creator" msgstr "" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" +msgid "You cannot perform this operation." msgstr "" #. module: base @@ -2724,7 +2743,6 @@ msgstr "" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2866,8 +2884,8 @@ msgid "Childs Field" msgstr "" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" msgstr "" #. module: base @@ -2930,6 +2948,11 @@ msgstr "" msgid "Report Xml" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -2998,6 +3021,11 @@ msgstr "" msgid "STOCK_HARDDISK" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3153,6 +3181,11 @@ msgstr "" msgid "Instances" msgstr "" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3228,15 +3261,6 @@ msgstr "" msgid "Group by" 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.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3444,8 +3468,14 @@ msgid "Update Translations" msgstr "" #. module: base -#: view:res.config.view:0 -msgid "Set" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" msgstr "" #. module: base @@ -3524,6 +3554,12 @@ msgstr "" msgid "Channels" msgstr "" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3558,8 +3594,8 @@ msgid "Schedule for Installation" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" msgstr "" #. module: base @@ -3783,11 +3819,6 @@ msgstr "" msgid "STOCK_COLOR_PICKER" msgstr "" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3806,8 +3837,9 @@ msgid "Kind" msgstr "" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" msgstr "" #. module: base @@ -3825,8 +3857,8 @@ msgid "Tree" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" +#: view:res.partner.bank:0 +msgid "Bank accounts" msgstr "" #. module: base @@ -4059,11 +4091,6 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4448,11 +4475,6 @@ msgstr "" msgid "Arguments" msgstr "" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4605,8 +4627,8 @@ msgid "Not Installable" msgstr "" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" +#: rml:ir.module.reference:0 +msgid "View :" msgstr "" #. module: base @@ -5082,6 +5104,11 @@ msgstr "" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5164,8 +5191,8 @@ msgid "Operator" msgstr "" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" msgstr "" #. module: base @@ -5305,8 +5332,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5315,8 +5342,8 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" msgstr "" #. module: base @@ -5852,6 +5879,11 @@ msgstr "" msgid "Trigger Object" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5874,8 +5906,12 @@ msgid "Error" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" +#: 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 @@ -6309,8 +6345,8 @@ msgid "Modules to be installed, upgraded or removed" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" msgstr "" #. module: base @@ -6387,11 +6423,6 @@ msgstr "" msgid "Cancel Install" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/i18n/pt_BR.po b/bin/addons/base/i18n/pt_BR.po index 416c59a7dff..ebb26f6ac33 100644 --- a/bin/addons/base/i18n/pt_BR.po +++ b/bin/addons/base/i18n/pt_BR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 17:58:36+0000\n" -"PO-Revision-Date: 2008-12-22 17:58:36+0000\n" +"POT-Creation-Date: 2009-01-03 02:10:25+0000\n" +"PO-Revision-Date: 2009-01-03 02:10:25+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -25,7 +25,7 @@ msgstr "Ações Agendadas" #. module: base #: view:res.lang:0 msgid "%S - Second as a decimal number [00,61]." -msgstr "" +msgstr "%S - Segundos como um numero decimal[00,61]." #. module: base #: view:res.lang:0 @@ -66,7 +66,7 @@ msgstr "" #. module: base #: view:res.lang:0 msgid "%j - Day of the year as a decimal number [001,366]." -msgstr "" +msgstr "%j - Dia do ano[001,366]." #. module: base #: selection:ir.ui.menu,icon:0 @@ -93,6 +93,11 @@ msgstr "Nome da Função" msgid "terp-account" msgstr "terp-account" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "Categoria de parceiros" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -288,7 +293,7 @@ msgstr "" #. module: base #: view:ir.module.module:0 msgid "Created Views" -msgstr "" +msgstr "Views criadas" #. module: base #: selection:res.request,priority:0 @@ -326,7 +331,7 @@ msgstr "Anualmente" #. module: base #: rml:ir.module.reference:0 msgid "1cm 28cm 20cm 28cm" -msgstr "" +msgstr "1cm 28cm 20cm 28cm" #. module: base #: field:ir.sequence,suffix:0 @@ -347,7 +352,7 @@ msgstr "" #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" -msgstr "" +msgstr "12. %w ==> 5 ( Sexta feira é o sexto dia)" #. module: base #: model:ir.actions.report.xml,name:base.res_partner_address_report @@ -362,7 +367,7 @@ msgstr "Janela de destino" #. module: base #: view:res.lang:0 msgid "%H - Hour (24-hour clock) as a decimal number [00,23]." -msgstr "" +msgstr "%H - Hora (relógio de 24 horas) [00,23]." #. module: base #: wizard_field:res.partner.spam_send,init,from:0 @@ -370,8 +375,8 @@ msgid "Sender's email" msgstr "E-mail do Remetente" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" msgstr "" #. module: base @@ -386,7 +391,11 @@ msgid "Choose between the \"Simplified Interface\" or the extended one.\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 "" +msgstr "Escolha entre a 'Interface simplificada' ou a estendida.\n" +"Se você está testando ou usando o OpenERP pela primeira vez, nós sugerimos que use\n" +"a interface simplificada, por ter menos opções e os campos poder ser facilmente\n" +"entendidos. Você pode alternar para interface estendida mais tarde.\n" +" " #. module: base #: field:ir.actions.todo,start_on:0 @@ -458,9 +467,9 @@ msgid "STOCK_CANCEL" msgstr "STOCK_CANCEL" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" -msgstr "" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" +msgstr "odt" #. module: base #: constraint:ir.ui.view:0 @@ -499,7 +508,7 @@ msgstr "Estado" #: rml:ir.module.reference:0 #: field:maintenance.contract.module,version:0 msgid "Version" -msgstr "" +msgstr "Versão" #. module: base #: selection:ir.module.module,license:0 @@ -539,7 +548,7 @@ msgstr "Assistente: info" #. module: base #: view:res.lang:0 msgid "4. %b, %B ==> Dec, December" -msgstr "" +msgstr "4. %b, %B ==> Dez, Dezembro" #. module: base #: model:ir.model,name:base.model_ir_property @@ -563,7 +572,7 @@ msgstr "Não é possível definir coluna %s. Palavra reservada !" #. module: base #: help:ir.ui.menu,groups_id:0 msgid "If you put groups, the visibility of this menu will be based on these groups. If this field is empty, Open ERP will compute visibility based on the related object's read access." -msgstr "Se voce incluir grupos, a visibilidade deste menu será baseada nestes grupos. Se este campo estiver vazio, o OpenERP na leitura dos acessos dos objetos relacionados." +msgstr "Se voce incluir grupos, a visibilidade deste menu será baseada nestes grupos. Se este campo estiver vazio, o OpenERP pemirtirá a visibilidade baseado no acessos de leitura" #. module: base #: field:workflow.transition,act_to:0 @@ -604,7 +613,7 @@ msgstr "Link" #. module: base #: selection:maintenance.contract,state:0 msgid "Valid" -msgstr "" +msgstr "Válido" #. module: base #: code:addons/base/module/wizard/wizard_export_lang.py:0 @@ -627,7 +636,7 @@ msgstr "" #. module: base #: view:res.lang:0 msgid "%m - Month as a decimal number [01,12]." -msgstr "" +msgstr "%m - Mes com dois decimais [01,12]." #. module: base #: model:ir.model,name:base.model_workflow_triggers @@ -818,7 +827,7 @@ msgstr "ir.server.object.lines" #. module: base #: field:ir.actions.act_window,src_model:0 msgid "Source Object" -msgstr "" +msgstr "Objeto fonte" #. module: base #: field:ir.model.fields,size:0 @@ -861,7 +870,7 @@ msgstr "STOCK_FLOPPY" #. module: base #: model:ir.ui.menu,name:base.menu_custom msgid "Customization" -msgstr "" +msgstr "Customização" #. module: base #: field:res.users,signature:0 @@ -942,15 +951,25 @@ msgstr "Se selecionar um idioma, todos os documentos relacionados a este parceir msgid "STOCK_UNDERLINE" msgstr "STOCK_UNDERLINE" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "Menu :" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "Configurar objeto" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" -msgstr "" +msgstr "Formato da Data" #. module: base #: selection:ir.model.fields,select_level:0 @@ -975,7 +994,7 @@ msgstr "Teste" #. 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 "" +msgstr "Acessar todos os campos relacionados com o objeto corrente usando expressões entre duplo colchete, ex.: [[ object.partner_id.name ]]" #. module: base #: code:addons/base/res/res_user.py:0 @@ -991,7 +1010,7 @@ msgstr "Novos módulos" #. module: base #: view:res.lang:0 msgid "Examples" -msgstr "" +msgstr "Exemplos" #. module: base #: field:ir.actions.report.xml,report_sxw_content:0 @@ -1058,7 +1077,7 @@ msgstr "Sumário" #. module: base #: view:maintenance.contract.wizard:0 msgid "Maintenance contract added !" -msgstr "" +msgstr "Contrato de manutenção adicionado !" #. module: base #: selection:ir.ui.menu,icon:0 @@ -1073,7 +1092,7 @@ msgstr "workflow.instance" #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" -msgstr "" +msgstr "10. %S ==> 20" #. module: base #: field:res.partner.bank,state:0 @@ -1090,7 +1109,7 @@ msgstr "Método get não definido !" #. module: base #: view:res.lang:0 msgid "2. %a ,%A ==> Fri, Friday" -msgstr "" +msgstr "2. %a ,%A ==> Sex, Sexta" #. module: base #: code:osv/orm.py:0 @@ -1128,7 +1147,7 @@ msgstr "workflow.transition" #. module: base #: view:res.lang:0 msgid "%a - Abbreviated weekday name." -msgstr "" +msgstr "%a - Nome da semana abreviado." #. module: base #: selection:ir.ui.menu,icon:0 @@ -1237,7 +1256,7 @@ msgstr "Idioma" #: model:ir.ui.menu,name:base.menu_ir_action_wizard #: view:ir.actions.wizard:0 msgid "Wizards" -msgstr "" +msgstr "Wizards" #. module: base #: field:ir.ui.menu,parent_id:0 @@ -1254,7 +1273,7 @@ msgstr "Campos customizados precisam ter nomes que começam com 'x_'!" #. module: base #: model:ir.ui.menu,name:base.next_id_4 msgid "Low Level Objects" -msgstr "" +msgstr "Objetos de baixo nível" #. module: base #: code:osv/orm.py:0 @@ -1288,7 +1307,7 @@ msgstr "Exportação" #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" -msgstr "" +msgstr "acc_number" #. module: base #: view:ir.model:0 @@ -1298,7 +1317,7 @@ msgstr "Descrição de Modelo" #. module: base #: selection:maintenance.contract,state:0 msgid "Unvalid" -msgstr "" +msgstr "Inválido" #. module: base #: wizard_view:res.partner.sms_send,init:0 @@ -1318,7 +1337,7 @@ msgstr "Campos de Relatório" #. module: base #: model:ir.ui.menu,name:base.next_id_2 msgid "User Interface" -msgstr "" +msgstr "Interface de usuário" #. module: base #: model:ir.model,name:base.model_ir_values @@ -1464,7 +1483,7 @@ msgstr "Carregado arquivo de idioma." #: selection:ir.translation,type:0 #: field:wizard.ir.model.menu.create.line,view_id:0 msgid "View" -msgstr "" +msgstr "View" #. module: base #: wizard_field:module.upgrade,next,module_info:0 @@ -1541,7 +1560,7 @@ msgstr "Seqüências" #: code:osv/orm.py:0 #, python-format msgid "Unknown position in inherited view %s !" -msgstr "" +msgstr "Posição desconhecida na view herdada %s !" #. module: base #: view:res.users:0 @@ -1594,7 +1613,7 @@ msgstr "Descrição de campos" #. module: base #: view:res.lang:0 msgid "%b - Abbreviated month name." -msgstr "" +msgstr "%b - Nome do mes abreviado." #. module: base #: selection:ir.ui.menu,icon:0 @@ -1663,7 +1682,7 @@ msgstr "Direção" #. module: base #: selection:maintenance.contract,kind:0 msgid "Full" -msgstr "" +msgstr "Completo" #. module: base #: model:ir.model,name:base.model_wizard_module_update_translations @@ -1673,7 +1692,7 @@ msgstr "wizard.module.update_translations" #. module: base #: help:ir.actions.server,state:0 msgid "Type of the Action that is to be execute" -msgstr "" +msgstr "Tipo de ação que está para ser executada" #. module: base #: model:ir.actions.act_window,name:base.action_ui_view @@ -1686,7 +1705,7 @@ msgstr "" #: view:ir.ui.view:0 #: view:ir.actions.act_window:0 msgid "Views" -msgstr "" +msgstr "Views" #. module: base #: wizard_button:res.partner.spam_send,init,send:0 @@ -1744,7 +1763,7 @@ msgstr "STOCK_GOTO_FIRST" #. module: base #: view:res.lang:0 msgid "%Y - Year with century as a decimal number." -msgstr "" +msgstr "%Y - Ano com 4 posições." #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form @@ -1760,7 +1779,7 @@ msgstr "" #. module: base #: view:res.lang:0 msgid "%M - Minute as a decimal number [00,59]." -msgstr "" +msgstr "%M - Minuto com dois decimais [00,59]." #. module: base #: selection:ir.report.custom.fields,fc0_op:0 @@ -1794,7 +1813,7 @@ msgstr "URL" #. module: base #: help:ir.actions.server,message:0 msgid "Specify the Message, you can use the fields from the object. like `Dear [[ object.partner_id.name ]]`" -msgstr "" +msgstr "Especifique a mensagem, você poderá usar os campos do objeto. como `Caro [[ object.partner_id.name ]]`" #. module: base #: field:ir.report.custom,print_format:0 @@ -1838,11 +1857,6 @@ msgstr "terp-stock" msgid "Get file" msgstr "Pegar arquivo" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1865,6 +1879,12 @@ msgstr "0=Muito urgente\n" msgid "ir.model.data" msgstr "ir.model.data" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1874,7 +1894,7 @@ msgstr "Direitos de acesso" #. 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 "Este campo não é usado, ele somente te ajuda para selecionar a ação correta." #. module: base #: help:ir.actions.report.xml,report_rml:0 @@ -1905,12 +1925,12 @@ msgstr "child_of" #. module: base #: model:ir.model,name:base.model_maintenance_contract_module msgid "maintenance contract modules" -msgstr "" +msgstr "Módulo de contratos de manutenção" #. module: base #: model:ir.ui.menu,name:base.menu_workflow_root msgid "Workflow Definitions" -msgstr "" +msgstr "Definição de workflow" #. module: base #: code:addons/base/ir/ir_model.py:0 @@ -1964,17 +1984,16 @@ msgstr "Global" msgid "From" msgstr "De" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "Este método não existe mais" - #. module: base #: selection:res.partner.event,partner_type:0 msgid "Retailer" msgstr "" +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2000,11 +2019,6 @@ msgstr "arquivo TGZ" msgid "Set NULL" msgstr "" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2037,6 +2051,11 @@ msgstr "Criado manualmente" msgid "Defined Reports" msgstr "Relatórios definidos" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" @@ -2132,6 +2151,11 @@ msgstr "Sem senha !" msgid "RML Header" msgstr "Cabeçalho RML" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "Definir" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2204,7 +2228,7 @@ msgstr "STOCK_UNINDENT" #. module: base #: selection:ir.actions.todo,start_on:0 msgid "At Once" -msgstr "" +msgstr "só uma vez" #. module: base #: model:ir.ui.menu,name:base.menu_security @@ -2215,7 +2239,7 @@ msgstr "Segurança" #: code:addons/base/ir/ir_report_custom.py:0 #, python-format msgid "Using a relation field which uses an unknown object" -msgstr "" +msgstr "Usando uma relação que usa um objeto desconhecido" #. module: base #: selection:ir.actions.server,state:0 @@ -2242,7 +2266,7 @@ msgstr "STOCK_FIND" #. module: base #: selection:maintenance.contract,kind:0 msgid "Partial" -msgstr "" +msgstr "Parcial" #. module: base #: view:ir.module.repository:0 @@ -2266,14 +2290,14 @@ msgid "Recursion error in modules dependencies !" msgstr "Erro de recurção nas dependências dos módulos !" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" -msgstr "" +#: view:ir.rule:0 +msgid "Manual domain setup" +msgstr "Configuração manual do domínio" #. module: base #: field:ir.actions.report.xml,report_xsl:0 msgid "XSL path" -msgstr "" +msgstr "XSL path" #. module: base #: field:res.groups,model_access:0 @@ -2323,7 +2347,7 @@ msgstr "" #. module: base #: view:res.lang:0 msgid "5. %y, %Y ==> 08, 2008" -msgstr "" +msgstr "5. %y, %Y ==> 08, 2008" #. module: base #: field:ir.values,res_id:0 @@ -2379,7 +2403,7 @@ msgstr "Próximo numero" #. module: base #: view:ir.sequence:0 msgid "Seconde: %(sec)s" -msgstr "Segundo" +msgstr "Segundo: %(sec)s" #. module: base #: wizard_view:module.module.update,init:0 @@ -2401,7 +2425,7 @@ msgstr "País" #: field:res.currency,rate_ids:0 #: view:res.currency:0 msgid "Rates" -msgstr "" +msgstr "Preços" #. module: base #: view:res.lang:0 @@ -2423,7 +2447,7 @@ msgstr "AccessError" #. module: base #: view:res.lang:0 msgid "======================================================" -msgstr "" +msgstr "======================================================" #. module: base #: view:res.lang:0 @@ -2433,7 +2457,7 @@ msgstr "" #. module: base #: selection:maintenance.contract.wizard,state:0 msgid "Validated" -msgstr "" +msgstr "Validado" #. module: base #: selection:ir.report.custom,type:0 @@ -2488,6 +2512,11 @@ msgstr "STOCK_JUSTIFY_FILL" msgid "draft" msgstr "" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "Probabilidade (0.50)" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2645,15 +2674,9 @@ msgid "(year)=" msgstr "(Ano)=" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" -msgstr "Código" +#: rml:ir.module.reference:0 +msgid "Dependencies :" +msgstr "" #. module: base #: view:ir.module.module:0 @@ -2671,10 +2694,10 @@ msgid "Creator" msgstr "Criador" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" -msgstr "O método get_memory não está implementado !" +msgid "You cannot perform this operation." +msgstr "" #. module: base #: field:ir.actions.server,code:0 @@ -2726,7 +2749,6 @@ msgstr "Relação" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2868,9 +2890,9 @@ msgid "Childs Field" msgstr "Campos filhos" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Nome da Regra" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "" #. module: base #: code:addons/base/res/res_user.py:0 @@ -2881,7 +2903,7 @@ msgstr "Não posso remover o usuário root!" #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" -msgstr "" +msgstr "Versão instalada" #. module: base #: view:res.lang:0 @@ -2932,6 +2954,11 @@ msgstr "Exportar um arquivo de tradução" msgid "Report Xml" msgstr "Relatório XML" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -3000,6 +3027,11 @@ msgstr "Banco" msgid "STOCK_HARDDISK" msgstr "STOCK_HARDDISK" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3155,6 +3187,11 @@ msgstr "Alto" msgid "Instances" msgstr "Instâncias" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Nome da Regra" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3230,15 +3267,6 @@ msgstr "Voce pode importar um arquivo .CSV com codificação UTF-8. Por favor ve msgid "Group by" msgstr "Agrupar por" -#. 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 "Categorias de parceiros" - #. module: base #: field:ir.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3302,7 +3330,7 @@ msgstr "STOCK_STOP" #: 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 "" +msgstr "\"%s\" contem muitos pontos. Identificacors do XML não podem conter pontos! Eles são usados para referenciar outros módulos de dados como em module.reference_id" #. module: base #: field:res.partner.bank,acc_number:0 @@ -3338,7 +3366,7 @@ msgstr "Atualizar" #. module: base #: view:ir.sequence:0 msgid "Day: %(day)s" -msgstr "Dia: %(dia)s" +msgstr "Dia: %(day)s" #. module: base #: code:addons/base/ir/ir_model.py:0 @@ -3449,9 +3477,15 @@ msgid "Update Translations" msgstr "Atualizar traduções" #. module: base -#: view:res.config.view:0 -msgid "Set" -msgstr "Definir" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" +msgstr "Código" #. module: base #: field:ir.report.custom.fields,width:0 @@ -3529,6 +3563,12 @@ msgstr "" msgid "Channels" msgstr "Canais" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "O método get_memory não está implementado !" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3563,9 +3603,9 @@ msgid "Schedule for Installation" msgstr "Agendar para instalação" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" -msgstr "" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" +msgstr "Ano com 2 dígitos: %(y)s" #. module: base #: selection:ir.model.fields,select_level:0 @@ -3788,11 +3828,6 @@ msgstr "Esta operação pode demorar alguns minutos." msgid "STOCK_COLOR_PICKER" msgstr "STOCK_COLOR_PICKER" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "Configuração manual do domínio" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3811,9 +3846,10 @@ msgid "Kind" msgstr "Tipo" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" -msgstr "Contas Bancarias" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" +msgstr "Este método não existe mais" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 @@ -3830,9 +3866,9 @@ msgid "Tree" msgstr "Visão em árvore" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" -msgstr "" +#: view:res.partner.bank:0 +msgid "Bank accounts" +msgstr "Contas Bancarias" #. module: base #: selection:ir.actions.todo,start_on:0 @@ -4064,11 +4100,6 @@ msgstr "Não posso gerar o próximo id porque alguns parceiros tem um id alfabé msgid "Unsubscribed" msgstr "Remover inscrição" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "Ano com 2 dígitos: %(y)s" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4160,7 +4191,7 @@ msgstr "Telefone" #. module: base #: view:ir.sequence:0 msgid "Day of the year: %(doy)s" -msgstr "Dias do ano: %(dia)s" +msgstr "Dias do ano: %(doy)s" #. module: base #: help:ir.actions.wizard,multi:0 @@ -4453,11 +4484,6 @@ msgstr "Exportação concluída" msgid "Arguments" msgstr "Argumentos" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4610,9 +4636,9 @@ msgid "Not Installable" msgstr "Não instalável" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "Probabilidade (0.50)" +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "" #. module: base #: field:res.partner.address,mobile:0 @@ -5087,6 +5113,11 @@ msgstr "Limite" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "Endereço do parceiro" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5138,7 +5169,7 @@ msgstr "Importar / Exportar" #. module: base #: view:ir.sequence:0 msgid "Week of the year: %(woy)s" -msgstr "" +msgstr "Semana do ano: %(woy)s" #. module: base #: model:ir.actions.act_window,name:base.open_module_tree_install @@ -5169,9 +5200,9 @@ msgid "Operator" msgstr "Operador" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" -msgstr "Endereço do parceiro" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" +msgstr "" #. module: base #: view:wizard.module.lang.export:0 @@ -5253,7 +5284,7 @@ msgstr "Configurar relatório" #. module: base #: view:ir.sequence:0 msgid "Day of the week (0:Monday): %(weekday)s" -msgstr "" +msgstr "Dia da Semana(0:Domingo): %(weekday)s" #. module: base #: selection:ir.actions.server,state:0 @@ -5310,8 +5341,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5320,9 +5351,9 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" -msgstr "Categoria de parceiros" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" +msgstr "" #. module: base #: selection:ir.ui.menu,icon:0 @@ -5384,7 +5415,7 @@ msgstr "Responder" #. module: base #: view:ir.sequence:0 msgid "Year with century: %(year)s" -msgstr "" +msgstr "Ano com 4 digitos: %(year)s" #. module: base #: view:maintenance.contract.wizard:0 @@ -5617,7 +5648,7 @@ msgstr "Gráfico" #. module: base #: field:ir.module.module,installed_version:0 msgid "Latest version" -msgstr "" +msgstr "Última verão" #. module: base #: model:ir.model,name:base.model_ir_actions_server @@ -5857,6 +5888,11 @@ msgstr "" msgid "Trigger Object" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5879,9 +5915,13 @@ msgid "Error" msgstr "Erro" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" -msgstr "" +#: 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 "Categorias de parceiros" #. module: base #: model:ir.model,name:base.model_workflow_activity @@ -6314,8 +6354,8 @@ msgid "Modules to be installed, upgraded or removed" msgstr "Módulos a serem instalados, atualizados ou removidos" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" msgstr "" #. module: base @@ -6393,11 +6433,6 @@ msgstr "Descrição geral" msgid "Cancel Install" msgstr "Cancelar Instalação" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/i18n/pt_PT.po b/bin/addons/base/i18n/pt_PT.po index 9d7653238c6..8c0879cccca 100644 --- a/bin/addons/base/i18n/pt_PT.po +++ b/bin/addons/base/i18n/pt_PT.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 17:59:16+0000\n" -"PO-Revision-Date: 2008-12-22 17:59:16+0000\n" +"POT-Creation-Date: 2009-01-03 02:11:07+0000\n" +"PO-Revision-Date: 2009-01-03 02:11:07+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "Nome de função" msgid "terp-account" msgstr "" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -370,8 +375,8 @@ msgid "Sender's email" msgstr "E-mail do remetente" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" msgstr "" #. module: base @@ -458,8 +463,8 @@ msgid "STOCK_CANCEL" msgstr "" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" msgstr "" #. module: base @@ -942,11 +947,21 @@ msgstr "Se a linguagem estiver carregada no sistema, todos os documentos relacio msgid "STOCK_UNDERLINE" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" @@ -1838,11 +1853,6 @@ msgstr "" msgid "Get file" msgstr "Carregar ficheiro" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1865,6 +1875,12 @@ msgstr "0=Muito urgente\n" msgid "ir.model.data" msgstr "" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1964,17 +1980,16 @@ msgstr "Global" msgid "From" msgstr "De" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "Este método não existe mais" - #. module: base #: selection:res.partner.event,partner_type:0 msgid "Retailer" msgstr "Revendedor" +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2000,11 +2015,6 @@ msgstr "Arquivo TGZ" msgid "Set NULL" msgstr "" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2037,6 +2047,11 @@ msgstr "Criado manualmente" msgid "Defined Reports" msgstr "" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" @@ -2132,6 +2147,11 @@ msgstr "Palavrapasse vazia !" msgid "RML Header" msgstr "Cabeçalho RML" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "Definir" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2266,9 +2286,9 @@ msgid "Recursion error in modules dependencies !" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" -msgstr "" +#: view:ir.rule:0 +msgid "Manual domain setup" +msgstr "Configuração manual do domínio" #. module: base #: field:ir.actions.report.xml,report_xsl:0 @@ -2488,6 +2508,11 @@ msgstr "" msgid "draft" msgstr "Rascunho" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "Probabilidade (0.50)" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2645,15 +2670,9 @@ msgid "(year)=" msgstr "(ano)=" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" -msgstr "Código" +#: rml:ir.module.reference:0 +msgid "Dependencies :" +msgstr "" #. module: base #: view:ir.module.module:0 @@ -2671,10 +2690,10 @@ msgid "Creator" msgstr "" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" -msgstr "Método 'get_memory' não implementado" +msgid "You cannot perform this operation." +msgstr "" #. module: base #: field:ir.actions.server,code:0 @@ -2726,7 +2745,6 @@ msgstr "Relação" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2868,8 +2886,8 @@ msgid "Childs Field" msgstr "Campo filhos" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" msgstr "" #. module: base @@ -2881,7 +2899,7 @@ msgstr "Não se pode remover utilizador root!" #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" -msgstr "" +msgstr "Versão instalado" #. module: base #: view:res.lang:0 @@ -2932,6 +2950,11 @@ msgstr "Exportar um ficheiro de traducão" msgid "Report Xml" msgstr "XML de Relatório" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -3000,6 +3023,11 @@ msgstr "Banco" msgid "STOCK_HARDDISK" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3155,6 +3183,11 @@ msgstr "Alta" msgid "Instances" msgstr "Instâncias" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3230,15 +3263,6 @@ msgstr "" msgid "Group by" msgstr "Agrupar por" -#. 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 "Categoria de terceiros" - #. module: base #: field:ir.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3449,9 +3473,15 @@ msgid "Update Translations" msgstr "Actualizar traduções" #. module: base -#: view:res.config.view:0 -msgid "Set" -msgstr "Definir" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" +msgstr "Código" #. module: base #: field:ir.report.custom.fields,width:0 @@ -3529,6 +3559,12 @@ msgstr "" msgid "Channels" msgstr "Canais" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "Método 'get_memory' não implementado" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3563,8 +3599,8 @@ msgid "Schedule for Installation" msgstr "Agendar para instalação" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" msgstr "" #. module: base @@ -3788,11 +3824,6 @@ msgstr "Tenha em conta que esta instalacão pode demorar alguns minutos." msgid "STOCK_COLOR_PICKER" msgstr "" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "Configuração manual do domínio" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3811,9 +3842,10 @@ msgid "Kind" msgstr "" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" -msgstr "Conta bancaria" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" +msgstr "Este método não existe mais" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 @@ -3830,9 +3862,9 @@ msgid "Tree" msgstr "Árvore" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" -msgstr "" +#: view:res.partner.bank:0 +msgid "Bank accounts" +msgstr "Conta bancaria" #. module: base #: selection:ir.actions.todo,start_on:0 @@ -4064,11 +4096,6 @@ msgstr "Não foi possível criar o próximo id porque alguns terceiros possuem u msgid "Unsubscribed" msgstr "Sem subscrição" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4453,11 +4480,6 @@ msgstr "Exportação feita" msgid "Arguments" msgstr "Argumentos" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4610,9 +4632,9 @@ msgid "Not Installable" msgstr "não instalável" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "Probabilidade (0.50)" +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "" #. module: base #: field:res.partner.address,mobile:0 @@ -5087,6 +5109,11 @@ msgstr "Limite" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "Imprimir endereço" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5169,9 +5196,9 @@ msgid "Operator" msgstr "Operador" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" -msgstr "Imprimir endereço" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" +msgstr "" #. module: base #: view:wizard.module.lang.export:0 @@ -5310,8 +5337,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5320,8 +5347,8 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" msgstr "" #. module: base @@ -5617,7 +5644,7 @@ msgstr "Gráfico" #. module: base #: field:ir.module.module,installed_version:0 msgid "Latest version" -msgstr "" +msgstr "Ultima versão" #. module: base #: model:ir.model,name:base.model_ir_actions_server @@ -5857,6 +5884,11 @@ msgstr "Menu de acesso" msgid "Trigger Object" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "Mês: %(month)s" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5879,9 +5911,13 @@ msgid "Error" msgstr "Erro" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" -msgstr "" +#: 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 "Categoria de terceiros" #. module: base #: model:ir.model,name:base.model_workflow_activity @@ -6314,9 +6350,9 @@ msgid "Modules to be installed, upgraded or removed" msgstr "Módulos a ser instalado, actualizado ou removido" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" -msgstr "Mês: %(month)s" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_partner_address_form @@ -6393,11 +6429,6 @@ msgstr "Descrição geral" msgid "Cancel Install" msgstr "Cancelar instalação" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/i18n/ro_RO.po b/bin/addons/base/i18n/ro_RO.po index a8f4d58e6bf..2487b3e47a8 100644 --- a/bin/addons/base/i18n/ro_RO.po +++ b/bin/addons/base/i18n/ro_RO.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 17:59:57+0000\n" -"PO-Revision-Date: 2008-12-22 17:59:57+0000\n" +"POT-Creation-Date: 2009-01-03 02:11:49+0000\n" +"PO-Revision-Date: 2009-01-03 02:11:49+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "" msgid "terp-account" msgstr "" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -370,8 +375,8 @@ msgid "Sender's email" msgstr "" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" msgstr "" #. module: base @@ -458,8 +463,8 @@ msgid "STOCK_CANCEL" msgstr "" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" msgstr "" #. module: base @@ -942,11 +947,21 @@ msgstr "" msgid "STOCK_UNDERLINE" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" @@ -1837,11 +1852,6 @@ msgstr "" msgid "Get file" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1863,6 +1873,12 @@ msgstr "" msgid "ir.model.data" msgstr "" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1963,14 +1979,13 @@ msgid "From" msgstr "Cerere de " #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" +#: selection:res.partner.event,partner_type:0 +msgid "Retailer" msgstr "" #. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Retailer" +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" msgstr "" #. module: base @@ -1998,11 +2013,6 @@ msgstr "" msgid "Set NULL" msgstr "" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2035,6 +2045,11 @@ msgstr "" msgid "Defined Reports" msgstr "" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" @@ -2130,6 +2145,11 @@ msgstr "" msgid "RML Header" msgstr "" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2264,8 +2284,8 @@ msgid "Recursion error in modules dependencies !" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" +#: view:ir.rule:0 +msgid "Manual domain setup" msgstr "" #. module: base @@ -2486,6 +2506,11 @@ msgstr "" msgid "draft" msgstr "" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "Probabilite" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2643,14 +2668,8 @@ msgid "(year)=" msgstr "" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" +#: rml:ir.module.reference:0 +msgid "Dependencies :" msgstr "" #. module: base @@ -2669,9 +2688,9 @@ msgid "Creator" msgstr "" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" +msgid "You cannot perform this operation." msgstr "" #. module: base @@ -2724,7 +2743,6 @@ msgstr "" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2866,9 +2884,9 @@ msgid "Childs Field" msgstr "Cimp copii" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Nume" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "" #. module: base #: code:addons/base/res/res_user.py:0 @@ -2930,6 +2948,11 @@ msgstr "" msgid "Report Xml" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -2998,6 +3021,11 @@ msgstr "" msgid "STOCK_HARDDISK" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3153,6 +3181,11 @@ msgstr "" msgid "Instances" msgstr "" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Nume" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3228,15 +3261,6 @@ msgstr "" msgid "Group by" 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.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3444,8 +3468,14 @@ msgid "Update Translations" msgstr "" #. module: base -#: view:res.config.view:0 -msgid "Set" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" msgstr "" #. module: base @@ -3524,6 +3554,12 @@ msgstr "" msgid "Channels" msgstr "" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3558,8 +3594,8 @@ msgid "Schedule for Installation" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" msgstr "" #. module: base @@ -3783,11 +3819,6 @@ msgstr "" msgid "STOCK_COLOR_PICKER" msgstr "" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3806,8 +3837,9 @@ msgid "Kind" msgstr "Gen" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" msgstr "" #. module: base @@ -3825,8 +3857,8 @@ msgid "Tree" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" +#: view:res.partner.bank:0 +msgid "Bank accounts" msgstr "" #. module: base @@ -4059,11 +4091,6 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4448,11 +4475,6 @@ msgstr "" msgid "Arguments" msgstr "Argumente" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4605,9 +4627,9 @@ msgid "Not Installable" msgstr "" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "Probabilite" +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "" #. module: base #: field:res.partner.address,mobile:0 @@ -5082,6 +5104,11 @@ msgstr "" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5164,8 +5191,8 @@ msgid "Operator" msgstr "" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" msgstr "" #. module: base @@ -5305,8 +5332,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5315,8 +5342,8 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" msgstr "" #. module: base @@ -5852,6 +5879,11 @@ msgstr "" msgid "Trigger Object" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5874,8 +5906,12 @@ msgid "Error" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" +#: 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 @@ -6309,8 +6345,8 @@ msgid "Modules to be installed, upgraded or removed" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" msgstr "" #. module: base @@ -6387,11 +6423,6 @@ msgstr "Descriere generala" msgid "Cancel Install" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/i18n/ru_RU.po b/bin/addons/base/i18n/ru_RU.po index 544cc3eaa83..8d207e53739 100644 --- a/bin/addons/base/i18n/ru_RU.po +++ b/bin/addons/base/i18n/ru_RU.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:00:38+0000\n" -"PO-Revision-Date: 2008-12-22 18:00:38+0000\n" +"POT-Creation-Date: 2009-01-03 02:12:32+0000\n" +"PO-Revision-Date: 2009-01-03 02:12:32+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "Название функции" msgid "terp-account" msgstr "terp-account" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "Категория партнера" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -370,9 +375,9 @@ msgid "Sender's email" msgstr "Эл. почта отправителя" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" -msgstr "Табулированный" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" +msgstr "" #. module: base #: help:ir.actions.server,email:0 @@ -458,9 +463,9 @@ msgid "STOCK_CANCEL" msgstr "STOCK_CANCEL" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" -msgstr "Потенциальный контакт" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" +msgstr "" #. module: base #: constraint:ir.ui.view:0 @@ -942,11 +947,21 @@ msgstr "Если выбранный язык загружен в систему, msgid "STOCK_UNDERLINE" msgstr "STOCK_UNDERLINE" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "Пользовательский объект" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" @@ -1838,11 +1853,6 @@ msgstr "terp-stock" msgid "Get file" msgstr "Получить файл" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1865,6 +1875,12 @@ msgstr "0=Очень срочно\n" msgid "ir.model.data" msgstr "" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1964,17 +1980,16 @@ msgstr "Глобальный" msgid "From" msgstr "От" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "Данный метод более не существует" - #. module: base #: selection:res.partner.event,partner_type:0 msgid "Retailer" msgstr "Посредник" +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2000,11 +2015,6 @@ msgstr "Архив .tgz" msgid "Set NULL" msgstr "Устоновить в BULL" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2037,6 +2047,11 @@ msgstr "Создано вручную" msgid "Defined Reports" msgstr "" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "Табулированный" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" @@ -2132,6 +2147,11 @@ msgstr "Пустой пароль!" msgid "RML Header" msgstr "Заголовок RML" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "Установить" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2266,9 +2286,9 @@ msgid "Recursion error in modules dependencies !" msgstr "Ошибка рекурсии в зависимостях модулей!" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" -msgstr "" +#: view:ir.rule:0 +msgid "Manual domain setup" +msgstr "Настройка домена вручную" #. module: base #: field:ir.actions.report.xml,report_xsl:0 @@ -2488,6 +2508,11 @@ msgstr "STOCK_JUSTIFY_FILL" msgid "draft" msgstr "черновик" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "Вероятность (0.50)" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2645,15 +2670,9 @@ msgid "(year)=" msgstr "(год)=" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" -msgstr "Код" +#: rml:ir.module.reference:0 +msgid "Dependencies :" +msgstr "" #. module: base #: view:ir.module.module:0 @@ -2671,10 +2690,10 @@ msgid "Creator" msgstr "" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" -msgstr "Метод 'get_memory' не реализован !" +msgid "You cannot perform this operation." +msgstr "" #. module: base #: field:ir.actions.server,code:0 @@ -2726,7 +2745,6 @@ msgstr "Отношение" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2868,9 +2886,9 @@ msgid "Childs Field" msgstr "" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Название роли" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "" #. module: base #: code:addons/base/res/res_user.py:0 @@ -2881,7 +2899,7 @@ msgstr "Невозможно удалить пользователя root!" #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" -msgstr "" +msgstr "Установленная версия" #. module: base #: view:res.lang:0 @@ -2932,6 +2950,11 @@ msgstr "Экспорт файла перевода" msgid "Report Xml" msgstr "Отчет Xml" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -3000,6 +3023,11 @@ msgstr "Банк" msgid "STOCK_HARDDISK" msgstr "STOCK_HARDDISK" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3155,6 +3183,11 @@ msgstr "Высокий" msgid "Instances" msgstr "Копии" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Название роли" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3230,15 +3263,6 @@ msgstr "" msgid "Group by" 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.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3449,9 +3473,15 @@ msgid "Update Translations" msgstr "Обновить перевод" #. module: base -#: view:res.config.view:0 -msgid "Set" -msgstr "Установить" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" +msgstr "Код" #. module: base #: field:ir.report.custom.fields,width:0 @@ -3529,6 +3559,12 @@ msgstr "" msgid "Channels" msgstr "Каналы" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "Метод 'get_memory' не реализован !" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3563,8 +3599,8 @@ msgid "Schedule for Installation" msgstr "Расписание установки" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" msgstr "" #. module: base @@ -3788,11 +3824,6 @@ msgstr "Учтите, что данное действие может занят msgid "STOCK_COLOR_PICKER" msgstr "STOCK_COLOR_PICKER" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "Настройка домена вручную" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3811,9 +3842,10 @@ msgid "Kind" msgstr "Тип" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" -msgstr "Банковские счета" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" +msgstr "Данный метод более не существует" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 @@ -3830,9 +3862,9 @@ msgid "Tree" msgstr "В виде дерева" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" -msgstr "" +#: view:res.partner.bank:0 +msgid "Bank accounts" +msgstr "Банковские счета" #. module: base #: selection:ir.actions.todo,start_on:0 @@ -4064,11 +4096,6 @@ msgstr "Невозможно сгенерировать следующий ид msgid "Unsubscribed" msgstr "Отказ от подписки" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4453,11 +4480,6 @@ msgstr "Экспорт завершен" msgid "Arguments" msgstr "Аргументы" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4610,9 +4632,9 @@ msgid "Not Installable" msgstr "Не устанавливается" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "Вероятность (0.50)" +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "" #. module: base #: field:res.partner.address,mobile:0 @@ -5087,6 +5109,11 @@ msgstr "Лимит" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "Адрес партнера" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5169,9 +5196,9 @@ msgid "Operator" msgstr "Оператор" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" -msgstr "Адрес партнера" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" +msgstr "" #. module: base #: view:wizard.module.lang.export:0 @@ -5310,8 +5337,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5320,9 +5347,9 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" -msgstr "Категория партнера" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" +msgstr "Потенциальный контакт" #. module: base #: selection:ir.ui.menu,icon:0 @@ -5617,7 +5644,7 @@ msgstr "График" #. 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 @@ -5857,6 +5884,11 @@ msgstr "Меню доступа" msgid "Trigger Object" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "Месяц: %(месяц)ы" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5879,9 +5911,13 @@ msgid "Error" msgstr "Ошибка" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" -msgstr "" +#: model:ir.actions.act_window,name:base.action_partner_by_category +#: model:ir.actions.act_window,name:base.action_partner_category_form +#: model:ir.model,name:base.model_res_partner_category +#: model:ir.ui.menu,name:base.menu_partner_category_form +#: view:res.partner.category:0 +msgid "Partner Categories" +msgstr "Категории партнеров" #. module: base #: model:ir.model,name:base.model_workflow_activity @@ -6314,9 +6350,9 @@ msgid "Modules to be installed, upgraded or removed" msgstr "Модули для установки, обновления, или удаления" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" -msgstr "Месяц: %(месяц)ы" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_partner_address_form @@ -6392,11 +6428,6 @@ msgstr "Общее описание" msgid "Cancel Install" msgstr "Отмена установки" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/i18n/sl_SL.po b/bin/addons/base/i18n/sl_SL.po index c80102ea4dc..9334f4d0993 100644 --- a/bin/addons/base/i18n/sl_SL.po +++ b/bin/addons/base/i18n/sl_SL.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:01:20+0000\n" -"PO-Revision-Date: 2008-12-22 18:01:20+0000\n" +"POT-Creation-Date: 2009-01-03 02:13:15+0000\n" +"PO-Revision-Date: 2009-01-03 02:13:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "Naziv funkcije" msgid "terp-account" msgstr "terp-account" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "Kategorija partnerjev" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -370,9 +375,9 @@ msgid "Sender's email" msgstr "E-pošta pošiljatelja" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" -msgstr "Tabelarično" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" +msgstr "" #. module: base #: help:ir.actions.server,email:0 @@ -458,9 +463,9 @@ msgid "STOCK_CANCEL" msgstr "STOCK_CANCEL" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" -msgstr "Stik možnega kupca" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" +msgstr "" #. module: base #: constraint:ir.ui.view:0 @@ -942,11 +947,21 @@ msgstr "Če je izbrani jezik naložen v sistem, bodo vsi dokumenti, ki so povezn msgid "STOCK_UNDERLINE" msgstr "STOCK_UNDERLINE" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "Objekt po meri" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" @@ -1838,11 +1853,6 @@ msgstr "terp-stock" msgid "Get file" msgstr "Prevzemi datoteko" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1865,6 +1875,12 @@ msgstr "0=Zelo nujno\n" msgid "ir.model.data" msgstr "ir.model.data" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1964,17 +1980,16 @@ msgstr "Globalno" msgid "From" msgstr "Od" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "Ta metoda ne obstaja več" - #. module: base #: selection:res.partner.event,partner_type:0 msgid "Retailer" msgstr "Trgovec" +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2000,11 +2015,6 @@ msgstr "Arhiv TGZ" msgid "Set NULL" msgstr "Nastavi na NULL" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2037,6 +2047,11 @@ msgstr "Ročno ustvarjeno" msgid "Defined Reports" msgstr "" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "Tabelarično" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" @@ -2132,6 +2147,11 @@ msgstr "Geslo je prazno!" msgid "RML Header" msgstr "RML glava" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2266,8 +2286,8 @@ msgid "Recursion error in modules dependencies !" msgstr "Napaka rekurzije v odvisnostih modulih." #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" +#: view:ir.rule:0 +msgid "Manual domain setup" msgstr "" #. module: base @@ -2488,6 +2508,11 @@ msgstr "STOCK_JUSTIFY_FILL" msgid "draft" msgstr "osnutek" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "Verjetnost (0.50)" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2645,15 +2670,9 @@ msgid "(year)=" msgstr "" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" -msgstr "Oznaka" +#: rml:ir.module.reference:0 +msgid "Dependencies :" +msgstr "" #. module: base #: view:ir.module.module:0 @@ -2671,10 +2690,10 @@ msgid "Creator" msgstr "" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" -msgstr "Metoda 'get_memory' ni implementirana." +msgid "You cannot perform this operation." +msgstr "" #. module: base #: field:ir.actions.server,code:0 @@ -2726,7 +2745,6 @@ msgstr "Relacija" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2868,9 +2886,9 @@ msgid "Childs Field" msgstr "Podrejena polja" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Naziv vloge" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "" #. module: base #: code:addons/base/res/res_user.py:0 @@ -2881,7 +2899,7 @@ msgstr "Ne morete odstaniti uporabnika 'root'." #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" -msgstr "" +msgstr "Nameščena različica" #. module: base #: view:res.lang:0 @@ -2932,6 +2950,11 @@ msgstr "Izvozi datoteko prevoda" msgid "Report Xml" msgstr "XML poročilo" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -3000,6 +3023,11 @@ msgstr "Banka" msgid "STOCK_HARDDISK" msgstr "STOCK_HARDDISK" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3155,6 +3183,11 @@ msgstr "Visoka" msgid "Instances" msgstr "" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Naziv vloge" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3230,15 +3263,6 @@ msgstr "" msgid "Group by" msgstr "Združeno po" -#. 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 "Partnerjeve kategorije" - #. module: base #: field:ir.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3449,9 +3473,15 @@ msgid "Update Translations" msgstr "Osveži prevode" #. module: base -#: view:res.config.view:0 -msgid "Set" -msgstr "" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" +msgstr "Oznaka" #. module: base #: field:ir.report.custom.fields,width:0 @@ -3529,6 +3559,12 @@ msgstr "" msgid "Channels" msgstr "Kanali" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "Metoda 'get_memory' ni implementirana." + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3563,8 +3599,8 @@ msgid "Schedule for Installation" msgstr "Daj v seznam za namestitev" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" msgstr "" #. module: base @@ -3788,11 +3824,6 @@ msgstr "Vedite, da lahko ta operacija vzame nekaj minut." msgid "STOCK_COLOR_PICKER" msgstr "STOCK_COLOR_PICKER" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3811,9 +3842,10 @@ msgid "Kind" msgstr "Vrsta" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" -msgstr "Bančni računi" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" +msgstr "Ta metoda ne obstaja več" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 @@ -3830,9 +3862,9 @@ msgid "Tree" msgstr "Drevo" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" -msgstr "" +#: view:res.partner.bank:0 +msgid "Bank accounts" +msgstr "Bančni računi" #. module: base #: selection:ir.actions.todo,start_on:0 @@ -4064,11 +4096,6 @@ msgstr "Ni bilo možno ustvariti sledečega IDja, ker imajo nekateri partnerji msgid "Unsubscribed" msgstr "Nenaročeno" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4453,11 +4480,6 @@ msgstr "Izvoz zaključen" msgid "Arguments" msgstr "Argumenti" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4610,9 +4632,9 @@ msgid "Not Installable" msgstr "Ni namestljiv" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "Verjetnost (0.50)" +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "" #. module: base #: field:res.partner.address,mobile:0 @@ -5087,6 +5109,11 @@ msgstr "Meja" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "Partnerjev naslov" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5169,9 +5196,9 @@ msgid "Operator" msgstr "Operator" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" -msgstr "Partnerjev naslov" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" +msgstr "" #. module: base #: view:wizard.module.lang.export:0 @@ -5310,8 +5337,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5320,9 +5347,9 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" -msgstr "Kategorija partnerjev" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" +msgstr "Stik možnega kupca" #. module: base #: selection:ir.ui.menu,icon:0 @@ -5617,7 +5644,7 @@ msgstr "Grafikon" #. module: base #: field:ir.module.module,installed_version:0 msgid "Latest version" -msgstr "" +msgstr "Najnovejša različica" #. module: base #: model:ir.model,name:base.model_ir_actions_server @@ -5857,6 +5884,11 @@ msgstr "" msgid "Trigger Object" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "Mesec: %(month)s" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5879,9 +5911,13 @@ msgid "Error" msgstr "Napaka" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" -msgstr "" +#: 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 "Partnerjeve kategorije" #. module: base #: model:ir.model,name:base.model_workflow_activity @@ -6314,9 +6350,9 @@ msgid "Modules to be installed, upgraded or removed" msgstr "Moduli za namestiti, nadgraditi ali odstraniti" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" -msgstr "Mesec: %(month)s" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_partner_address_form @@ -6393,11 +6429,6 @@ msgstr "Splošni opis" msgid "Cancel Install" msgstr "Prekliči namestitev" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/i18n/sv_SE.po b/bin/addons/base/i18n/sv_SE.po index 7eea9f7663a..f38402a9ee7 100644 --- a/bin/addons/base/i18n/sv_SE.po +++ b/bin/addons/base/i18n/sv_SE.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:03:24+0000\n" -"PO-Revision-Date: 2008-12-22 18:03:24+0000\n" +"POT-Creation-Date: 2009-01-03 02:15:28+0000\n" +"PO-Revision-Date: 2009-01-03 02:15:28+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "Namn" msgid "terp-account" msgstr "" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -370,8 +375,8 @@ msgid "Sender's email" msgstr "" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" msgstr "" #. module: base @@ -458,8 +463,8 @@ msgid "STOCK_CANCEL" msgstr "" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" msgstr "" #. module: base @@ -942,11 +947,21 @@ msgstr "" msgid "STOCK_UNDERLINE" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" @@ -1837,11 +1852,6 @@ msgstr "" msgid "Get file" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1863,6 +1873,12 @@ msgstr "" msgid "ir.model.data" msgstr "" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1962,17 +1978,16 @@ msgstr "" msgid "From" msgstr "Från" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "" - #. module: base #: selection:res.partner.event,partner_type:0 msgid "Retailer" msgstr "Återförsäljare" +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -1998,11 +2013,6 @@ msgstr "" msgid "Set NULL" msgstr "" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2035,6 +2045,11 @@ msgstr "" msgid "Defined Reports" msgstr "" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" @@ -2130,6 +2145,11 @@ msgstr "" msgid "RML Header" msgstr "" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2264,8 +2284,8 @@ msgid "Recursion error in modules dependencies !" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" +#: view:ir.rule:0 +msgid "Manual domain setup" msgstr "" #. module: base @@ -2486,6 +2506,11 @@ msgstr "" msgid "draft" msgstr "utdrag" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "Sannolikhet (0.50)" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2643,14 +2668,8 @@ msgid "(year)=" msgstr "" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" +#: rml:ir.module.reference:0 +msgid "Dependencies :" msgstr "" #. module: base @@ -2669,9 +2688,9 @@ msgid "Creator" msgstr "" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" +msgid "You cannot perform this operation." msgstr "" #. module: base @@ -2724,7 +2743,6 @@ msgstr "" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2866,9 +2884,9 @@ msgid "Childs Field" msgstr "" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Rollnamn" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "" #. module: base #: code:addons/base/res/res_user.py:0 @@ -2930,6 +2948,11 @@ msgstr "" msgid "Report Xml" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -2998,6 +3021,11 @@ msgstr "" msgid "STOCK_HARDDISK" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3153,6 +3181,11 @@ msgstr "Hög" msgid "Instances" msgstr "" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Rollnamn" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3228,15 +3261,6 @@ msgstr "" msgid "Group by" msgstr "Grupperad efter" -#. 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.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3444,8 +3468,14 @@ msgid "Update Translations" msgstr "" #. module: base -#: view:res.config.view:0 -msgid "Set" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" msgstr "" #. module: base @@ -3524,6 +3554,12 @@ msgstr "" msgid "Channels" msgstr "" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3558,8 +3594,8 @@ msgid "Schedule for Installation" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" msgstr "" #. module: base @@ -3783,11 +3819,6 @@ msgstr "" msgid "STOCK_COLOR_PICKER" msgstr "" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3806,8 +3837,9 @@ msgid "Kind" msgstr "Sort" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" msgstr "" #. module: base @@ -3825,8 +3857,8 @@ msgid "Tree" msgstr "Träd" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" +#: view:res.partner.bank:0 +msgid "Bank accounts" msgstr "" #. module: base @@ -4059,11 +4091,6 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4448,11 +4475,6 @@ msgstr "" msgid "Arguments" msgstr "Argument" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4605,9 +4627,9 @@ msgid "Not Installable" msgstr "" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "Sannolikhet (0.50)" +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "" #. module: base #: field:res.partner.address,mobile:0 @@ -5082,6 +5104,11 @@ msgstr "" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5164,8 +5191,8 @@ msgid "Operator" msgstr "" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" msgstr "" #. module: base @@ -5305,8 +5332,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5315,8 +5342,8 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" msgstr "" #. module: base @@ -5852,6 +5879,11 @@ msgstr "" msgid "Trigger Object" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5874,8 +5906,12 @@ msgid "Error" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" +#: 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 @@ -6309,8 +6345,8 @@ msgid "Modules to be installed, upgraded or removed" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" msgstr "" #. module: base @@ -6387,11 +6423,6 @@ msgstr "" msgid "Cancel Install" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/i18n/tr_TR.po b/bin/addons/base/i18n/tr_TR.po index cee3fc0fa7b..83f4249964e 100644 --- a/bin/addons/base/i18n/tr_TR.po +++ b/bin/addons/base/i18n/tr_TR.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:06:13+0000\n" -"PO-Revision-Date: 2008-12-22 18:06:13+0000\n" +"POT-Creation-Date: 2009-01-03 02:16:12+0000\n" +"PO-Revision-Date: 2009-01-03 02:16:12+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "" msgid "terp-account" msgstr "" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -370,8 +375,8 @@ msgid "Sender's email" msgstr "Gndericinin e-maili" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" msgstr "" #. module: base @@ -458,8 +463,8 @@ msgid "STOCK_CANCEL" msgstr "" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" msgstr "" #. module: base @@ -942,11 +947,21 @@ msgstr "" msgid "STOCK_UNDERLINE" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" @@ -1837,11 +1852,6 @@ msgstr "" msgid "Get file" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1863,6 +1873,12 @@ msgstr "" msgid "ir.model.data" msgstr "" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1963,14 +1979,13 @@ msgid "From" msgstr "" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" +#: selection:res.partner.event,partner_type:0 +msgid "Retailer" msgstr "" #. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Retailer" +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" msgstr "" #. module: base @@ -1998,11 +2013,6 @@ msgstr "" msgid "Set NULL" msgstr "" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2035,6 +2045,11 @@ msgstr "" msgid "Defined Reports" msgstr "" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" @@ -2130,6 +2145,11 @@ msgstr "" msgid "RML Header" msgstr "" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2264,8 +2284,8 @@ msgid "Recursion error in modules dependencies !" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" +#: view:ir.rule:0 +msgid "Manual domain setup" msgstr "" #. module: base @@ -2486,6 +2506,11 @@ msgstr "" msgid "draft" msgstr "" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2643,14 +2668,8 @@ msgid "(year)=" msgstr "" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" +#: rml:ir.module.reference:0 +msgid "Dependencies :" msgstr "" #. module: base @@ -2669,9 +2688,9 @@ msgid "Creator" msgstr "" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" +msgid "You cannot perform this operation." msgstr "" #. module: base @@ -2724,7 +2743,6 @@ msgstr "" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2866,8 +2884,8 @@ msgid "Childs Field" msgstr "" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" msgstr "" #. module: base @@ -2930,6 +2948,11 @@ msgstr "" msgid "Report Xml" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -2998,6 +3021,11 @@ msgstr "" msgid "STOCK_HARDDISK" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3153,6 +3181,11 @@ msgstr "" msgid "Instances" msgstr "" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3228,15 +3261,6 @@ msgstr "" msgid "Group by" 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.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3444,8 +3468,14 @@ msgid "Update Translations" msgstr "" #. module: base -#: view:res.config.view:0 -msgid "Set" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" msgstr "" #. module: base @@ -3524,6 +3554,12 @@ msgstr "" msgid "Channels" msgstr "" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3558,8 +3594,8 @@ msgid "Schedule for Installation" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" msgstr "" #. module: base @@ -3783,11 +3819,6 @@ msgstr "" msgid "STOCK_COLOR_PICKER" msgstr "" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3806,8 +3837,9 @@ msgid "Kind" msgstr "" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" msgstr "" #. module: base @@ -3825,8 +3857,8 @@ msgid "Tree" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" +#: view:res.partner.bank:0 +msgid "Bank accounts" msgstr "" #. module: base @@ -4059,11 +4091,6 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4448,11 +4475,6 @@ msgstr "" msgid "Arguments" msgstr "" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4605,8 +4627,8 @@ msgid "Not Installable" msgstr "" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" +#: rml:ir.module.reference:0 +msgid "View :" msgstr "" #. module: base @@ -5082,6 +5104,11 @@ msgstr "" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5164,8 +5191,8 @@ msgid "Operator" msgstr "" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" msgstr "" #. module: base @@ -5305,8 +5332,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5315,8 +5342,8 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" msgstr "" #. module: base @@ -5852,6 +5879,11 @@ msgstr "" msgid "Trigger Object" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5874,8 +5906,12 @@ msgid "Error" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" +#: 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 @@ -6309,8 +6345,8 @@ msgid "Modules to be installed, upgraded or removed" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" msgstr "" #. module: base @@ -6387,11 +6423,6 @@ msgstr "" msgid "Cancel Install" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/i18n/uk_UK.po b/bin/addons/base/i18n/uk_UK.po index 7d645536bff..6c80172b39a 100644 --- a/bin/addons/base/i18n/uk_UK.po +++ b/bin/addons/base/i18n/uk_UK.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 18:04:06+0000\n" -"PO-Revision-Date: 2008-12-22 18:04:06+0000\n" +"POT-Creation-Date: 2009-01-03 02:16:57+0000\n" +"PO-Revision-Date: 2009-01-03 02:16:57+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "Назва функції" msgid "terp-account" msgstr "terp-account" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "Категорія партнера" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -370,9 +375,9 @@ msgid "Sender's email" msgstr "Адреса ел.пошти відправника" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" -msgstr "Табличний" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" +msgstr "" #. module: base #: help:ir.actions.server,email:0 @@ -458,9 +463,9 @@ msgid "STOCK_CANCEL" msgstr "STOCK_CANCEL" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" -msgstr "Контакт перспективного" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" +msgstr "" #. module: base #: constraint:ir.ui.view:0 @@ -942,11 +947,21 @@ msgstr "Якщо вибрана мова завантажена у систем msgid "STOCK_UNDERLINE" msgstr "STOCK_UNDERLINE" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "Об'єкт користувача" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" @@ -1838,11 +1853,6 @@ msgstr "terp-stock" msgid "Get file" msgstr "Отримати файл" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1865,6 +1875,12 @@ msgstr "0=Дуже терміново\n" msgid "ir.model.data" msgstr "ir.model.data" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1964,17 +1980,16 @@ msgstr "Глобальне" msgid "From" msgstr "Від" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "Цього метода вже не існує" - #. module: base #: selection:res.partner.event,partner_type:0 msgid "Retailer" msgstr "Продавець" +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -2000,11 +2015,6 @@ msgstr "Архів TGZ" msgid "Set NULL" msgstr "Set NULL" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2037,6 +2047,11 @@ msgstr "Створений вручну" msgid "Defined Reports" msgstr "" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "Табличний" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" @@ -2132,6 +2147,11 @@ msgstr "Не введений пароль!" msgid "RML Header" msgstr "Заголовок RML" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "Встановити" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2266,9 +2286,9 @@ msgid "Recursion error in modules dependencies !" msgstr "Рекурсивна помилка у залежностях модулів!" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" -msgstr "" +#: view:ir.rule:0 +msgid "Manual domain setup" +msgstr "Ручне встановлення галузі" #. module: base #: field:ir.actions.report.xml,report_xsl:0 @@ -2488,6 +2508,11 @@ msgstr "STOCK_JUSTIFY_FILL" msgid "draft" msgstr "чорновик" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "Ймовірність (0.50)" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2645,15 +2670,9 @@ msgid "(year)=" msgstr "(рік)=" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" -msgstr "Код" +#: rml:ir.module.reference:0 +msgid "Dependencies :" +msgstr "" #. module: base #: view:ir.module.module:0 @@ -2671,10 +2690,10 @@ msgid "Creator" msgstr "" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" -msgstr "Метод get_memory не реалізовано!" +msgid "You cannot perform this operation." +msgstr "" #. module: base #: field:ir.actions.server,code:0 @@ -2726,7 +2745,6 @@ msgstr "Зв'язок" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2868,9 +2886,9 @@ msgid "Childs Field" msgstr "Підлегле поле" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "Назва ролі" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "" #. module: base #: code:addons/base/res/res_user.py:0 @@ -2881,7 +2899,7 @@ msgstr "Неможливо видалити користувача root!" #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" -msgstr "" +msgstr "Встановлена версія" #. module: base #: view:res.lang:0 @@ -2932,6 +2950,11 @@ msgstr "Експорт файлу перекладів" msgid "Report Xml" msgstr "Звіт Xml" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -3000,6 +3023,11 @@ msgstr "Банк" msgid "STOCK_HARDDISK" msgstr "STOCK_HARDDISK" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3155,6 +3183,11 @@ msgstr "Високий" msgid "Instances" msgstr "Екземпляри" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "Назва ролі" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3230,15 +3263,6 @@ msgstr "" msgid "Group by" 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.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3449,9 +3473,15 @@ msgid "Update Translations" msgstr "Поновити переклади" #. module: base -#: view:res.config.view:0 -msgid "Set" -msgstr "Встановити" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" +msgstr "Код" #. module: base #: field:ir.report.custom.fields,width:0 @@ -3529,6 +3559,12 @@ msgstr "" msgid "Channels" msgstr "Канали" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "Метод get_memory не реалізовано!" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3563,8 +3599,8 @@ msgid "Schedule for Installation" msgstr "Запланувати інсталяцію" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" msgstr "" #. module: base @@ -3788,11 +3824,6 @@ msgstr "Ця операція може зайняти декілька хвил msgid "STOCK_COLOR_PICKER" msgstr "STOCK_COLOR_PICKER" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "Ручне встановлення галузі" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3811,9 +3842,10 @@ msgid "Kind" msgstr "Вид" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" -msgstr "Банківські рахунки" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" +msgstr "Цього метода вже не існує" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 @@ -3830,9 +3862,9 @@ msgid "Tree" msgstr "Дерево" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" -msgstr "" +#: view:res.partner.bank:0 +msgid "Bank accounts" +msgstr "Банківські рахунки" #. module: base #: selection:ir.actions.todo,start_on:0 @@ -4064,11 +4096,6 @@ msgstr "Неможливо згенерувати наступний ІД, то msgid "Unsubscribed" msgstr "Непідписаний" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4453,11 +4480,6 @@ msgstr "Експорт виконано" msgid "Arguments" msgstr "Аргументи" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4610,9 +4632,9 @@ msgid "Not Installable" msgstr "Не встановлюється" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "Ймовірність (0.50)" +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "" #. module: base #: field:res.partner.address,mobile:0 @@ -5087,6 +5109,11 @@ msgstr "Обмеження" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "Адреса партнера" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5169,9 +5196,9 @@ msgid "Operator" msgstr "Оператор" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" -msgstr "Адреса партнера" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" +msgstr "" #. module: base #: view:wizard.module.lang.export:0 @@ -5310,8 +5337,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5320,9 +5347,9 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" -msgstr "Категорія партнера" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" +msgstr "Контакт перспективного" #. module: base #: selection:ir.ui.menu,icon:0 @@ -5617,7 +5644,7 @@ msgstr "Графік" #. 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 @@ -5857,6 +5884,11 @@ msgstr "Меню доступу" msgid "Trigger Object" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "Місяць: %(month)s" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5879,9 +5911,13 @@ msgid "Error" msgstr "Помилка" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" -msgstr "" +#: model:ir.actions.act_window,name:base.action_partner_by_category +#: model:ir.actions.act_window,name:base.action_partner_category_form +#: model:ir.model,name:base.model_res_partner_category +#: model:ir.ui.menu,name:base.menu_partner_category_form +#: view:res.partner.category:0 +msgid "Partner Categories" +msgstr "Категорії партнерів" #. module: base #: model:ir.model,name:base.model_workflow_activity @@ -6314,9 +6350,9 @@ msgid "Modules to be installed, upgraded or removed" msgstr "Модулі до встановлення, оновлення, видалення" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" -msgstr "Місяць: %(month)s" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_partner_address_form @@ -6393,11 +6429,6 @@ msgstr "Загальний опис" msgid "Cancel Install" msgstr "Скасувати встановлення" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/i18n/zh_CN.po b/bin/addons/base/i18n/zh_CN.po index ce5813a4f74..130264ee22c 100644 --- a/bin/addons/base/i18n/zh_CN.po +++ b/bin/addons/base/i18n/zh_CN.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 17:51:28+0000\n" -"PO-Revision-Date: 2008-12-22 17:51:28+0000\n" +"POT-Creation-Date: 2009-01-03 02:02:15+0000\n" +"PO-Revision-Date: 2009-01-03 02:02:15+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "名称" msgid "terp-account" msgstr "" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -370,8 +375,8 @@ msgid "Sender's email" msgstr "发送者email" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" msgstr "" #. module: base @@ -458,9 +463,9 @@ msgid "STOCK_CANCEL" msgstr "" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" -msgstr "潜在客户联系人" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" +msgstr "" #. module: base #: constraint:ir.ui.view:0 @@ -942,11 +947,21 @@ msgstr "" msgid "STOCK_UNDERLINE" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" @@ -1837,11 +1852,6 @@ msgstr "" msgid "Get file" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1863,6 +1873,12 @@ msgstr "0=非常紧急10=不紧急" msgid "ir.model.data" msgstr "" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1962,17 +1978,16 @@ msgstr "全局" msgid "From" msgstr "请求自" -#. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" -msgstr "" - #. module: base #: selection:res.partner.event,partner_type:0 msgid "Retailer" msgstr "零售商" +#. module: base +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" +msgstr "" + #. module: base #: view:res.request:0 msgid "Send" @@ -1998,11 +2013,6 @@ msgstr "" msgid "Set NULL" msgstr "" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2035,6 +2045,11 @@ msgstr "" msgid "Defined Reports" msgstr "" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" @@ -2130,6 +2145,11 @@ msgstr "" msgid "RML Header" msgstr "" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2264,8 +2284,8 @@ msgid "Recursion error in modules dependencies !" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" +#: view:ir.rule:0 +msgid "Manual domain setup" msgstr "" #. module: base @@ -2486,6 +2506,11 @@ msgstr "" msgid "draft" msgstr "草稿" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "概率(0.50)" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2643,14 +2668,8 @@ msgid "(year)=" msgstr "(年)=" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" +#: rml:ir.module.reference:0 +msgid "Dependencies :" msgstr "" #. module: base @@ -2669,9 +2688,9 @@ msgid "Creator" msgstr "" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" +msgid "You cannot perform this operation." msgstr "" #. module: base @@ -2724,7 +2743,6 @@ msgstr "关联" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2866,9 +2884,9 @@ msgid "Childs Field" msgstr "子项字段" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "角色名称" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "" #. module: base #: code:addons/base/res/res_user.py:0 @@ -2930,6 +2948,11 @@ msgstr "" msgid "Report Xml" msgstr "报表Xml" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -2998,6 +3021,11 @@ msgstr "银行" msgid "STOCK_HARDDISK" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3153,6 +3181,11 @@ msgstr "高" msgid "Instances" msgstr "" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "角色名称" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3228,15 +3261,6 @@ msgstr "" msgid "Group by" 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.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3444,8 +3468,14 @@ msgid "Update Translations" msgstr "" #. module: base -#: view:res.config.view:0 -msgid "Set" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" msgstr "" #. module: base @@ -3524,6 +3554,12 @@ msgstr "" msgid "Channels" msgstr "" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3558,8 +3594,8 @@ msgid "Schedule for Installation" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" msgstr "" #. module: base @@ -3783,11 +3819,6 @@ msgstr "提示:这个操作会花费一些时间" msgid "STOCK_COLOR_PICKER" msgstr "" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3806,9 +3837,10 @@ msgid "Kind" msgstr "类别" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" -msgstr "银行帐户" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" +msgstr "" #. module: base #: code:addons/base/ir/ir_report_custom.py:0 @@ -3825,9 +3857,9 @@ msgid "Tree" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" -msgstr "" +#: view:res.partner.bank:0 +msgid "Bank accounts" +msgstr "银行帐户" #. module: base #: selection:ir.actions.todo,start_on:0 @@ -4059,11 +4091,6 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4448,11 +4475,6 @@ msgstr "" msgid "Arguments" msgstr "参数" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4605,9 +4627,9 @@ msgid "Not Installable" msgstr "不可安装" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "概率(0.50)" +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "" #. module: base #: field:res.partner.address,mobile:0 @@ -5082,6 +5104,11 @@ msgstr "数量限制" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5164,8 +5191,8 @@ msgid "Operator" msgstr "" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" msgstr "" #. module: base @@ -5305,8 +5332,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5315,9 +5342,9 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" -msgstr "" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" +msgstr "潜在客户联系人" #. module: base #: selection:ir.ui.menu,icon:0 @@ -5852,6 +5879,11 @@ msgstr "访问菜单" msgid "Trigger Object" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "月:%月" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5874,9 +5906,13 @@ msgid "Error" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" -msgstr "" +#: model:ir.actions.act_window,name:base.action_partner_by_category +#: model:ir.actions.act_window,name:base.action_partner_category_form +#: model:ir.model,name:base.model_res_partner_category +#: model:ir.ui.menu,name:base.menu_partner_category_form +#: view:res.partner.category:0 +msgid "Partner Categories" +msgstr "业务伙伴分类" #. module: base #: model:ir.model,name:base.model_workflow_activity @@ -6309,9 +6345,9 @@ msgid "Modules to be installed, upgraded or removed" msgstr "将要安装,升级或删除的模块" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" -msgstr "月:%月" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" +msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_partner_address_form @@ -6387,11 +6423,6 @@ msgstr "一般说明" msgid "Cancel Install" msgstr "取消安装" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/i18n/zh_TW.po b/bin/addons/base/i18n/zh_TW.po index ebb680a6e49..91d4734af27 100644 --- a/bin/addons/base/i18n/zh_TW.po +++ b/bin/addons/base/i18n/zh_TW.po @@ -4,10 +4,10 @@ # msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0_rc2\n" +"Project-Id-Version: OpenERP Server 5.0.0_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2008-12-22 17:52:06+0000\n" -"PO-Revision-Date: 2008-12-22 17:52:06+0000\n" +"POT-Creation-Date: 2009-01-03 02:02:55+0000\n" +"PO-Revision-Date: 2009-01-03 02:02:55+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" @@ -93,6 +93,11 @@ msgstr "名称" msgid "terp-account" msgstr "" +#. module: base +#: view:res.partner.category:0 +msgid "Partner category" +msgstr "" + #. module: base #: field:res.partner.address,title:0 #: field:res.partner,title:0 @@ -370,8 +375,8 @@ msgid "Sender's email" msgstr "" #. module: base -#: selection:ir.report.custom,type:0 -msgid "Tabular" +#: selection:module.lang.install,init,lang:0 +msgid "bs_BS" msgstr "" #. module: base @@ -458,8 +463,8 @@ msgid "STOCK_CANCEL" msgstr "" #. module: base -#: selection:res.partner.event,type:0 -msgid "Prospect Contact" +#: selection:ir.actions.report.xml,report_type:0 +msgid "odt" msgstr "" #. module: base @@ -942,11 +947,21 @@ msgstr "" msgid "STOCK_UNDERLINE" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Menu :" +msgstr "" + #. module: base #: selection:ir.model,state:0 msgid "Custom Object" msgstr "" +#. module: base +#: view:ir.values:0 +msgid "Values for Event Type" +msgstr "" + #. module: base #: field:res.lang,date_format:0 msgid "Date Format" @@ -1837,11 +1852,6 @@ msgstr "" msgid "Get file" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "tr_TR" -msgstr "" - #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" @@ -1863,6 +1873,12 @@ msgstr "" msgid "ir.model.data" msgstr "" +#. module: base +#: code:osv/orm.py:0 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: view:res.groups:0 #: view:ir.model:0 @@ -1963,14 +1979,13 @@ msgid "From" msgstr "请求自" #. module: base -#: code:osv/orm.py:0 -#, python-format -msgid "This method does not exist anymore" +#: selection:res.partner.event,partner_type:0 +msgid "Retailer" msgstr "" #. module: base -#: selection:res.partner.event,partner_type:0 -msgid "Retailer" +#: view:ir.values:0 +msgid "client_action_multi, client_action_relate" msgstr "" #. module: base @@ -1998,11 +2013,6 @@ msgstr "" msgid "Set NULL" msgstr "" -#. module: base -#: selection:ir.values,key2:0 -msgid "Print" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-report" @@ -2035,6 +2045,11 @@ msgstr "" msgid "Defined Reports" msgstr "" +#. module: base +#: selection:ir.report.custom,type:0 +msgid "Tabular" +msgstr "" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_ZOOM_IN" @@ -2130,6 +2145,11 @@ msgstr "" msgid "RML Header" msgstr "" +#. module: base +#: view:res.config.view:0 +msgid "Set" +msgstr "" + #. module: base #: code:osv/orm.py:0 #, python-format @@ -2264,8 +2284,8 @@ msgid "Recursion error in modules dependencies !" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Open on Tree" +#: view:ir.rule:0 +msgid "Manual domain setup" msgstr "" #. module: base @@ -2486,6 +2506,11 @@ msgstr "" msgid "draft" msgstr "" +#. module: base +#: field:res.partner.event,probability:0 +msgid "Probability (0.50)" +msgstr "概率(0.50)" + #. module: base #: field:res.currency.rate,name:0 #: field:res.partner,date:0 @@ -2643,14 +2668,8 @@ msgid "(year)=" msgstr "" #. module: base -#: selection:ir.translation,type:0 -#: field:res.bank,code:0 -#: field:res.currency,code:0 -#: field:res.lang,code:0 -#: field:res.partner.bank.type,code:0 -#: field:res.partner.function,code:0 -#: field:res.partner,ref:0 -msgid "Code" +#: rml:ir.module.reference:0 +msgid "Dependencies :" msgstr "" #. module: base @@ -2669,9 +2688,9 @@ msgid "Creator" msgstr "" #. module: base -#: code:osv/fields.py:0 +#: code:osv/orm.py:0 #, python-format -msgid "Not implemented get_memory method !" +msgid "You cannot perform this operation." msgstr "" #. module: base @@ -2724,7 +2743,6 @@ msgstr "" #. module: base #: field:ir.actions.server,condition:0 -#: field:ir.actions.server,sub_condition:0 #: field:ir.report.custom.fields,fc0_condition:0 #: field:workflow.transition,condition:0 msgid "Condition" @@ -2866,9 +2884,9 @@ msgid "Childs Field" msgstr "子项字段" #. module: base -#: field:res.roles,name:0 -msgid "Role Name" -msgstr "角色名称" +#: selection:module.lang.install,init,lang:0 +msgid "Turkish / Türkçe" +msgstr "" #. module: base #: code:addons/base/res/res_user.py:0 @@ -2930,6 +2948,11 @@ msgstr "" msgid "Report Xml" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "-" +msgstr "" + #. module: base #: help:res.partner,user_id:0 msgid "The internal user that is in charge of communicating with this partner if any." @@ -2998,6 +3021,11 @@ msgstr "" msgid "STOCK_HARDDISK" msgstr "" +#. module: base +#: rml:ir.module.reference:0 +msgid "Reports :" +msgstr "" + #. module: base #: code:tools/translate.py:0 #, python-format @@ -3153,6 +3181,11 @@ msgstr "" msgid "Instances" msgstr "" +#. module: base +#: field:res.roles,name:0 +msgid "Role Name" +msgstr "角色名称" + #. module: base #: selection:ir.ui.menu,icon:0 msgid "STOCK_COPY" @@ -3228,15 +3261,6 @@ msgstr "" msgid "Group by" 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.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 @@ -3444,8 +3468,14 @@ msgid "Update Translations" msgstr "" #. module: base -#: view:res.config.view:0 -msgid "Set" +#: selection:ir.translation,type:0 +#: field:res.bank,code:0 +#: field:res.currency,code:0 +#: field:res.lang,code:0 +#: field:res.partner.bank.type,code:0 +#: field:res.partner.function,code:0 +#: field:res.partner,ref:0 +msgid "Code" msgstr "" #. module: base @@ -3524,6 +3554,12 @@ msgstr "" msgid "Channels" msgstr "" +#. module: base +#: code:osv/fields.py:0 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_access_act #: model:ir.ui.menu,name:base.menu_ir_access_act @@ -3558,8 +3594,8 @@ msgid "Schedule for Installation" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Tree" +#: view:ir.sequence:0 +msgid "Year without century: %(y)s" msgstr "" #. module: base @@ -3783,11 +3819,6 @@ msgstr "" msgid "STOCK_COLOR_PICKER" msgstr "" -#. module: base -#: view:ir.rule:0 -msgid "Manual domain setup" -msgstr "" - #. module: base #: selection:ir.ui.menu,icon:0 msgid "terp-product" @@ -3806,8 +3837,9 @@ msgid "Kind" msgstr "类别" #. module: base -#: view:res.partner.bank:0 -msgid "Bank accounts" +#: code:osv/orm.py:0 +#, python-format +msgid "This method does not exist anymore" msgstr "" #. module: base @@ -3825,8 +3857,8 @@ msgid "Tree" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "Relate on Object" +#: view:res.partner.bank:0 +msgid "Bank accounts" msgstr "" #. module: base @@ -4059,11 +4091,6 @@ msgstr "" msgid "Unsubscribed" msgstr "" -#. module: base -#: view:ir.sequence:0 -msgid "Year without century: %(y)s" -msgstr "" - #. module: base #: wizard_field:module.module.update,update,update:0 msgid "Number of modules updated" @@ -4448,11 +4475,6 @@ msgstr "" msgid "Arguments" msgstr "参数" -#. module: base -#: selection:ir.values,key2:0 -msgid "Wizard in Forms" -msgstr "" - #. module: base #: field:res.bank,city:0 #: field:res.partner.address,city:0 @@ -4605,9 +4627,9 @@ msgid "Not Installable" msgstr "" #. module: base -#: field:res.partner.event,probability:0 -msgid "Probability (0.50)" -msgstr "概率(0.50)" +#: rml:ir.module.reference:0 +msgid "View :" +msgstr "" #. module: base #: field:res.partner.address,mobile:0 @@ -5082,6 +5104,11 @@ msgstr "" msgid "Iteration Actions" msgstr "" +#. module: base +#: view:res.partner.address:0 +msgid "Partner Address" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_request-act #: model:ir.ui.menu,name:base.menu_res_request_act @@ -5164,8 +5191,8 @@ msgid "Operator" msgstr "" #. module: base -#: view:res.partner.address:0 -msgid "Partner Address" +#: selection:module.lang.install,init,lang:0 +msgid "Arabic / الْعَرَبيّة" msgstr "" #. module: base @@ -5305,8 +5332,8 @@ msgid "Action Source" msgstr "" #. module: base -#: selection:ir.values,key2:0 -msgid "/" +#: view:ir.values:0 +msgid "tree_but_action, client_print_multi" msgstr "" #. module: base @@ -5315,8 +5342,8 @@ msgid "%y - Year without century as a decimal number [00,99]." msgstr "" #. module: base -#: view:res.partner.category:0 -msgid "Partner category" +#: selection:res.partner.event,type:0 +msgid "Prospect Contact" msgstr "" #. module: base @@ -5852,6 +5879,11 @@ msgstr "" msgid "Trigger Object" msgstr "" +#. module: base +#: view:ir.sequence:0 +msgid "Month: %(month)s" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_partner_som msgid "res.partner.som" @@ -5874,8 +5906,12 @@ msgid "Error" msgstr "" #. module: base -#: selection:module.lang.install,init,lang:0 -msgid "ar_AR" +#: 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 @@ -6309,8 +6345,8 @@ msgid "Modules to be installed, upgraded or removed" msgstr "" #. module: base -#: view:ir.sequence:0 -msgid "Month: %(month)s" +#: selection:module.lang.install,init,lang:0 +msgid "Polish / Język polski" msgstr "" #. module: base @@ -6387,11 +6423,6 @@ msgstr "一般说明" msgid "Cancel Install" msgstr "" -#. module: base -#: selection:module.lang.install,init,lang:0 -msgid "pl_PL" -msgstr "" - #. module: base #: code:osv/orm.py:0 #, python-format diff --git a/bin/addons/base/ir/__init__.py b/bin/addons/base/ir/__init__.py index 3f1ccfeb463..38c1eb05c6b 100644 --- a/bin/addons/base/ir/__init__.py +++ b/bin/addons/base/ir/__init__.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/ir/ir.xml b/bin/addons/base/ir/ir.xml index 9ec4756aebd..0739d70e753 100644 --- a/bin/addons/base/ir/ir.xml +++ b/bin/addons/base/ir/ir.xml @@ -18,6 +18,9 @@ + + + workflow.activity.tree workflow.activity tree diff --git a/bin/addons/base/maintenance/__init__.py b/bin/addons/base/maintenance/__init__.py index 876c0e1dc3c..6d3cf4e9553 100644 --- a/bin/addons/base/maintenance/__init__.py +++ b/bin/addons/base/maintenance/__init__.py @@ -1,7 +1,7 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# Copyright (c) 2004-2008 Tiny SPRL (http://tiny.be) All Rights Reserved. +# Copyright (c) 2004-2009 Tiny SPRL (http://tiny.be) All Rights Reserved. # # $Id$ # diff --git a/bin/addons/base/maintenance/maintenance.py b/bin/addons/base/maintenance/maintenance.py index 0eae4277f1c..bc4d6925911 100644 --- a/bin/addons/base/maintenance/maintenance.py +++ b/bin/addons/base/maintenance/maintenance.py @@ -1,7 +1,7 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# Copyright (c) 2004-2008 TINY SPRL. (http://tiny.be) All Rights Reserved. +# Copyright (c) 2004-2009 TINY SPRL. (http://tiny.be) All Rights Reserved. # # $Id$ # @@ -34,8 +34,8 @@ import time import math from pprint import pprint as pp -from tools import config -import xmlrpclib +from tools import config, debug +from tools.maintenance import remote_contract class maintenance_contract_module(osv.osv): _name ="maintenance.contract.module" @@ -51,6 +51,47 @@ class maintenance_contract(osv.osv): _name = "maintenance.contract" _description = "Maintenance Contract" + def _get_valid_contracts(self, cr, uid): + return [contract for contract in self.browse(cr, uid, self.search(cr, uid, [])) if contract.state == 'valid'] + + def status(self, cr, uid): + covered_modules, uncovered_modules = set(), set() + + status = 'none' + for contract in self._get_valid_contracts(cr, uid): + covered_modules.update([m.name for m in contract.module_ids]) + + if covered_modules: + modobj = self.pool.get('ir.module.module') + modids = modobj.search(cr, uid, [('state', '=', 'installed')]) + uncovered_modules = set(m.name for m in modobj.browse(cr, uid, modids)) - covered_modules + status = ['full', 'partial'][len(uncovered_modules) > 0] + + return { + 'status': status, + 'uncovered_modules': list(uncovered_modules), + } + + def send(self, cr, uid, tb, explanations, remarks=None): + assert self.status(cr, uid) == 'full' + contract = self._get_valid_contracts(cr, uid)[0] + + content = "(%s) has reported the following bug:\n%s\nremarks: %s\nThe traceback is:\n%s" % ( + contract.name, explanations, remarks or '', tb + ) + try: + import urllib + args = [('contract_id', contract.name),('data', content)] + args = urllib.urlencode(args) + fp = urllib.urlopen('http://www.openerp.com/scripts/survey.php', args) + submit_result = fp.read() + debug(submit_result) + fp.close() + except: + # TODO schedule a retry + return False + return True + def _valid_get(self, cr, uid, ids, field_name, arg, context=None): res = {} for contract in self.browse(cr, uid, ids, context=context): @@ -99,12 +140,8 @@ class maintenance_contract_wizard(osv.osv_memory): contract = self.read(cr, uid, ids, ['name', 'password'])[0] - login, password, remote_db, remote_server, port = 'admin', 'admin', 'trunk', 'localhost', 8069 + contract_info = remote_contact(contract['name'], contract['password'], modules) - rpc = xmlrpclib.ServerProxy('http://%s:%d/xmlrpc/common' % (remote_server, port)) - ruid = rpc.login(remote_db, login, password) - rpc = xmlrpclib.ServerProxy('http://%s:%d/xmlrpc/object' % (remote_server, port)) - contract_info = rpc.execute(remote_db, ruid, password, 'maintenance.maintenance', 'check_contract', modules, contract ) is_ok = contract_info['status'] in ('partial', 'full') if is_ok: if contract_info['modules_with_contract']: diff --git a/bin/addons/base/module/__init__.py b/bin/addons/base/module/__init__.py index 2e1a825c35e..c6b37580341 100644 --- a/bin/addons/base/module/__init__.py +++ b/bin/addons/base/module/__init__.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/module/module.py b/bin/addons/base/module/module.py index 01917e9ab7e..ce9e7683e16 100644 --- a/bin/addons/base/module/module.py +++ b/bin/addons/base/module/module.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/module/report/__init__.py b/bin/addons/base/module/report/__init__.py index e2e7dbdf7dd..e3f49519d49 100644 --- a/bin/addons/base/module/report/__init__.py +++ b/bin/addons/base/module/report/__init__.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/module/report/ir_module_reference.rml b/bin/addons/base/module/report/ir_module_reference.rml index b19d0ddeed9..9cb301e89a1 100644 --- a/bin/addons/base/module/report/ir_module_reference.rml +++ b/bin/addons/base/module/report/ir_module_reference.rml @@ -3,16 +3,17 @@ diff --git a/bin/addons/base/module/report/ir_module_reference_print.py b/bin/addons/base/module/report/ir_module_reference_print.py index 47235430eff..92029014bac 100644 --- a/bin/addons/base/module/report/ir_module_reference_print.py +++ b/bin/addons/base/module/report/ir_module_reference_print.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/module/wizard/__init__.py b/bin/addons/base/module/wizard/__init__.py index c46811e5eeb..63c49313c66 100644 --- a/bin/addons/base/module/wizard/__init__.py +++ b/bin/addons/base/module/wizard/__init__.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/module/wizard/add_new.py b/bin/addons/base/module/wizard/add_new.py index d117ceacff2..ac1471db32a 100644 --- a/bin/addons/base/module/wizard/add_new.py +++ b/bin/addons/base/module/wizard/add_new.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify @@ -57,7 +57,15 @@ class wizard_install_module(wizard.interface): terp = mod_obj.get_module_info(module) if not terp.get('installable', True): continue - imp.load_module(module, *imp.find_module(module)) + + # XXX check if this code is correct... + fm = imp.find_module(module) + try: + imp.load_module(module, *fm) + finally: + if fm[0]: + fm[0].close() + mod_id = mod_obj.create(cr, uid, { 'name': module, 'state': 'uninstalled', diff --git a/bin/addons/base/module/wizard/wizard_export_lang.py b/bin/addons/base/module/wizard/wizard_export_lang.py index 7e1454bf25e..ef0055ac0ea 100644 --- a/bin/addons/base/module/wizard/wizard_export_lang.py +++ b/bin/addons/base/module/wizard/wizard_export_lang.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/module/wizard/wizard_import_lang.py b/bin/addons/base/module/wizard/wizard_import_lang.py index 3a195b19747..aad846d59ac 100644 --- a/bin/addons/base/module/wizard/wizard_import_lang.py +++ b/bin/addons/base/module/wizard/wizard_import_lang.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/module/wizard/wizard_module_import.py b/bin/addons/base/module/wizard/wizard_module_import.py index 9471ea651b3..c166761b275 100644 --- a/bin/addons/base/module/wizard/wizard_module_import.py +++ b/bin/addons/base/module/wizard/wizard_module_import.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/module/wizard/wizard_module_lang_install.py b/bin/addons/base/module/wizard/wizard_module_lang_install.py index d904fdb2a42..badf7dce09b 100644 --- a/bin/addons/base/module/wizard/wizard_module_lang_install.py +++ b/bin/addons/base/module/wizard/wizard_module_lang_install.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/module/wizard/wizard_module_upgrade.py b/bin/addons/base/module/wizard/wizard_module_upgrade.py index fb31bdec141..da04c12429c 100644 --- a/bin/addons/base/module/wizard/wizard_module_upgrade.py +++ b/bin/addons/base/module/wizard/wizard_module_upgrade.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/module/wizard/wizard_update_module.py b/bin/addons/base/module/wizard/wizard_update_module.py index 1193d833d4f..ebf7577e5a9 100644 --- a/bin/addons/base/module/wizard/wizard_update_module.py +++ b/bin/addons/base/module/wizard/wizard_update_module.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/module/wizard/wizard_update_translations.py b/bin/addons/base/module/wizard/wizard_update_translations.py index 83571e2e63d..e2a8512a8b3 100644 --- a/bin/addons/base/module/wizard/wizard_update_translations.py +++ b/bin/addons/base/module/wizard/wizard_update_translations.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/res/__init__.py b/bin/addons/base/res/__init__.py index e2cfad9cb32..91f47a8ba42 100644 --- a/bin/addons/base/res/__init__.py +++ b/bin/addons/base/res/__init__.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/res/bank.py b/bin/addons/base/res/bank.py index 390c1949772..028ff8760c7 100644 --- a/bin/addons/base/res/bank.py +++ b/bin/addons/base/res/bank.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/res/country.py b/bin/addons/base/res/country.py index 7e560aafed3..e8aeb6ff3a1 100644 --- a/bin/addons/base/res/country.py +++ b/bin/addons/base/res/country.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/res/ir_property.py b/bin/addons/base/res/ir_property.py index 52700dbd942..f344beb7b14 100644 --- a/bin/addons/base/res/ir_property.py +++ b/bin/addons/base/res/ir_property.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/res/partner/__init__.py b/bin/addons/base/res/partner/__init__.py index 5ca2e49e845..389984c039d 100644 --- a/bin/addons/base/res/partner/__init__.py +++ b/bin/addons/base/res/partner/__init__.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/res/partner/crm.py b/bin/addons/base/res/partner/crm.py index 265ad9594fb..fd3504ada90 100644 --- a/bin/addons/base/res/partner/crm.py +++ b/bin/addons/base/res/partner/crm.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/res/partner/partner.py b/bin/addons/base/res/partner/partner.py index 56c01015287..99179059b91 100644 --- a/bin/addons/base/res/partner/partner.py +++ b/bin/addons/base/res/partner/partner.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify @@ -401,8 +401,6 @@ class res_partner_bank(osv.osv): 'state': fields.selection(_bank_type_get, 'Bank type', required=True, change_default=True), 'sequence': fields.integer('Sequence'), - 'state_id': fields.many2one('res.country.state', 'State', - domain="[('country_id', '=', country_id)]"), } _defaults = { 'owner_name': lambda obj, cursor, user, context: obj._default_value( diff --git a/bin/addons/base/res/partner/report/__init__.py b/bin/addons/base/res/partner/report/__init__.py index d24c71bcfec..1941a53c849 100644 --- a/bin/addons/base/res/partner/report/__init__.py +++ b/bin/addons/base/res/partner/report/__init__.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/res/partner/wizard/__init__.py b/bin/addons/base/res/partner/wizard/__init__.py index 7beb03df9c0..9cfa8786a5a 100644 --- a/bin/addons/base/res/partner/wizard/__init__.py +++ b/bin/addons/base/res/partner/wizard/__init__.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/res/partner/wizard/wizard_clear_ids.py b/bin/addons/base/res/partner/wizard/wizard_clear_ids.py index 6d3a3623f2a..ad3b3d750ba 100644 --- a/bin/addons/base/res/partner/wizard/wizard_clear_ids.py +++ b/bin/addons/base/res/partner/wizard/wizard_clear_ids.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/res/partner/wizard/wizard_ean_check.py b/bin/addons/base/res/partner/wizard/wizard_ean_check.py index 2b7111909f0..45e58b105c4 100644 --- a/bin/addons/base/res/partner/wizard/wizard_ean_check.py +++ b/bin/addons/base/res/partner/wizard/wizard_ean_check.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/res/partner/wizard/wizard_sms.py b/bin/addons/base/res/partner/wizard/wizard_sms.py index 6a5bebb2741..8b54cd5d581 100644 --- a/bin/addons/base/res/partner/wizard/wizard_sms.py +++ b/bin/addons/base/res/partner/wizard/wizard_sms.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/res/partner/wizard/wizard_spam.py b/bin/addons/base/res/partner/wizard/wizard_spam.py index 030283bbe44..435bc2a9e94 100644 --- a/bin/addons/base/res/partner/wizard/wizard_spam.py +++ b/bin/addons/base/res/partner/wizard/wizard_spam.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/res/res_company.py b/bin/addons/base/res/res_company.py index 20a5a01d439..628a8f8eccf 100644 --- a/bin/addons/base/res/res_company.py +++ b/bin/addons/base/res/res_company.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify @@ -68,24 +68,21 @@ class res_company(osv.osv): descendance = self._get_partner_descendance(cr, uid, child_id, descendance) return descendance - def __init__(self, *args, **argv): - return super(res_company, self).__init__(*args, **argv) - # # This function restart the cache on the _get_company_children method # - def cache_restart(self, uid=None): - self._get_company_children() + def cache_restart(self, cr): + self._get_company_children.clear_cache(cr.dbname) - def create(self, *args, **argv): - self.cache_restart() - return super(res_company, self).create(*args, **argv) + def create(self, cr, *args, **argv): + self.cache_restart(cr) + return super(res_company, self).create(cr, *args, **argv) - def write(self, *args, **argv): - self.cache_restart() + def write(self, cr, *args, **argv): + self.cache_restart(cr) # Restart the cache on the company_get method - self.pool.get('ir.rule').domain_get() - return super(res_company, self).write(*args, **argv) + self.pool.get('ir.rule').domain_get.clear_cache(cr.dbname) + return super(res_company, self).write(cr, *args, **argv) def _get_euro(self, cr, uid, context={}): try: diff --git a/bin/addons/base/res/res_currency.py b/bin/addons/base/res/res_currency.py index 8b752e4af5e..c68d0ceef12 100644 --- a/bin/addons/base/res/res_currency.py +++ b/bin/addons/base/res/res_currency.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/res/res_lang.py b/bin/addons/base/res/res_lang.py index 4c01687e4a5..6a8801b7b19 100644 --- a/bin/addons/base/res/res_lang.py +++ b/bin/addons/base/res/res_lang.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/res/res_request.py b/bin/addons/base/res/res_request.py index 94f4217211f..d506dacddbb 100644 --- a/bin/addons/base/res/res_request.py +++ b/bin/addons/base/res/res_request.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/addons/base/res/res_user.py b/bin/addons/base/res/res_user.py index e7f3f563234..96ccfa52b7b 100644 --- a/bin/addons/base/res/res_user.py +++ b/bin/addons/base/res/res_user.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify @@ -47,8 +47,8 @@ class groups(osv.osv): _('The name of the group can not start with "-"')) res = super(groups, self).write(cr, uid, ids, vals, context=context) # Restart the cache on the company_get method - self.pool.get('ir.rule').domain_get() - self.pool.get('ir.model.access').check() + self.pool.get('ir.rule').domain_get.clear_cache(cr.dbname) + self.pool.get('ir.model.access').check.clear_cache(cr.dbname) return res def create(self, cr, uid, vals, context=None): @@ -165,9 +165,9 @@ class users(osv.osv): if ok: uid = 1 res = super(users, self).write(cr, uid, ids, values, *args, **argv) - self.company_get() + self.company_get.clear_cache(cr.dbname) # Restart the cache on the company_get method - self.pool.get('ir.rule').domain_get() + self.pool.get('ir.rule').domain_get.clear_cache(cr.dbname) return res def unlink(self, cr, uid, ids): diff --git a/bin/addons/module_graph.py b/bin/addons/module_graph.py index 69d4a449daa..a1178d2d89d 100755 --- a/bin/addons/module_graph.py +++ b/bin/addons/module_graph.py @@ -3,7 +3,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/ir/__init__.py b/bin/ir/__init__.py index efc8beefc49..e05ff3144bc 100644 --- a/bin/ir/__init__.py +++ b/bin/ir/__init__.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/ir/ir.py b/bin/ir/ir.py index 40b682673cc..7d404dc5d34 100644 --- a/bin/ir/ir.py +++ b/bin/ir/ir.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/netsvc.py b/bin/netsvc.py index 770be34aaeb..f2714f54277 100644 --- a/bin/netsvc.py +++ b/bin/netsvc.py @@ -3,10 +3,10 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # The refactoring about the OpenSSL support come from Tryton -# Copyright (C) 2007-2008 Cédric Krier. -# Copyright (C) 2007-2008 Bertrand Chenal. +# Copyright (C) 2007-2009 Cédric Krier. +# Copyright (C) 2007-2009 Bertrand Chenal. # Copyright (C) 2008 B2CK SPRL. # # This program is free software: you can redistribute it and/or modify @@ -137,7 +137,7 @@ class LocalService(Service): raise def service_exist(name): - return (name in _service) and bool(_service[name]) + return _service.get(name, False) LOG_NOTSET = 'notset' LOG_DEBUG_RPC = 'debug_rpc' @@ -230,6 +230,9 @@ class Logger(object): elif result: level_method(result[0]) + def shutdown(self): + logging.shutdown() + import tools init_logger() @@ -257,6 +260,9 @@ class Agent(object): timer.cancel() quit = classmethod(quit) + +import traceback + class xmlrpc(object): class RpcGateway(object): def __init__(self, name): @@ -268,7 +274,6 @@ class GenericXMLRPCRequestHandler: Logger().notifyChannel('XMLRPC-%s' % title, LOG_DEBUG_RPC, pformat(msg)) def _dispatch(self, method, params): - import traceback try: self.log('method', method) self.log('params', params) @@ -285,13 +290,12 @@ class GenericXMLRPCRequestHandler: return r except Exception, e: self.log('exception', e) - tb_s = reduce(lambda x, y: x+y, traceback.format_exception(sys.exc_type, sys.exc_value, sys.exc_traceback)) - s = str(e) + tb = sys.exc_info() + tb_s = "".join(traceback.format_exception(*tb)) if tools.config['debug_mode']: import pdb - tb = sys.exc_info()[2] - pdb.post_mortem(tb) - raise xmlrpclib.Fault(s, tb_s) + pdb.post_mortem(tb[2]) + raise xmlrpclib.Fault(str(e), tb_s) class SSLSocket(object): def __init__(self, socket): @@ -423,10 +427,10 @@ class TinySocketClientThread(threading.Thread): self._logger = Logger() def log(self, msg): - self._logger.notifyChannel('NETRPC', LOG_DEBUG_RPC, msg) + from pprint import pformat + self._logger.notifyChannel('NETRPC', LOG_DEBUG_RPC, pformat(msg)) def run(self): - import traceback import time import select self.running = True @@ -455,14 +459,13 @@ class TinySocketClientThread(threading.Thread): self.log(result_from_method) ts.mysend(result_from_method) except Exception, e: - print repr(e) - tb_s = reduce(lambda x, y: x+y, traceback.format_exception(sys.exc_type, sys.exc_value, sys.exc_traceback)) + self.log(e) + tb = sys.exc_info() + tb_s = "".join(traceback.format_exception(*tb)) if tools.config['debug_mode']: import pdb - tb = sys.exc_info()[2] - pdb.post_mortem(tb) - e = Exception(str(e)) - self.log(str(e)) + pdb.post_mortem(tb[2]) + e = Exception(tools.ustr(e)) # avoid problems of pickeling ts.mysend(e, exception=True, traceback=tb_s) except: pass diff --git a/bin/openerp-server.py b/bin/openerp-server.py index f2938d0a87b..4daed4de138 100644 --- a/bin/openerp-server.py +++ b/bin/openerp-server.py @@ -3,7 +3,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify @@ -178,8 +178,13 @@ if tools.config['netrpc']: logger.notifyChannel("web-services", netsvc.LOG_INFO, "starting NET-RPC service, port %d" % (netport,)) +LST_SIGNALS = ['SIGINT', 'SIGTERM'] +if os.name == 'posix': + LST_SIGNALS.extend(['SIGUSR1','SIGQUIT']) + + SIGNALS = dict( - [(getattr(signal, sign), sign) for sign in ('SIGINT', 'SIGTERM', 'SIGUSR1', 'SIGQUIT')] + [(getattr(signal, sign), sign) for sign in LST_SIGNALS] ) def handler(signum, _): @@ -196,6 +201,7 @@ def handler(signum, _): os.unlink(tools.config['pidfile']) logger.notifyChannel('shutdown', netsvc.LOG_INFO, "Shutdown Server! - %s" % ( SIGNALS[signum], )) + logger.shutdown() sys.exit(0) for signum in SIGNALS: diff --git a/bin/osv/__init__.py b/bin/osv/__init__.py index 834459aea75..9bed17315f8 100644 --- a/bin/osv/__init__.py +++ b/bin/osv/__init__.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/osv/expression.py b/bin/osv/expression.py index d572ae85f3a..bfeb379e3b6 100644 --- a/bin/osv/expression.py +++ b/bin/osv/expression.py @@ -3,7 +3,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/osv/fields.py b/bin/osv/fields.py index e09010bb7f5..e1f98532527 100644 --- a/bin/osv/fields.py +++ b/bin/osv/fields.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify @@ -713,9 +713,17 @@ class related(function): else: t_data = t_data[self.arg[i]] if type(t_data) == type(objlst[0]): - res[data.id] = (t_data.id,t_data.name) + res[data.id] = t_data.id else: res[data.id] = t_data + + if self._type=='many2one': + ids = filter(None, res.values()) + if ids: + ng = dict(obj.pool.get(self._obj).name_get(cr, uid, ids, context=context)) + for r in res: + if res[r]: + res[r] = (res[r], ng[res[r]]) return res def __init__(self, *arg, **args): diff --git a/bin/osv/orm.py b/bin/osv/orm.py index b5e5e827ac2..0fd634c5be1 100644 --- a/bin/osv/orm.py +++ b/bin/osv/orm.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify @@ -867,6 +867,9 @@ class orm_template(object): def __view_look_dom_arch(self, cr, user, node, context=None): fields_def = self.__view_look_dom(cr, user, node, context=context) + rolesobj = self.pool.get('res.roles') + usersobj = self.pool.get('res.users') + buttons = xpath.Evaluate('//button', node) if buttons: for button in buttons: @@ -876,13 +879,12 @@ class orm_template(object): ok = True if user != 1: # admin user has all roles - serv = netsvc.LocalService('object_proxy') - user_roles = serv.execute_cr(cr, user, 'res.users', 'read', [user], ['roles_id'])[0]['roles_id'] - cr.execute("select role_id from wkf_transition where signal='%s'" % button.getAttribute('name')) + user_roles = usersobj.read(cr, user, [user], ['roles_id'])[0]['roles_id'] + cr.execute("select role_id from wkf_transition where signal=%s", (button.getAttribute('name'),)) roles = cr.fetchall() for role in roles: if role[0]: - ok = ok and serv.execute_cr(cr, user, 'res.roles', 'check', user_roles, role[0]) + ok = ok and rolesobj.check(cr, user, user_roles, role[0]) if not ok: button.setAttribute('readonly', '1') @@ -1142,8 +1144,6 @@ class orm_template(object): raise _('The copy method is not implemented on this object !') def read_string(self, cr, uid, id, langs, fields=None, context=None): - if not context: - context = {} res = {} res2 = {} self.pool.get('ir.model.access').check(cr, uid, 'ir.translation', 'read') @@ -1163,14 +1163,12 @@ class orm_template(object): res2 = self.pool.get(table).read_string(cr, uid, id, langs, cols, context) for lang in res2: if lang in res: - res[lang] = {'code': lang} + res[lang]['code'] = lang for f in res2[lang]: res[lang][f] = res2[lang][f] return res def write_string(self, cr, uid, id, langs, vals, context=None): - if not context: - context = {} self.pool.get('ir.model.access').check(cr, uid, 'ir.translation', 'write') for lang in langs: for field in vals: @@ -2151,7 +2149,7 @@ class orm(orm_template): totranslate = context.get('lang', False) and (context['lang'] != 'en_US') for field in vals: if field in self._columns: - if self._columns[field]._classic_write: + if self._columns[field]._classic_write and not (hasattr(self._columns[field], '_fnct_inv')): if (not totranslate) or not self._columns[field].translate: upd0.append('"'+field+'"='+self._columns[field]._symbol_set[0]) upd1.append(self._columns[field]._symbol_set[1](vals[field])) @@ -2345,8 +2343,15 @@ class orm(orm_template): (table, col, col_detail) = self._inherit_fields[v] tocreate[table][v] = vals[v] del vals[v] - - cr.execute("SELECT nextval('"+self._sequence+"')") + + # Try-except added to filter the creation of those records whose filds are readonly. + # Example : any dashboard which has all the fields readonly.(due to Views(database views)) + try: + cr.execute("SELECT nextval('"+self._sequence+"')") + except: + raise except_orm(_('UserError'), + _('You cannot perform this operation.')) + id_new = cr.fetchone()[0] for table in tocreate: id = self.pool.get(table).create(cr, user, tocreate[table]) diff --git a/bin/osv/osv.py b/bin/osv/osv.py index 64010c45636..8d3ba929f69 100644 --- a/bin/osv/osv.py +++ b/bin/osv/osv.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify @@ -47,9 +47,37 @@ class except_osv(Exception): self.args = (exc_type, name) +from tools.func import wraps class osv_pool(netsvc.Service): + + def check(f): + @wraps(f) + def wrapper(self, dbname, *args, **kwargs): + try: + if not pooler.get_pool(dbname)._ready: + raise except_osv('Database not ready', 'Currently, this database is not fully loaded and can not be used.') + return f(self, dbname, *args, **kwargs) + except orm.except_orm, inst: + self.abortResponse(1, inst.name, 'warning', inst.value) + except except_osv, inst: + self.abortResponse(1, inst.name, inst.exc_type, inst.value) + except IntegrityError, inst: + for key in self._sql_error.keys(): + if key in inst[0]: + self.abortResponse(1, 'Constraint Error', 'warning', self._sql_error[key]) + self.abortResponse(1, 'Integrity Error', 'warning', inst[0]) + except Exception, e: + import traceback + tb_s = reduce(lambda x, y: x+y, traceback.format_exception( sys.exc_type, sys.exc_value, sys.exc_traceback)) + logger = Logger() + logger.notifyChannel('web-services', LOG_ERROR, tb_s) + raise + + return wrapper + def __init__(self): + self._ready = False self.obj_pool = {} self.module_object_list = {} self.created = [] @@ -63,42 +91,27 @@ class osv_pool(netsvc.Service): self.exportMethod(self.obj_list) self.exportMethod(self.exec_workflow) self.exportMethod(self.execute) - self.exportMethod(self.execute_cr) def init_set(self, cr, mode): - if mode <> self._init: + different = mode != self._init + if different: if mode: self._init_parent = {} if not mode: for o in self._init_parent: self.get(o)._parent_store_compute(cr) self._init = mode - return True - return False - + + self._ready = True + return different + def execute_cr(self, cr, uid, obj, method, *args, **kw): - try: - object = pooler.get_pool(cr.dbname).get(obj) - if not object: - self.abortResponse(1, 'Object Error', 'warning', - 'Object %s doesn\'t exist' % str(obj)) - return getattr(object, method)(cr, uid, *args, **kw) - except orm.except_orm, inst: - self.abortResponse(1, inst.name, 'warning', inst.value) - except except_osv, inst: - self.abortResponse(1, inst.name, inst.exc_type, inst.value) - except IntegrityError, inst: - for key in self._sql_error.keys(): - if key in inst[0]: - self.abortResponse(1, 'Constraint Error', 'warning', self._sql_error[key]) - self.abortResponse(1, 'Integrity Error', 'warning', inst[0]) - except Exception, e: - import traceback - tb_s = reduce(lambda x, y: x+y, traceback.format_exception( sys.exc_type, sys.exc_value, sys.exc_traceback)) - logger = Logger() - logger.notifyChannel('web-services', LOG_ERROR, tb_s) - raise - + object = pooler.get_pool(cr.dbname).get(obj) + if not object: + raise except_osv('Object Error', 'Object %s doesn\'t exist' % str(obj)) + return getattr(object, method)(cr, uid, *args, **kw) + + @check def execute(self, db, uid, obj, method, *args, **kw): db, pool = pooler.get_db_and_pool(db) cr = db.cursor() @@ -117,18 +130,16 @@ class osv_pool(netsvc.Service): wf_service = netsvc.LocalService("workflow") return wf_service.trg_validate(uid, obj, args[0], method, cr) + @check def exec_workflow(self, db, uid, obj, method, *args): cr = pooler.get_db(db).cursor() try: try: res = self.exec_workflow_cr(cr, uid, obj, method, *args) cr.commit() - except orm.except_orm, inst: + except Exception: cr.rollback() - self.abortResponse(1, inst.name, 'warning', inst.value) - except except_osv, inst: - cr.rollback() - self.abortResponse(1, inst.name, inst[0], inst.value) + raise finally: cr.close() return res @@ -148,7 +159,7 @@ class osv_pool(netsvc.Service): module = module.split('.')[0][2:] self.module_object_list.setdefault(module, []).append(obj_inst) - # Return False if object does not exist + # Return None if object does not exist def get(self, name): obj = self.obj_pool.get(name, None) return obj diff --git a/bin/pooler.py b/bin/pooler.py index bf04f30353c..8b5b3b2a865 100644 --- a/bin/pooler.py +++ b/bin/pooler.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify @@ -43,10 +43,9 @@ def get_db_and_pool(db_name, force_demo=False, status=None, update_module=False) finally: cr.close() - if not update_module: - import report - report.interface.register_all(db) - pool.get('ir.cron')._poolJobs(db.dbname) + import report + report.interface.register_all(db) + pool.get('ir.cron')._poolJobs(db.dbname) return db, pool diff --git a/bin/release.py b/bin/release.py index 7a182f22e4c..9c96c3fad75 100644 --- a/bin/release.py +++ b/bin/release.py @@ -3,7 +3,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify @@ -22,7 +22,7 @@ ############################################################################## name = 'openerp-server' -version = '5.0.0_rc2' +version = '5.0.0_rc3' major_version = '5.0' description = 'OpenERP Server' long_desc = '''\ diff --git a/bin/report/__init__.py b/bin/report/__init__.py index 50efea9737c..5fdf0349ae0 100644 --- a/bin/report/__init__.py +++ b/bin/report/__init__.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/report/common.py b/bin/report/common.py index 64e05de312b..0bea817787c 100644 --- a/bin/report/common.py +++ b/bin/report/common.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/report/custom.py b/bin/report/custom.py index 1735e0dcafc..80889255962 100644 --- a/bin/report/custom.py +++ b/bin/report/custom.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/report/int_to_text.py b/bin/report/int_to_text.py index e6d8f4ae24b..09d809e963b 100644 --- a/bin/report/int_to_text.py +++ b/bin/report/int_to_text.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/report/interface.py b/bin/report/interface.py index 0108792abba..74f952128d5 100644 --- a/bin/report/interface.py +++ b/bin/report/interface.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/report/misc.py b/bin/report/misc.py index 3f11ad741ce..415b119a61b 100644 --- a/bin/report/misc.py +++ b/bin/report/misc.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/report/print_fnc.py b/bin/report/print_fnc.py index 0bb3bb2f9a7..4657de4b329 100644 --- a/bin/report/print_fnc.py +++ b/bin/report/print_fnc.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/report/print_xml.py b/bin/report/print_xml.py index 796ef6989b6..8ed5dd18012 100644 --- a/bin/report/print_xml.py +++ b/bin/report/print_xml.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/report/printscreen/__init__.py b/bin/report/printscreen/__init__.py index 19e04d64467..2ad4eec345e 100644 --- a/bin/report/printscreen/__init__.py +++ b/bin/report/printscreen/__init__.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/report/printscreen/ps_form.py b/bin/report/printscreen/ps_form.py index 6e947b8bcd1..9fb85fd52cb 100644 --- a/bin/report/printscreen/ps_form.py +++ b/bin/report/printscreen/ps_form.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/report/printscreen/ps_list.py b/bin/report/printscreen/ps_list.py index 15b3c95fc38..0cacc76c7ac 100644 --- a/bin/report/printscreen/ps_list.py +++ b/bin/report/printscreen/ps_list.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/report/render/__init__.py b/bin/report/render/__init__.py index d38064cc585..b19b4de7ef0 100644 --- a/bin/report/render/__init__.py +++ b/bin/report/render/__init__.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/report/render/render.py b/bin/report/render/render.py index d2a681efaae..b4b0d1af07e 100644 --- a/bin/report/render/render.py +++ b/bin/report/render/render.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/report/render/rml.py b/bin/report/render/rml.py index 5036954d605..00096cf8f00 100644 --- a/bin/report/render/rml.py +++ b/bin/report/render/rml.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/report/render/rml2html/__init__.py b/bin/report/render/rml2html/__init__.py index 7eb47a79f0a..2ec8d7c3079 100644 --- a/bin/report/render/rml2html/__init__.py +++ b/bin/report/render/rml2html/__init__.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/report/render/rml2html/rml2html.py b/bin/report/render/rml2html/rml2html.py index c1c2d57f050..c5321b0f2e5 100644 --- a/bin/report/render/rml2html/rml2html.py +++ b/bin/report/render/rml2html/rml2html.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/report/render/rml2html/utils.py b/bin/report/render/rml2html/utils.py index 7186cc13fff..848dae463ee 100644 --- a/bin/report/render/rml2html/utils.py +++ b/bin/report/render/rml2html/utils.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/report/render/rml2pdf/__init__.py b/bin/report/render/rml2pdf/__init__.py index 4358379f2d6..6f068b7b8ca 100644 --- a/bin/report/render/rml2pdf/__init__.py +++ b/bin/report/render/rml2pdf/__init__.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/report/render/rml2pdf/color.py b/bin/report/render/rml2pdf/color.py index b51df166429..3f3caf7fa43 100644 --- a/bin/report/render/rml2pdf/color.py +++ b/bin/report/render/rml2pdf/color.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/report/render/rml2pdf/trml2pdf.py b/bin/report/render/rml2pdf/trml2pdf.py index 2d6fd6ed1ae..92aba87f372 100644 --- a/bin/report/render/rml2pdf/trml2pdf.py +++ b/bin/report/render/rml2pdf/trml2pdf.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/report/render/rml2pdf/utils.py b/bin/report/render/rml2pdf/utils.py index c1f6edf61e3..25573ed99cc 100644 --- a/bin/report/render/rml2pdf/utils.py +++ b/bin/report/render/rml2pdf/utils.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/report/render/simple.py b/bin/report/render/simple.py index 302402d7631..ed76cf3e354 100644 --- a/bin/report/render/simple.py +++ b/bin/report/render/simple.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/report/report_sxw.py b/bin/report/report_sxw.py index ee1555dbc0d..c4f10212b5a 100644 --- a/bin/report/report_sxw.py +++ b/bin/report/report_sxw.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify @@ -455,7 +455,7 @@ class rml_parse(object): if len(source_string): translated_string = transl_obj._get_source(self.cr, self.uid, self.name, 'rml', lang, source_string) if translated_string: - piece_list[pn] = piece_list[pn].replace(source_string, translated_string.decode('utf8')) + piece_list[pn] = piece_list[pn].replace(source_string, translated_string) text = ''.join(piece_list) for key in res: newtext = self._eval(key) diff --git a/bin/service/__init__.py b/bin/service/__init__.py index 938401a6540..573d3fd47a3 100644 --- a/bin/service/__init__.py +++ b/bin/service/__init__.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/service/security.py b/bin/service/security.py index 81c6ef99744..449740a99ff 100644 --- a/bin/service/security.py +++ b/bin/service/security.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/service/web_services.py b/bin/service/web_services.py index 5ec9603dde5..b97e8a81fa7 100644 --- a/bin/service/web_services.py +++ b/bin/service/web_services.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify @@ -53,6 +53,7 @@ class db(netsvc.Service): self.exportMethod(self.list_lang) self.exportMethod(self.change_admin_password) self.exportMethod(self.server_version) + self.exportMethod(self.migrate_databases) self.actions = {} self.id = 0 self.id_protect = threading.Semaphore() @@ -273,8 +274,23 @@ class db(netsvc.Service): Used by the client to verify the compatibility with its own version """ return release.version + + def migrate_databases(self, password, databases): + security.check_super(password) + l = netsvc.Logger() + for db in databases: + try: + l.notifyChannel('migration', netsvc.LOG_INFO, 'migrate database %s' % (db,)) + tools.config['update']['base'] = True + pooler.restart_pool(db, force_demo=False, update_module=True) + except Exception, e: + tools.debug(e) + raise + return True db() +class MigrationException(Exception): pass + class common(netsvc.Service): def __init__(self,name="common"): netsvc.Service.__init__(self,name) @@ -286,6 +302,7 @@ class common(netsvc.Service): self.exportMethod(self.login) self.exportMethod(self.logout) self.exportMethod(self.timezone_get) + self.exportMethod(self.get_migration_scripts) def ir_set(self, db, uid, password, keys, args, name, value, replace=True, isobject=False): security.check(db, uid, password) @@ -349,6 +366,48 @@ GNU Public Licence. def timezone_get(self, db, login, password): return time.tzname[0] + + + def get_migration_scripts(self, password, contract_id, contract_password): + security.check_super(password) + l = netsvc.Logger() + try: + from tools.maintenance import remote_contract + rc = remote_contract(contract_id, contract_password) + if not rc.id: + raise MigrationException('This contract does not exist or is not active') + if rc.status != 'full': + raise MigrationException('Can not get updates for a partial contract') + + l.notifyChannel('migration', netsvc.LOG_INFO, 'starting migration with contract %s' % (rc.name,)) + + zips = rc.retrieve_updates(rc.id) + + from shutil import rmtree + for module in zips: + l.notifyChannel('migration', netsvc.LOG_INFO, 'upgrade module %s' % (module,)) + mp = addons.get_module_path(module) + if mp: + if os.path.isdir(mp): + rmtree(os.path.realpath(mp)) + else: + os.unlink(mp + '.zip') + + mp = os.path.join(tools.config['addons_path'], module + '.zip') + + zip = open(mp, 'w') + zip.write(base64.decodestring(zips[module])) + zip.close() + + return True + except MigrationException, e: + self.abortResponse(1, 'Migration Error', 'warning', str(e)) + except Exception, e: + import traceback + tb_s = reduce(lambda x, y: x+y, traceback.format_exception( sys.exc_type, sys.exc_value, sys.exc_traceback)) + l.notifyChannel('migration', netsvc.LOG_ERROR, tb_s) + raise + common() class objects_proxy(netsvc.Service): diff --git a/bin/sql_db.py b/bin/sql_db.py index 22e2065868e..30b4df1e2b8 100644 --- a/bin/sql_db.py +++ b/bin/sql_db.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify @@ -233,7 +233,7 @@ def db_connect(db_name, serialize=0): def close_db(db_name): PoolManager.close(db_name) - tools.cache.clean_cache_for_db(db_name) + tools.cache.clean_caches_for_db(db_name) # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: diff --git a/bin/tiny_socket.py b/bin/tiny_socket.py index 826475949ea..5d82997b8e9 100644 --- a/bin/tiny_socket.py +++ b/bin/tiny_socket.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/tools/__init__.py b/bin/tools/__init__.py index 54c13704936..ad693e14aa1 100644 --- a/bin/tools/__init__.py +++ b/bin/tools/__init__.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/tools/amount_to_text.py b/bin/tools/amount_to_text.py index 3734c9617f5..f933ae263e7 100644 --- a/bin/tools/amount_to_text.py +++ b/bin/tools/amount_to_text.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/tools/amount_to_text_en.py b/bin/tools/amount_to_text_en.py index c8cf4cb0e94..3fcf5b20b4c 100644 --- a/bin/tools/amount_to_text_en.py +++ b/bin/tools/amount_to_text_en.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/tools/config.py b/bin/tools/config.py index e19c95e1660..0d9e31f7870 100644 --- a/bin/tools/config.py +++ b/bin/tools/config.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/tools/convert.py b/bin/tools/convert.py index 453a34b07d2..1c6cdda2323 100644 --- a/bin/tools/convert.py +++ b/bin/tools/convert.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/tools/func.py b/bin/tools/func.py index 96113e04072..7dd515b523d 100644 --- a/bin/tools/func.py +++ b/bin/tools/func.py @@ -1,8 +1,8 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify @@ -20,12 +20,60 @@ # ############################################################################## +__all__ = ['partial', 'wraps', 'update_wrapper'] + try: - from functools import wraps + from functools import partial, wraps, update_wrapper except ImportError: - # this module doesn't exist in python < 2.5 - # we define a identity decorator - def wraps(f): - def identity(x): - return x - return identity + # The functools module doesn't exist in python < 2.5 + # Code taken from python 2.5 + # http://svn.python.org/view/python/tags/r254/Lib/functools.py?view=markup + + def partial(fun, *args, **kwargs): + def _partial(*args2, **kwargs2): + return fun(*(args+args2), **dict(kwargs, **kwargs2)) + return _partial + + ### --- code from python 2.5 + + # update_wrapper() and wraps() are tools to help write + # wrapper functions that can handle naive introspection + + WRAPPER_ASSIGNMENTS = ('__module__', '__name__', '__doc__') + WRAPPER_UPDATES = ('__dict__',) + def update_wrapper(wrapper, + wrapped, + assigned = WRAPPER_ASSIGNMENTS, + updated = WRAPPER_UPDATES): + """Update a wrapper function to look like the wrapped function + + wrapper is the function to be updated + wrapped is the original function + assigned is a tuple naming the attributes assigned directly + from the wrapped function to the wrapper function (defaults to + functools.WRAPPER_ASSIGNMENTS) + updated is a tuple naming the attributes off the wrapper that + are updated with the corresponding attribute from the wrapped + function (defaults to functools.WRAPPER_UPDATES) + """ + for attr in assigned: + setattr(wrapper, attr, getattr(wrapped, attr)) + for attr in updated: + getattr(wrapper, attr).update(getattr(wrapped, attr, {})) + # Return the wrapper so this can be used as a decorator via partial() + return wrapper + + def wraps(wrapped, + assigned = WRAPPER_ASSIGNMENTS, + updated = WRAPPER_UPDATES): + """Decorator factory to apply update_wrapper() to a wrapper function + + Returns a decorator that invokes update_wrapper() with the decorated + function as the wrapper argument and the arguments to wraps() as the + remaining arguments. Default arguments are as for update_wrapper(). + This is a convenience function to simplify applying partial() to + update_wrapper(). + """ + return partial(update_wrapper, wrapped=wrapped, + assigned=assigned, updated=updated) + diff --git a/bin/tools/graph.py b/bin/tools/graph.py index 80853cd09ee..9d246e4037f 100644 --- a/bin/tools/graph.py +++ b/bin/tools/graph.py @@ -3,7 +3,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/tools/import_email.py b/bin/tools/import_email.py index cd8c470f96d..d6811350140 100644 --- a/bin/tools/import_email.py +++ b/bin/tools/import_email.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/tools/maintenance.py b/bin/tools/maintenance.py new file mode 100644 index 00000000000..959d9f7bf3c --- /dev/null +++ b/bin/tools/maintenance.py @@ -0,0 +1,62 @@ +# -*- encoding: utf-8 -*- +############################################################################## +# +# OpenERP, Open Source Management Solution +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved +# $Id$ +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . +# +############################################################################## + +import xmlrpclib + +class remote_contract(object): + def __init__(self, contract_id, contract_password, modules=None): + self.__server = 'http://localhost:8069/xmlrpc/' + self.__db = "trunk" + self.__password = "admin" + self.__login = "admin" + + rpc = xmlrpclib.ServerProxy(self.__server + 'common') + self.__userid = rpc.login(self.__db, self.__login, self.__password) + + self.__rpc = xmlrpclib.ServerProxy(self.__server + 'object') + + + contract = { + 'name': contract_id, + 'password': contract_password, + } + if modules is None: + modules = [] + + info = self.check_contract(modules, contract) + for n in info: + setattr(self, n, info[n]) + + self.name = contract_id + self.contract_id = self.name + self.password = contract_password + + def __getattr__(self, fun): + def remote_call(*args, **kwargs): + return self.__rpc.execute(self.__db, self.__userid, self.__password, 'maintenance.maintenance', fun, *args, **kwargs) + return remote_call + + def __getitem__(self, item): + return getattr(self, item) + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: + diff --git a/bin/tools/misc.py b/bin/tools/misc.py index a9157541a99..6b366eec67f 100644 --- a/bin/tools/misc.py +++ b/bin/tools/misc.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify @@ -549,26 +549,74 @@ class cache(object): self.multi = multi self.lasttime = time.time() self.cache = {} - + self.fun = None cache.__caches.append(self) - @classmethod - def clean_cache_for_db(cls, dbname): - def get_dbname_from_key(key): - for e in key: - if e[0] == 'dbname': - return e[1] - return None + + def _generate_keys(self, dbname, kwargs2): + """ + Generate keys depending of the arguments and the self.mutli value + """ + + def to_tuple(d): + i = d.items() + i.sort() + return tuple(i) - for cache in cls.__caches: - keys_to_del = [key for key in cache.cache if get_dbname_from_key(key) == dbname] - for key in keys_to_del: - del cache.cache[key] + if not self.multi: + key = (('dbname', dbname),) + to_tuple(kwargs2) + yield key, None + else: + multis = kwargs2[self.multi][:] + for id in multis: + kwargs2[self.multi] = [id] + key = (('dbname', dbname),) + to_tuple(kwargs2) + yield key, id + + def _unify_args(self, *args, **kwargs): + # Update named arguments with positional argument values (without self and cr) + kwargs2 = self.fun_default_values.copy() + kwargs2.update(kwargs) + kwargs2.update(dict(zip(self.fun_arg_names, args[self.skiparg-2:]))) + for k in kwargs2: + if isinstance(kwargs2[k], (list, dict, set)): + kwargs2[k] = tuple(kwargs2[k]) + elif not is_hashable(kwargs2[k]): + kwargs2[k] = repr(kwargs2[k]) + + return kwargs2 + + def clear(self, dbname, *args, **kwargs): + """clear the cache for database dbname + if *args and **kwargs are both empty, clear all the keys related to this database + """ + if not args and not kwargs: + keys_to_del = [key for key in self.cache if key[0][1] == dbname] + else: + kwargs2 = self._unify_args(*args, **kwargs) + keys_to_del = [key for key, _ in self._generate_keys(dbname, kwargs2) if key in self.cache] + + for key in keys_to_del: + del self.cache[key] + + @classmethod + def clean_caches_for_db(cls, dbname): + for c in cls.__caches: + c.clear(dbname) def __call__(self, fn): - arg_names = inspect.getargspec(fn)[0][self.skiparg:] + if self.fun is not None: + raise Exception("Can not use a cache instance on more than one function") + self.fun = fn - def cached_result(self2, cr=None, *args, **kwargs): + argspec = inspect.getargspec(fn) + self.fun_arg_names = argspec[0][self.skiparg:] + self.fun_default_values = {} + if argspec[3]: + self.fun_default_values = dict(zip(self.fun_arg_names[-len(argspec[3]):], argspec[3])) + debug(self.fun_default_values) + + def cached_result(self2, cr, *args, **kwargs): if time.time()-self.timeout > self.lasttime: self.lasttime = time.time() t = time.time()-self.timeout @@ -576,64 +624,36 @@ class cache(object): if self.cache[key][1]). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/tools/parse_version.py b/bin/tools/parse_version.py index 46236aa6080..f79e2bad458 100644 --- a/bin/tools/parse_version.py +++ b/bin/tools/parse_version.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify @@ -83,7 +83,7 @@ def parse_version(s): if __name__ == '__main__': pvs = [] - for v in ('0', '4.2', '4.2.3.4', '5.0.0-alpha', '5.0.0-rc1', '5.0.0-rc1.1', '5.0.0_rc2', '5.0.0'): + for v in ('0', '4.2', '4.2.3.4', '5.0.0-alpha', '5.0.0-rc1', '5.0.0-rc1.1', '5.0.0_rc2', '5.0.0_rc3', '5.0.0'): pv = parse_version(v) print v, pv pvs.append(pv) diff --git a/bin/tools/pdf_utils.py b/bin/tools/pdf_utils.py index 7699177a1d6..5e58f2fdecc 100644 --- a/bin/tools/pdf_utils.py +++ b/bin/tools/pdf_utils.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/tools/sql.py b/bin/tools/sql.py index b186c649ef1..c0feed03f94 100644 --- a/bin/tools/sql.py +++ b/bin/tools/sql.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/tools/translate.py b/bin/tools/translate.py index 21add6df4ef..e668bfbc790 100644 --- a/bin/tools/translate.py +++ b/bin/tools/translate.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify @@ -370,7 +370,7 @@ def trans_generate(lang, modules, dbname=None): continue obj = pool.get(model).browse(cr, uid, res_id) if model=='ir.ui.view': - d = xml.dom.minidom.parseString(obj.arch) + d = xml.dom.minidom.parseString(encode(obj.arch)) for t in trans_parse_view(d.documentElement): push_translation(module, 'view', encode(obj.model), 0, t) elif model=='ir.actions.wizard': diff --git a/bin/wizard/__init__.py b/bin/wizard/__init__.py index 8996ce0cb80..84395f06914 100644 --- a/bin/wizard/__init__.py +++ b/bin/wizard/__init__.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/workflow/__init__.py b/bin/workflow/__init__.py index 3c1d9641617..62e205f7260 100644 --- a/bin/workflow/__init__.py +++ b/bin/workflow/__init__.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/workflow/common.py b/bin/workflow/common.py index 86931d59f68..21046c74e19 100644 --- a/bin/workflow/common.py +++ b/bin/workflow/common.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/workflow/instance.py b/bin/workflow/instance.py index ce9dfdd0c6a..b78b5ae7dbe 100644 --- a/bin/workflow/instance.py +++ b/bin/workflow/instance.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/workflow/wkf_expr.py b/bin/workflow/wkf_expr.py index fff74884e3f..ecd944871cb 100644 --- a/bin/workflow/wkf_expr.py +++ b/bin/workflow/wkf_expr.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify @@ -25,22 +25,8 @@ import netsvc import osv as base import pooler - -class EnvCall(object): - - def __init__(self,wf_service,d_arg): - self.wf_service=wf_service - self.d_arg=d_arg - - def __call__(self,*args): - arg=self.d_arg+args - return self.wf_service.execute_cr(*arg) - - class Env(dict): - - def __init__(self, wf_service, cr, uid, model, ids): - self.wf_service = wf_service + def __init__(self, cr, uid, model, ids): self.cr = cr self.uid = uid self.model = model @@ -52,13 +38,6 @@ class Env(dict): if (key in self.columns) or (key in dir(self.obj)): res = self.obj.browse(self.cr, self.uid, self.ids[0]) return res[key] - #res=self.wf_service.execute_cr(self.cr, self.uid, self.model, 'read',\ - # self.ids, [key])[0][key] - #super(Env, self).__setitem__(key, res) - #return res - #elif key in dir(self.obj): - # return EnvCall(self.wf_service, (self.cr, self.uid, self.model, key,\ - # self.ids)) else: return super(Env, self).__getitem__(key) @@ -75,13 +54,11 @@ def _eval_expr(cr, ident, workitem, action): elif line =='False': ret=False else: - wf_service = netsvc.LocalService("object_proxy") - env = Env(wf_service, cr, uid, model, ids) + env = Env(cr, uid, model, ids) ret = eval(line, env) return ret def execute_action(cr, ident, workitem, activity): - wf_service = netsvc.LocalService("object_proxy") obj = pooler.get_pool(cr.dbname).get('ir.actions.server') ctx = {'active_id':ident[2], 'active_ids':[ident[2]]} result = obj.run(cr, ident[0], [activity['action_id']], ctx) @@ -97,9 +74,9 @@ def check(cr, workitem, ident, transition, signal): uid = ident[0] if transition['role_id'] and uid != 1: - serv = netsvc.LocalService('object_proxy') - user_roles = serv.execute_cr(cr, uid, 'res.users', 'read', [uid], ['roles_id'])[0]['roles_id'] - ok = ok and serv.execute_cr(cr, uid, 'res.roles', 'check', user_roles, transition['role_id']) + pool = pooler.get_pool(cr.dbname) + user_roles = pool.get('res.users').read(cr, uid, [uid], ['roles_id'])[0]['roles_id'] + ok = ok and pool.get('res.roles').check(cr, uid, user_roles, transition['role_id']) ok = ok and _eval_expr(cr, ident, workitem, transition['condition']) return ok diff --git a/bin/workflow/wkf_logs.py b/bin/workflow/wkf_logs.py index 0f34ebd9140..5ec8f40b027 100644 --- a/bin/workflow/wkf_logs.py +++ b/bin/workflow/wkf_logs.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/workflow/wkf_service.py b/bin/workflow/wkf_service.py index 1a7be33700c..fdc54910c33 100644 --- a/bin/workflow/wkf_service.py +++ b/bin/workflow/wkf_service.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/bin/workflow/workitem.py b/bin/workflow/workitem.py index ce54dffa1c0..fe098bdefb9 100644 --- a/bin/workflow/workitem.py +++ b/bin/workflow/workitem.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/doc/migrate/3.3.0-3.4.0/post.py b/doc/migrate/3.3.0-3.4.0/post.py index b1a4c68ba7f..52ee6c6c14b 100644 --- a/doc/migrate/3.3.0-3.4.0/post.py +++ b/doc/migrate/3.3.0-3.4.0/post.py @@ -1,7 +1,7 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# Copyright (c) 2004-2008 TINY SPRL. (http://tiny.be) All Rights Reserved. +# Copyright (c) 2004-2009 TINY SPRL. (http://tiny.be) All Rights Reserved. # # $Id$ # diff --git a/doc/migrate/3.3.0-3.4.0/pre.py b/doc/migrate/3.3.0-3.4.0/pre.py index 5168ef940c9..515593ce21a 100644 --- a/doc/migrate/3.3.0-3.4.0/pre.py +++ b/doc/migrate/3.3.0-3.4.0/pre.py @@ -1,7 +1,7 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# Copyright (c) 2004-2008 TINY SPRL. (http://tiny.be) All Rights Reserved. +# Copyright (c) 2004-2009 TINY SPRL. (http://tiny.be) All Rights Reserved. # # $Id$ # diff --git a/doc/migrate/3.4.0-4.0.0/post-tiny.py b/doc/migrate/3.4.0-4.0.0/post-tiny.py index 59835fb1956..710dee9a268 100644 --- a/doc/migrate/3.4.0-4.0.0/post-tiny.py +++ b/doc/migrate/3.4.0-4.0.0/post-tiny.py @@ -1,7 +1,7 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# Copyright (c) 2004-2008 TINY SPRL. (http://tiny.be) All Rights Reserved. +# Copyright (c) 2004-2009 TINY SPRL. (http://tiny.be) All Rights Reserved. # # $Id$ # diff --git a/doc/migrate/3.4.0-4.0.0/post.py b/doc/migrate/3.4.0-4.0.0/post.py index f8518810c44..912180b087f 100644 --- a/doc/migrate/3.4.0-4.0.0/post.py +++ b/doc/migrate/3.4.0-4.0.0/post.py @@ -1,7 +1,7 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# Copyright (c) 2004-2008 TINY SPRL. (http://tiny.be) All Rights Reserved. +# Copyright (c) 2004-2009 TINY SPRL. (http://tiny.be) All Rights Reserved. # # $Id$ # diff --git a/doc/migrate/3.4.0-4.0.0/pre-tiny.py b/doc/migrate/3.4.0-4.0.0/pre-tiny.py index e011d0b451b..9d4e64c2b1b 100644 --- a/doc/migrate/3.4.0-4.0.0/pre-tiny.py +++ b/doc/migrate/3.4.0-4.0.0/pre-tiny.py @@ -1,7 +1,7 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# Copyright (c) 2004-2008 TINY SPRL. (http://tiny.be) All Rights Reserved. +# Copyright (c) 2004-2009 TINY SPRL. (http://tiny.be) All Rights Reserved. # # $Id$ # diff --git a/doc/migrate/3.4.0-4.0.0/pre.py b/doc/migrate/3.4.0-4.0.0/pre.py index 8a520232e74..5f40deefc30 100644 --- a/doc/migrate/3.4.0-4.0.0/pre.py +++ b/doc/migrate/3.4.0-4.0.0/pre.py @@ -1,7 +1,7 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# Copyright (c) 2004-2008 TINY SPRL. (http://tiny.be) All Rights Reserved. +# Copyright (c) 2004-2009 TINY SPRL. (http://tiny.be) All Rights Reserved. # # $Id$ # diff --git a/doc/migrate/4.0.0-4.2.0/pre.py b/doc/migrate/4.0.0-4.2.0/pre.py index 06c6a2b9a68..8285578a266 100644 --- a/doc/migrate/4.0.0-4.2.0/pre.py +++ b/doc/migrate/4.0.0-4.2.0/pre.py @@ -1,7 +1,7 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# Copyright (c) 2004-2008 TINY SPRL. (http://tiny.be) All Rights Reserved. +# Copyright (c) 2004-2009 TINY SPRL. (http://tiny.be) All Rights Reserved. # # $Id$ # diff --git a/doc/migrate/4.0.0-4.2.0/tiny/pre-tiny.py b/doc/migrate/4.0.0-4.2.0/tiny/pre-tiny.py index 14163694001..aa3a63cb6ce 100644 --- a/doc/migrate/4.0.0-4.2.0/tiny/pre-tiny.py +++ b/doc/migrate/4.0.0-4.2.0/tiny/pre-tiny.py @@ -1,7 +1,7 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# Copyright (c) 2004-2008 TINY SPRL. (http://tiny.be) All Rights Reserved. +# Copyright (c) 2004-2009 TINY SPRL. (http://tiny.be) All Rights Reserved. # # $Id$ # diff --git a/doc/migrate/4.2.0-4.4.0/pre.py b/doc/migrate/4.2.0-4.4.0/pre.py index fe29d170eb4..5f02c96fdc0 100644 --- a/doc/migrate/4.2.0-4.4.0/pre.py +++ b/doc/migrate/4.2.0-4.4.0/pre.py @@ -1,7 +1,7 @@ # -*- encoding: utf-8 -*- ############################################################################## # -# Copyright (c) 2004-2008 TINY SPRL. (http://tiny.be) All Rights Reserved. +# Copyright (c) 2004-2009 TINY SPRL. (http://tiny.be) All Rights Reserved. # # $Id$ # diff --git a/doc/tests/check_profile_l10n_all.py b/doc/tests/check_profile_l10n_all.py index 83b59007d2f..f85ebfeb946 100644 --- a/doc/tests/check_profile_l10n_all.py +++ b/doc/tests/check_profile_l10n_all.py @@ -3,7 +3,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/setup.py b/setup.py index 525a3b2b25a..73d37cdf43f 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify @@ -140,7 +140,7 @@ options = { "lxml.objectify", "decimal", "xml", "xml.dom", "xml.xpath", "encodings","mx.DateTime","wizard","pychart","PIL", "pyparsing", "pydot","asyncore","asynchat", "reportlab", "vobject", - "HTMLParser", "OpenSSL", "select"], + "HTMLParser", "select"], "excludes" : ["Tkconstants","Tkinter","tcl"], } } diff --git a/win32/OpenERPServerService.py b/win32/OpenERPServerService.py index 7bf8aefb45f..8f5a0835d13 100644 --- a/win32/OpenERPServerService.py +++ b/win32/OpenERPServerService.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify diff --git a/win32/setup.py b/win32/setup.py index 29dee19520d..e6e1493d8d1 100644 --- a/win32/setup.py +++ b/win32/setup.py @@ -2,7 +2,7 @@ ############################################################################## # # OpenERP, Open Source Management Solution -# Copyright (C) 2004-2008 Tiny SPRL (). All Rights Reserved +# Copyright (C) 2004-2009 Tiny SPRL (). All Rights Reserved # $Id$ # # This program is free software: you can redistribute it and/or modify