From 1d5a2275c8146a0e629ce067fe88a67f16d07e00 Mon Sep 17 00:00:00 2001 From: Fabien Pinckaers Date: Fri, 31 Dec 2010 09:06:48 +0100 Subject: [PATCH 01/18] fix bzr revid: fp@tinyerp.com-20101231080648-816jqmjzbee006iv --- addons/product/product.py | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/addons/product/product.py b/addons/product/product.py index 7c0cf118ce2..eabd9494908 100644 --- a/addons/product/product.py +++ b/addons/product/product.py @@ -789,21 +789,3 @@ class pricelist_partnerinfo(osv.osv): _order = 'min_quantity asc' pricelist_partnerinfo() # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: - -class res_users(osv.osv): - _inherit = 'res.users' - def _get_group(self, cr, uid, context=None): - result = super(res_users, self)._get_group(cr, uid, context=context) - dataobj = self.pool.get('ir.model.data') - try: - dummy,group_id = dataobj.get_object_reference(cr, 1, 'product', 'group_product_manager') - result.append(group_id) - except ValueError: - # If these groups does not exists anymore - pass - return result - - _defaults = { - 'groups_id': _get_group, - } -res_users() From 30e88c6275b8457faa721d2a2d9aa5740d23d73e Mon Sep 17 00:00:00 2001 From: Fabien Pinckaers Date: Fri, 31 Dec 2010 09:21:26 +0100 Subject: [PATCH 02/18] [IMP] improve tax view for code invert bzr revid: fp@tinyerp.com-20101231082126-mba5mdfxicq2cxa2 --- addons/account/account_view.xml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/addons/account/account_view.xml b/addons/account/account_view.xml index 019baf8f145..23c2bb21b48 100644 --- a/addons/account/account_view.xml +++ b/addons/account/account_view.xml @@ -950,11 +950,11 @@ - - - - - + + + + + @@ -963,8 +963,11 @@ - - + + + + + From 2f3f2423dc3e7d9833136f1be2129d9b4376a087 Mon Sep 17 00:00:00 2001 From: "Sbh (OpenERP)" Date: Fri, 31 Dec 2010 16:50:50 +0530 Subject: [PATCH 03/18] [Fix] project_long_term:Fix translation bzr revid: sbh@tinyerp.com-20101231112050-uyx55826rtlsodya --- addons/project_long_term/i18n/de.po | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/project_long_term/i18n/de.po b/addons/project_long_term/i18n/de.po index d61ad1f0227..e23ed4afc0a 100644 --- a/addons/project_long_term/i18n/de.po +++ b/addons/project_long_term/i18n/de.po @@ -187,7 +187,7 @@ msgstr "Ende Datum" #. module: project_long_term #: help:project.phase,date_end:0 -msgid "It's computed by the scheduler according to the start date and the duration. +msgid "It's computed by the scheduler according to the start date and the duration." msgstr "Ende Datum d. Phase" #. module: project_long_term From db3ecb06499f378d9226420f5807fbb84b33128a Mon Sep 17 00:00:00 2001 From: "Harry (OpenERP)" Date: Fri, 31 Dec 2010 17:27:54 +0530 Subject: [PATCH 04/18] [FIX] project_long_term: fix bzr revid: hmo@tinyerp.com-20101231115754-f4gvpijitxqme15j --- addons/project_long_term/project_long_term.py | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/addons/project_long_term/project_long_term.py b/addons/project_long_term/project_long_term.py index c8dbcdf0dcd..45d75b16b05 100644 --- a/addons/project_long_term/project_long_term.py +++ b/addons/project_long_term/project_long_term.py @@ -19,7 +19,7 @@ # ############################################################################## -from datetime import datetime +from datetime import datetime, timedelta from dateutil.relativedelta import relativedelta from tools.translate import _ from osv import fields, osv @@ -246,8 +246,10 @@ class project_phase(osv.osv): if not start_date: start_date = phase.project_id.date_start or phase.date_start or datetime.now().strftime("%Y-%m-%d") start_date = datetime.strftime((datetime.strptime(start_date, "%Y-%m-%d")), "%Y-%m-%d") - phase_resource_obj = resource_pool.generate_resources(cr, uid, [phase.responsible_id.id], calendar_id, context=context) + phase_resource_obj = self.generate_resources(cr, uid, [phase.id], context=context)[phase.id] avg_days = uom_pool._compute_qty(cr, uid, phase.product_uom.id, phase.duration, day_uom_id) + if not phase_resource_obj: #TOCHECK: why need this ? + avg_days = avg_days - 1 duration = str(avg_days) + 'd' # Create a new project for each phase def Project(): @@ -295,10 +297,10 @@ class project_phase(osv.osv): 'date_end': end_date.strftime('%Y-%m-%d') }, context=ctx) # Recursive call till all the next phases scheduled - for phase in phase.next_phase_ids: - if phase.state in ['draft', 'open', 'pending']: - id_cal = phase.project_id.resource_calendar_id and phase.project_id.resource_calendar_id.id or False - self.generate_schedule(cr, uid, [phase.id], date_start, id_cal, context=context) + for next_phase in phase.next_phase_ids: + if next_phase.state in ['draft', 'open', 'pending']: + id_cal = next_phase.project_id.resource_calendar_id and next_phase.project_id.resource_calendar_id.id or False + self.generate_schedule(cr, uid, [next_phase.id], date_start+timedelta(days=1), id_cal, context=context) else: continue return True From 9b33bc24cc799c3ffa604dc2eea94791f8cb61aa Mon Sep 17 00:00:00 2001 From: Fabien Pinckaers Date: Fri, 31 Dec 2010 15:12:42 +0100 Subject: [PATCH 05/18] [FIX] mrp/stock bzr revid: fp@tinyerp.com-20101231141242-c0wnddie6fsoav9p --- addons/mrp/mrp.py | 8 ++++- addons/mrp/stock.py | 7 ----- addons/mrp_operations/test/mrp_operations.yml | 6 ++-- addons/stock/stock.py | 31 ++++++------------- 4 files changed, 19 insertions(+), 33 deletions(-) diff --git a/addons/mrp/mrp.py b/addons/mrp/mrp.py index 3850ab33822..a57b76bf2ce 100644 --- a/addons/mrp/mrp.py +++ b/addons/mrp/mrp.py @@ -664,6 +664,8 @@ class mrp_production(osv.osv): """ stock_mov_obj = self.pool.get('stock.move') production = self.browse(cr, uid, production_id, context=context) + + final_product_todo = [] produced_qty = 0 if production_mode == 'consume_produce': @@ -704,7 +706,11 @@ class mrp_production(osv.osv): stock_mov_obj.action_consume(cr, uid, [raw_product.id], consumed_qty, production.location_src_id.id, context=context) if production_mode == 'consume_produce': - + # To produce remaining qty of final product + vals = {'state':'confirmed'} + final_product_todo = [x.id for x in production.move_created_ids] + #stock_mov_obj.write(cr, uid, final_product_todo, vals) + stock_mov_obj.action_confirm(cr, uid, final_product_todo, context) produced_products = {} for produced_product in production.move_created_ids2: if produced_product.scrapped: diff --git a/addons/mrp/stock.py b/addons/mrp/stock.py index f8fad71fc58..8758bc09cd5 100644 --- a/addons/mrp/stock.py +++ b/addons/mrp/stock.py @@ -140,13 +140,6 @@ class StockMove(osv.osv): res.append(new_move) return {} - def trigger_move_state(self, cr, uid, move, state, context=None): - new_moves = super(StockMove, self).trigger_move_state(cr, uid, move, state, context=context) - if state == 'confirm': - new_moves =[x.id for x in new_moves] - self.write(cr, uid, new_moves, {'production_id': False}, context=context) - return new_moves - StockMove() diff --git a/addons/mrp_operations/test/mrp_operations.yml b/addons/mrp_operations/test/mrp_operations.yml index 299269cbb44..afa3fa55d74 100644 --- a/addons/mrp_operations/test/mrp_operations.yml +++ b/addons/mrp_operations/test/mrp_operations.yml @@ -13,10 +13,10 @@ product_id: product.product_product_pc1 product_qty: 5.0 product_uom: product.product_uom_unit - product_uos_qty: 0.0 -- + product_uos_qty: 5.0 +- I am computing the data. -- +- !python {model: mrp.production}: | self.action_compute(cr, uid, [ref("mrp_production_mo0")], {"lang": "en_US", "tz": False, "search_default_current": 1, "active_model": "ir.ui.menu", "active_ids": diff --git a/addons/stock/stock.py b/addons/stock/stock.py index fd041989d93..97d5f9a0270 100644 --- a/addons/stock/stock.py +++ b/addons/stock/stock.py @@ -1787,7 +1787,6 @@ class stock_move(osv.osv): 'date': picking.date, }) return pick_id - def action_confirm(self, cr, uid, ids, context=None): """ Confirms stock move. @return: List of ids. @@ -1837,10 +1836,9 @@ class stock_move(osv.osv): if pickid: wf_service.trg_validate(uid, 'stock.picking', pickid, 'button_confirm', cr) if new_moves: - new_moves += create_chained_picking(self, cr, uid, new_moves, context) - return new_moves - all_moves = create_chained_picking(self, cr, uid, moves, context) - return all_moves + create_chained_picking(self, cr, uid, new_moves, context) + create_chained_picking(self, cr, uid, moves, context) + return [] def action_assign(self, cr, uid, ids, *args): """ Changes state to confirmed or waiting. @@ -2080,6 +2078,7 @@ class stock_move(osv.osv): todo = [] for move in self.browse(cr, uid, ids, context=context): + #print 'DONE MOVE', move.id, move.product_id.name, move.move_dest_id.id, move.state, move.move_dest_id and move.move_dest_id.state if move.state=="draft": todo.append(move.id) if todo: @@ -2093,9 +2092,10 @@ class stock_move(osv.osv): if move.picking_id: picking_ids.append(move.picking_id.id) if move.move_dest_id.id and (move.state != 'done'): - self.write(cr, uid, [move.id], {'stock_move_history_ids': [(4, move.move_dest_id.id)]}, context=context) + self.write(cr, uid, [move.id], {'move_history_ids': [(4, move.move_dest_id.id)]}) + #cr.execute('insert into stock_move_history_ids (parent_id,child_id) values (%s,%s)', (move.id, move.move_dest_id.id)) if move.move_dest_id.state in ('waiting', 'confirmed'): - self.action_assign(cr, uid, [move.move_dest_id.id]) + self.force_assign(cr, uid, [move.move_dest_id.id], context=context) if move.move_dest_id.picking_id: wf_service.trg_write(uid, 'stock.picking', move.move_dest_id.picking_id.id, cr) if move.move_dest_id.auto_validate: @@ -2281,18 +2281,7 @@ class stock_move(osv.osv): self.write(cr, uid, [current_move], update_val) return res - def trigger_move_state(self, cr, uid, move, state, context=None): - if isinstance(move, (int, long)): - move = [move] - res = [] - if state == 'confirm': - res = self.action_confirm(cr, uid, move, context=context) - if state == 'assigned': - self.check_assign(cr, uid, move, context=context) - self.force_assign(cr, uid, move, context=context) - return res - - def action_consume(self, cr, uid, ids, quantity, location_id=False, context=None): + def action_consume(self, cr, uid, ids, quantity, location_id=False, context=None): """ Consumed product with specific quatity from specific source location @param cr: the database cursor @param uid: the user id @@ -2320,12 +2309,12 @@ class stock_move(osv.osv): quantity = move.product_qty uos_qty = quantity / move_qty * move.product_uos_qty - state = (move.state in ('confirm', 'assign') and move.state) or 'confirm' if quantity_rest > 0: default_val = { 'product_qty': quantity, 'product_uos_qty': uos_qty, + 'state': move.state, 'location_id': location_id or move.location_id.id, } if (not move.prodlot_id.id) and (move.product_id.track_production and location_id): @@ -2358,8 +2347,6 @@ class stock_move(osv.osv): for (id, name) in product_obj.name_get(cr, uid, [new_move.product_id.id]): message = _('Product ') + " '" + name + "' "+ _("is consumed with") + " '" + str(new_move.product_qty) + "' "+ _("quantity.") self.log(cr, uid, new_move.id, message) - - self.trigger_move_state(cr, uid, res, state, context=context) self.action_done(cr, uid, res) return res From 926a29f7fd981cf6142362b210f571a0af12d076 Mon Sep 17 00:00:00 2001 From: "P. Christeas" Date: Fri, 31 Dec 2010 21:34:00 +0200 Subject: [PATCH 06/18] hr_payroll: fix payroll-register report, after last patch when introducing the "dp='Account'" argument, the first "o" argument to get_xx() was falsely removed. bzr revid: p_christ@hol.gr-20101231193400-pjz3zxikt4o68ph4 --- addons/hr_payroll/report/payroll_register.rml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/addons/hr_payroll/report/payroll_register.rml b/addons/hr_payroll/report/payroll_register.rml index 4dd2900171a..3fecf454aa1 100644 --- a/addons/hr_payroll/report/payroll_register.rml +++ b/addons/hr_payroll/report/payroll_register.rml @@ -206,22 +206,22 @@ Total Salary - [[formatLang(get_basic(), dp='Account')]][[ company.currency_id.symbol]] + [[formatLang(get_basic(o), dp='Account')]][[ company.currency_id.symbol]] - [[formatLang(get_other(), dp='Account')]] [[ company.currency_id.symbol]] + [[formatLang(get_other(o), dp='Account')]] [[ company.currency_id.symbol]] - [[formatLang(get_allow(), dp='Account')]] [[ company.currency_id.symbol]] + [[formatLang(get_allow(o), dp='Account')]] [[ company.currency_id.symbol]] - [[formatLang(get_grows(), dp='Account')]] [[ company.currency_id.symbol]] + [[formatLang(get_grows(o), dp='Account')]] [[ company.currency_id.symbol]] - [[formatLang(get_deduct(), dp='Account')]] [[ company.currency_id.symbol]] + [[formatLang(get_deduct(o), dp='Account')]] [[ company.currency_id.symbol]] - [[formatLang(get_net(), dp='Account')]] [[ company.currency_id.symbol]] + [[formatLang(get_net(o), dp='Account')]] [[ company.currency_id.symbol]] From fa901453c35f6f8aea070639aa07accda88af0fe Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Sun, 2 Jan 2011 05:00:17 +0000 Subject: [PATCH 07/18] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20101231052227-rbby2m5910zai1xz bzr revid: launchpad_translations_on_behalf_of_openerp-20110101050018-ofwsz46r2e77f3wm bzr revid: launchpad_translations_on_behalf_of_openerp-20110102050017-hq4lz27tt321mirx --- bin/addons/base/i18n/af.po | 685 ++++-- bin/addons/base/i18n/am.po | 685 ++++-- bin/addons/base/i18n/ar.po | 685 ++++-- bin/addons/base/i18n/bg.po | 713 ++++-- bin/addons/base/i18n/bs.po | 691 ++++-- bin/addons/base/i18n/ca.po | 765 +++++-- bin/addons/base/i18n/cs.po | 687 ++++-- bin/addons/base/i18n/da.po | 687 ++++-- bin/addons/base/i18n/de.po | 921 +++++--- bin/addons/base/i18n/el.po | 812 ++++--- bin/addons/base/i18n/en_GB.po | 716 ++++-- bin/addons/base/i18n/es.po | 829 ++++--- bin/addons/base/i18n/es_EC.po | 852 ++++--- bin/addons/base/i18n/et.po | 713 ++++-- bin/addons/base/i18n/eu.po | 685 ++++-- bin/addons/base/i18n/fa.po | 717 ++++-- bin/addons/base/i18n/fi.po | 842 ++++--- bin/addons/base/i18n/fr.po | 970 +++++--- bin/addons/base/i18n/gl.po | 717 ++++-- bin/addons/base/i18n/he.po | 793 +++++-- bin/addons/base/i18n/hr.po | 711 ++++-- bin/addons/base/i18n/hu.po | 3583 ++++++++++++++++++------------ bin/addons/base/i18n/id.po | 691 ++++-- bin/addons/base/i18n/is.po | 685 ++++-- bin/addons/base/i18n/it.po | 760 +++++-- bin/addons/base/i18n/ja.po | 689 ++++-- bin/addons/base/i18n/ko.po | 785 +++++-- bin/addons/base/i18n/lt.po | 685 ++++-- bin/addons/base/i18n/lv.po | 815 ++++--- bin/addons/base/i18n/mn.po | 760 +++++-- bin/addons/base/i18n/nb.po | 687 ++++-- bin/addons/base/i18n/nl.po | 768 +++++-- bin/addons/base/i18n/pl.po | 794 +++++-- bin/addons/base/i18n/pt.po | 723 ++++-- bin/addons/base/i18n/pt_BR.po | 750 +++++-- bin/addons/base/i18n/ro.po | 720 ++++-- bin/addons/base/i18n/ru.po | 717 ++++-- bin/addons/base/i18n/sk.po | 743 +++++-- bin/addons/base/i18n/sl.po | 779 +++++-- bin/addons/base/i18n/sq.po | 685 ++++-- bin/addons/base/i18n/sr.po | 807 ++++--- bin/addons/base/i18n/sr@latin.po | 685 ++++-- bin/addons/base/i18n/sv.po | 749 +++++-- bin/addons/base/i18n/th.po | 685 ++++-- bin/addons/base/i18n/tlh.po | 685 ++++-- bin/addons/base/i18n/tr.po | 723 ++++-- bin/addons/base/i18n/uk.po | 789 +++++-- bin/addons/base/i18n/vi.po | 722 ++++-- bin/addons/base/i18n/zh_CN.po | 851 ++++--- bin/addons/base/i18n/zh_TW.po | 703 ++++-- 50 files changed, 29242 insertions(+), 10852 deletions(-) diff --git a/bin/addons/base/i18n/af.po b/bin/addons/base/i18n/af.po index bd04b6338c2..f8e186f9333 100644 --- a/bin/addons/base/i18n/af.po +++ b/bin/addons/base/i18n/af.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-11-21 07:32+0000\n" "Last-Translator: Jacobus Erasmus \n" "Language-Team: Afrikaans \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:51+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:13+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -41,6 +41,14 @@ msgstr "Ander Konfigurasie" msgid "DateTime" msgstr "DagTyd" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -53,12 +61,6 @@ msgstr "Metadata" msgid "View Architecture" msgstr "Kyk na argitektuur" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -109,6 +111,14 @@ msgstr "" msgid "Created Views" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -125,10 +135,9 @@ msgid "South Korea" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" msgstr "" #. module: base @@ -141,13 +150,20 @@ msgstr "" msgid "Swaziland" msgstr "" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -176,13 +192,13 @@ msgid "Search Partner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "" @@ -213,7 +229,7 @@ msgid "Contact Name" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -235,6 +251,12 @@ msgstr "" msgid "Wizard Name" msgstr "" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -267,7 +289,6 @@ msgstr "" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -318,7 +339,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -340,11 +361,6 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -352,6 +368,12 @@ msgid "" "name, it returns the previous report." msgstr "" +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -378,6 +400,12 @@ msgstr "" msgid "Schedule Upgrade" msgstr "" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -419,7 +447,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -666,6 +694,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -730,6 +764,14 @@ msgstr "" msgid "Type" msgstr "" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -756,6 +798,19 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -860,6 +915,16 @@ msgstr "" msgid "Search" msgstr "" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -915,13 +980,13 @@ msgid "ir.exports" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -952,6 +1017,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -999,7 +1070,7 @@ msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1100,12 +1171,6 @@ msgstr "" 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 #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1145,8 +1210,8 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr "" @@ -1224,7 +1289,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1235,7 +1300,8 @@ msgid "Malawi" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1284,7 +1350,6 @@ msgstr "" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1311,6 +1376,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1362,7 +1433,7 @@ msgid "Bahamas" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1383,6 +1454,12 @@ msgstr "" msgid "Number of modules updated" msgstr "" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1458,6 +1535,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1527,7 +1610,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1612,12 +1695,6 @@ msgstr "" msgid "French (BE) / Français (BE)" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1688,6 +1765,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1698,13 +1781,19 @@ msgstr "" msgid "Slovenia" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1734,6 +1823,14 @@ msgstr "" msgid "New Zealand" msgstr "" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1783,19 +1880,13 @@ msgstr "" msgid "Valid" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "" @@ -1906,6 +1997,15 @@ msgstr "" msgid "HR sector" msgstr "" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1959,6 +2059,11 @@ msgstr "" msgid "Main Company" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2045,8 +2150,9 @@ msgid "Sir" msgstr "" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2145,7 +2251,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2169,6 +2275,12 @@ msgstr "" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2189,7 +2301,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "" @@ -2214,6 +2332,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2266,11 +2389,6 @@ msgstr "" msgid "VAT" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2307,20 +2425,28 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" " %s" msgstr "" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2396,6 +2522,12 @@ msgstr "" msgid "EAN13" msgstr "" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2453,7 +2585,7 @@ msgid "Ecuador" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2519,7 +2651,7 @@ msgid "Action to Trigger" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2714,18 +2846,13 @@ msgstr "" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2771,7 +2898,7 @@ msgid "Rules" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2839,7 +2966,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -2869,6 +2996,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2900,7 +3033,7 @@ msgid "Benin" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2930,6 +3063,14 @@ msgstr "" msgid "API ID" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3175,6 +3316,12 @@ msgstr "" msgid "Nicaragua" msgstr "" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3453,7 +3600,8 @@ msgid "Bank Type" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "" @@ -3475,7 +3623,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3493,7 +3641,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3525,7 +3673,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3600,6 +3750,11 @@ msgstr "" msgid "Cape Verde" msgstr "" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3613,6 +3768,12 @@ msgstr "" msgid "ir.actions.url" msgstr "" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3646,8 +3807,9 @@ msgid "French / Français" msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" msgstr "" #. module: base @@ -3898,6 +4060,14 @@ msgstr "" msgid "ir.attachment" msgstr "" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3936,8 +4106,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -3967,11 +4137,8 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" msgstr "" #. module: base @@ -4080,6 +4247,18 @@ msgstr "" msgid "Signature" msgstr "" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4101,7 +4280,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4142,8 +4321,10 @@ msgid "Contacts" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" msgstr "" #. module: base @@ -4173,6 +4354,12 @@ msgstr "" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4217,14 +4404,8 @@ msgid "Mongolia" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -4339,11 +4520,6 @@ msgstr "" msgid "Password" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4443,7 +4619,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4511,7 +4687,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4589,7 +4765,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4662,7 +4844,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4710,6 +4892,11 @@ msgstr "" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4824,6 +5011,14 @@ msgstr "" msgid "Nepal" msgstr "" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4853,14 +5048,14 @@ msgid "Update Modules List" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4879,6 +5074,12 @@ msgstr "" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5009,6 +5210,13 @@ msgstr "" msgid "Iteration" msgstr "" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5047,7 +5255,12 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "" @@ -5058,7 +5271,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5068,6 +5281,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5185,7 +5404,7 @@ msgid "ir.actions.todo" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5259,17 +5478,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5278,7 +5503,7 @@ msgid "Python Code" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "" @@ -5397,7 +5622,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5436,7 +5661,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5648,7 +5873,7 @@ msgid "Afghanistan, Islamic State of" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "" @@ -5669,6 +5894,12 @@ msgstr "" msgid "Kind" msgstr "" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5924,6 +6155,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5933,11 +6172,6 @@ msgstr "" msgid "Address" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6016,7 +6250,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6100,7 +6334,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6121,11 +6355,19 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6172,6 +6414,14 @@ msgstr "" msgid "Home Action" msgstr "" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6200,10 +6450,9 @@ msgid "Stop All" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6254,7 +6503,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6312,7 +6561,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6364,7 +6613,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6445,7 +6694,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6483,6 +6739,12 @@ msgstr "" msgid "Arguments" msgstr "" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6493,14 +6755,29 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" msgstr "" #. module: base @@ -6606,7 +6883,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6657,6 +6934,15 @@ msgstr "" msgid "Object" msgstr "" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6692,7 +6978,7 @@ msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6833,7 +7119,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6889,7 +7175,7 @@ msgid "Action Type" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -6992,11 +7278,23 @@ msgstr "" msgid "workflow.instance" msgstr "" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7171,6 +7469,11 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7308,7 +7611,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7506,7 +7809,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7550,6 +7853,14 @@ msgstr "" msgid "Antigua and Barbuda" msgstr "" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7608,7 +7919,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7618,6 +7929,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7674,6 +7990,35 @@ msgstr "" msgid "Turkmenistan" msgstr "" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7802,7 +8147,7 @@ msgid "Internal Header/Footer" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7841,6 +8186,14 @@ msgstr "" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7864,7 +8217,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7911,11 +8264,18 @@ msgid "Low" msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7924,7 +8284,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8078,7 +8438,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8090,6 +8450,11 @@ msgstr "" msgid "Resource" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8101,7 +8466,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8113,6 +8478,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8237,7 +8610,7 @@ msgid "Azerbaijan" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "" @@ -8264,8 +8637,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" msgstr "" #. module: base @@ -8564,7 +8937,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8624,7 +8997,7 @@ msgid "Workflow Instances" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "" diff --git a/bin/addons/base/i18n/am.po b/bin/addons/base/i18n/am.po index 4c91161d3ca..22f728b7930 100644 --- a/bin/addons/base/i18n/am.po +++ b/bin/addons/base/i18n/am.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-03-06 13:40+0000\n" "Last-Translator: FULL NAME \n" "Language-Team: Amharic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:52+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:13+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -41,6 +41,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -53,12 +61,6 @@ msgstr "" msgid "View Architecture" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -109,6 +111,14 @@ msgstr "" msgid "Created Views" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -125,10 +135,9 @@ msgid "South Korea" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" msgstr "" #. module: base @@ -141,13 +150,20 @@ msgstr "" msgid "Swaziland" msgstr "" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -176,13 +192,13 @@ msgid "Search Partner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "" @@ -213,7 +229,7 @@ msgid "Contact Name" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -235,6 +251,12 @@ msgstr "" msgid "Wizard Name" msgstr "" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -267,7 +289,6 @@ msgstr "" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -318,7 +339,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -340,11 +361,6 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -352,6 +368,12 @@ msgid "" "name, it returns the previous report." msgstr "" +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -378,6 +400,12 @@ msgstr "" msgid "Schedule Upgrade" msgstr "" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -419,7 +447,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -666,6 +694,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -730,6 +764,14 @@ msgstr "" msgid "Type" msgstr "" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -756,6 +798,19 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -860,6 +915,16 @@ msgstr "" msgid "Search" msgstr "" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -915,13 +980,13 @@ msgid "ir.exports" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -952,6 +1017,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -999,7 +1070,7 @@ msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1100,12 +1171,6 @@ msgstr "" 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 #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1145,8 +1210,8 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr "" @@ -1224,7 +1289,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1235,7 +1300,8 @@ msgid "Malawi" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1284,7 +1350,6 @@ msgstr "" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1311,6 +1376,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1362,7 +1433,7 @@ msgid "Bahamas" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1383,6 +1454,12 @@ msgstr "" msgid "Number of modules updated" msgstr "" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1458,6 +1535,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1527,7 +1610,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1612,12 +1695,6 @@ msgstr "" msgid "French (BE) / Français (BE)" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1688,6 +1765,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1698,13 +1781,19 @@ msgstr "" msgid "Slovenia" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1734,6 +1823,14 @@ msgstr "" msgid "New Zealand" msgstr "" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1783,19 +1880,13 @@ msgstr "" msgid "Valid" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "" @@ -1906,6 +1997,15 @@ msgstr "" msgid "HR sector" msgstr "" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1959,6 +2059,11 @@ msgstr "" msgid "Main Company" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2045,8 +2150,9 @@ msgid "Sir" msgstr "" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2145,7 +2251,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2169,6 +2275,12 @@ msgstr "" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2189,7 +2301,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "" @@ -2214,6 +2332,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2266,11 +2389,6 @@ msgstr "" msgid "VAT" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2307,20 +2425,28 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" " %s" msgstr "" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2396,6 +2522,12 @@ msgstr "" msgid "EAN13" msgstr "" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2453,7 +2585,7 @@ msgid "Ecuador" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2519,7 +2651,7 @@ msgid "Action to Trigger" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2714,18 +2846,13 @@ msgstr "" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2771,7 +2898,7 @@ msgid "Rules" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2839,7 +2966,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -2869,6 +2996,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2900,7 +3033,7 @@ msgid "Benin" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2930,6 +3063,14 @@ msgstr "" msgid "API ID" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3175,6 +3316,12 @@ msgstr "" msgid "Nicaragua" msgstr "" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3453,7 +3600,8 @@ msgid "Bank Type" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "" @@ -3475,7 +3623,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3493,7 +3641,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3525,7 +3673,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3600,6 +3750,11 @@ msgstr "" msgid "Cape Verde" msgstr "" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3613,6 +3768,12 @@ msgstr "" msgid "ir.actions.url" msgstr "" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3646,8 +3807,9 @@ msgid "French / Français" msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" msgstr "" #. module: base @@ -3898,6 +4060,14 @@ msgstr "" msgid "ir.attachment" msgstr "" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3936,8 +4106,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -3967,11 +4137,8 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" msgstr "" #. module: base @@ -4080,6 +4247,18 @@ msgstr "" msgid "Signature" msgstr "" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4101,7 +4280,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4142,8 +4321,10 @@ msgid "Contacts" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" msgstr "" #. module: base @@ -4173,6 +4354,12 @@ msgstr "" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4217,14 +4404,8 @@ msgid "Mongolia" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -4339,11 +4520,6 @@ msgstr "" msgid "Password" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4443,7 +4619,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4511,7 +4687,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4589,7 +4765,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4662,7 +4844,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4710,6 +4892,11 @@ msgstr "" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4824,6 +5011,14 @@ msgstr "" msgid "Nepal" msgstr "" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4853,14 +5048,14 @@ msgid "Update Modules List" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4879,6 +5074,12 @@ msgstr "" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5009,6 +5210,13 @@ msgstr "" msgid "Iteration" msgstr "" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5047,7 +5255,12 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "" @@ -5058,7 +5271,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5068,6 +5281,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5185,7 +5404,7 @@ msgid "ir.actions.todo" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5259,17 +5478,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5278,7 +5503,7 @@ msgid "Python Code" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "" @@ -5397,7 +5622,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5436,7 +5661,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5648,7 +5873,7 @@ msgid "Afghanistan, Islamic State of" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "" @@ -5669,6 +5894,12 @@ msgstr "" msgid "Kind" msgstr "" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5924,6 +6155,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5933,11 +6172,6 @@ msgstr "" msgid "Address" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6016,7 +6250,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6100,7 +6334,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6121,11 +6355,19 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6172,6 +6414,14 @@ msgstr "" msgid "Home Action" msgstr "" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6200,10 +6450,9 @@ msgid "Stop All" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6254,7 +6503,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6312,7 +6561,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6364,7 +6613,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6445,7 +6694,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6483,6 +6739,12 @@ msgstr "" msgid "Arguments" msgstr "" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6493,14 +6755,29 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" msgstr "" #. module: base @@ -6606,7 +6883,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6657,6 +6934,15 @@ msgstr "" msgid "Object" msgstr "" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6692,7 +6978,7 @@ msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6833,7 +7119,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6889,7 +7175,7 @@ msgid "Action Type" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -6992,11 +7278,23 @@ msgstr "" msgid "workflow.instance" msgstr "" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7171,6 +7469,11 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7308,7 +7611,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7506,7 +7809,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7550,6 +7853,14 @@ msgstr "" msgid "Antigua and Barbuda" msgstr "" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7608,7 +7919,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7618,6 +7929,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7674,6 +7990,35 @@ msgstr "" msgid "Turkmenistan" msgstr "" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7802,7 +8147,7 @@ msgid "Internal Header/Footer" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7841,6 +8186,14 @@ msgstr "" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7864,7 +8217,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7911,11 +8264,18 @@ msgid "Low" msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7924,7 +8284,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8078,7 +8438,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8090,6 +8450,11 @@ msgstr "" msgid "Resource" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8101,7 +8466,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8113,6 +8478,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8237,7 +8610,7 @@ msgid "Azerbaijan" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "" @@ -8264,8 +8637,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" msgstr "" #. module: base @@ -8564,7 +8937,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8624,7 +8997,7 @@ msgid "Workflow Instances" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "" diff --git a/bin/addons/base/i18n/ar.po b/bin/addons/base/i18n/ar.po index 4f8cea437a4..840850c60f6 100644 --- a/bin/addons/base/i18n/ar.po +++ b/bin/addons/base/i18n/ar.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2009-11-30 07:54+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:52+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:14+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +60,6 @@ msgstr "الفوقية" msgid "View Architecture" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +110,14 @@ msgstr "" msgid "Created Views" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,10 +134,9 @@ msgid "South Korea" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" msgstr "" #. module: base @@ -140,13 +149,20 @@ msgstr "" msgid "Swaziland" msgstr "" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -175,13 +191,13 @@ msgid "Search Partner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "جديد" @@ -212,7 +228,7 @@ msgid "Contact Name" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -234,6 +250,12 @@ msgstr "نشط" msgid "Wizard Name" msgstr "" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -266,7 +288,6 @@ msgstr "" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -317,7 +338,7 @@ msgid "Netherlands Antilles" msgstr "جزر الأنتيل الهولندية" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -339,11 +360,6 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "البوسنية/ bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -351,6 +367,12 @@ msgid "" "name, it returns the previous report." msgstr "" +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -377,6 +399,12 @@ msgstr "كولومبيا" msgid "Schedule Upgrade" msgstr "" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -418,7 +446,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -665,6 +693,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -729,6 +763,14 @@ msgstr "" msgid "Type" msgstr "" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -755,6 +797,19 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -859,6 +914,16 @@ msgstr "" msgid "Search" msgstr "" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -914,13 +979,13 @@ msgid "ir.exports" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -951,6 +1016,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -998,7 +1069,7 @@ msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1099,12 +1170,6 @@ msgstr "" 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 #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1144,8 +1209,8 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr "" @@ -1223,7 +1288,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1234,7 +1299,8 @@ msgid "Malawi" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1283,7 +1349,6 @@ msgstr "" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1310,6 +1375,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1361,7 +1432,7 @@ msgid "Bahamas" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1382,6 +1453,12 @@ msgstr "" msgid "Number of modules updated" msgstr "" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1457,6 +1534,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1526,7 +1609,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1611,12 +1694,6 @@ msgstr "" msgid "French (BE) / Français (BE)" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1687,6 +1764,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1697,13 +1780,19 @@ msgstr "" msgid "Slovenia" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1733,6 +1822,14 @@ msgstr "" msgid "New Zealand" msgstr "" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1782,19 +1879,13 @@ msgstr "" msgid "Valid" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "" @@ -1905,6 +1996,15 @@ msgstr "" msgid "HR sector" msgstr "" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1958,6 +2058,11 @@ msgstr "" msgid "Main Company" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2044,8 +2149,9 @@ msgid "Sir" msgstr "" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2144,7 +2250,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2168,6 +2274,12 @@ msgstr "" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2188,7 +2300,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "" @@ -2213,6 +2331,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2265,11 +2388,6 @@ msgstr "" msgid "VAT" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2306,20 +2424,28 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" " %s" msgstr "" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2395,6 +2521,12 @@ msgstr "" msgid "EAN13" msgstr "" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2452,7 +2584,7 @@ msgid "Ecuador" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2518,7 +2650,7 @@ msgid "Action to Trigger" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2713,18 +2845,13 @@ msgstr "" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2770,7 +2897,7 @@ msgid "Rules" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2838,7 +2965,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -2868,6 +2995,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2899,7 +3032,7 @@ msgid "Benin" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2929,6 +3062,14 @@ msgstr "" msgid "API ID" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3174,6 +3315,12 @@ msgstr "" msgid "Nicaragua" msgstr "" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3452,7 +3599,8 @@ msgid "Bank Type" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "" @@ -3474,7 +3622,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3492,7 +3640,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3524,7 +3672,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3599,6 +3749,11 @@ msgstr "" msgid "Cape Verde" msgstr "" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3612,6 +3767,12 @@ msgstr "" msgid "ir.actions.url" msgstr "" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3645,8 +3806,9 @@ msgid "French / Français" msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" msgstr "" #. module: base @@ -3897,6 +4059,14 @@ msgstr "" msgid "ir.attachment" msgstr "" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3935,8 +4105,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -3966,11 +4136,8 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" msgstr "" #. module: base @@ -4079,6 +4246,18 @@ msgstr "" msgid "Signature" msgstr "" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4100,7 +4279,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4141,8 +4320,10 @@ msgid "Contacts" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" msgstr "" #. module: base @@ -4172,6 +4353,12 @@ msgstr "" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4216,14 +4403,8 @@ msgid "Mongolia" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -4338,11 +4519,6 @@ msgstr "" msgid "Password" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4442,7 +4618,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4510,7 +4686,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4588,7 +4764,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4661,7 +4843,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4709,6 +4891,11 @@ msgstr "" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4823,6 +5010,14 @@ msgstr "" msgid "Nepal" msgstr "" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4852,14 +5047,14 @@ msgid "Update Modules List" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4878,6 +5073,12 @@ msgstr "" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5008,6 +5209,13 @@ msgstr "" msgid "Iteration" msgstr "" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5046,7 +5254,12 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "" @@ -5057,7 +5270,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5067,6 +5280,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5184,7 +5403,7 @@ msgid "ir.actions.todo" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5258,17 +5477,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5277,7 +5502,7 @@ msgid "Python Code" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "" @@ -5396,7 +5621,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5435,7 +5660,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5647,7 +5872,7 @@ msgid "Afghanistan, Islamic State of" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "" @@ -5668,6 +5893,12 @@ msgstr "" msgid "Kind" msgstr "" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5923,6 +6154,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5932,11 +6171,6 @@ msgstr "" msgid "Address" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6015,7 +6249,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6099,7 +6333,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6120,11 +6354,19 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6171,6 +6413,14 @@ msgstr "" msgid "Home Action" msgstr "" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6199,10 +6449,9 @@ msgid "Stop All" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6253,7 +6502,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6311,7 +6560,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6363,7 +6612,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6444,7 +6693,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6482,6 +6738,12 @@ msgstr "" msgid "Arguments" msgstr "" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6492,14 +6754,29 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" msgstr "" #. module: base @@ -6605,7 +6882,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6656,6 +6933,15 @@ msgstr "" msgid "Object" msgstr "" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6691,7 +6977,7 @@ msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6832,7 +7118,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6888,7 +7174,7 @@ msgid "Action Type" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -6991,11 +7277,23 @@ msgstr "" msgid "workflow.instance" msgstr "" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7170,6 +7468,11 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7307,7 +7610,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7505,7 +7808,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7549,6 +7852,14 @@ msgstr "" msgid "Antigua and Barbuda" msgstr "" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7607,7 +7918,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7617,6 +7928,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7673,6 +7989,35 @@ msgstr "" msgid "Turkmenistan" msgstr "" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7801,7 +8146,7 @@ msgid "Internal Header/Footer" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7840,6 +8185,14 @@ msgstr "" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7863,7 +8216,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7910,11 +8263,18 @@ msgid "Low" msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7923,7 +8283,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8077,7 +8437,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8089,6 +8449,11 @@ msgstr "" msgid "Resource" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8100,7 +8465,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8112,6 +8477,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8236,7 +8609,7 @@ msgid "Azerbaijan" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "" @@ -8263,8 +8636,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" msgstr "" #. module: base @@ -8563,7 +8936,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8623,7 +8996,7 @@ msgid "Workflow Instances" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "" diff --git a/bin/addons/base/i18n/bg.po b/bin/addons/base/i18n/bg.po index c602009262d..6c80152c6b8 100644 --- a/bin/addons/base/i18n/bg.po +++ b/bin/addons/base/i18n/bg.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-16 08:59+0000\n" "Last-Translator: Boris \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:52+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:14+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +60,6 @@ msgstr "Метаданни" msgid "View Architecture" msgstr "Преглед на архитектурата" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Не може да създадете този вид документ! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +110,14 @@ msgstr "" msgid "Created Views" msgstr "Създадени изгледи" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,11 +134,10 @@ msgid "South Korea" msgstr "Южна Корея" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "Преходи" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -140,13 +149,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Швейцария" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -178,13 +194,13 @@ msgid "Search Partner" msgstr "Търсене на партньор" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "нов" @@ -215,7 +231,7 @@ msgid "Contact Name" msgstr "Име на контакта" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -239,6 +255,12 @@ msgstr "активен" msgid "Wizard Name" msgstr "Име на помощник" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -271,7 +293,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -322,7 +343,7 @@ msgid "Netherlands Antilles" msgstr "Холандски Антили" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -346,11 +367,6 @@ msgstr "Гръцки / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "Босна / Босненски език" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -360,6 +376,12 @@ msgstr "" "Ако отметнете това, когато потребителят печата за втори път със същото " "приложено име, ще се върне предишната справка." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -387,6 +409,12 @@ msgstr "Колумбия" msgid "Schedule Upgrade" msgstr "Планирай обновяване" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -430,7 +458,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Персонализираните полета трябва да имат име което започва с 'x_' !" @@ -677,6 +705,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -741,6 +775,14 @@ msgstr "%B - Пълно име на месеца." msgid "Type" msgstr "Вид" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -767,6 +809,19 @@ msgstr "Невалиден XML за преглед на архитектурат msgid "Cayman Islands" msgstr "Кайманови острови" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "Преходи" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -874,6 +929,16 @@ msgstr "Хаити" msgid "Search" msgstr "Търсене" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -929,13 +994,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -969,6 +1034,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1016,7 +1087,7 @@ msgid "On Create" msgstr "При създаване" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1120,12 +1191,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "Дни: %(day)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Вие не можете да четете този документ! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1167,8 +1232,8 @@ msgstr "" "object.list_price > object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (копие)" @@ -1248,7 +1313,7 @@ msgid "Formula" msgstr "Формула" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "Не може да се премахне потребителят root!" @@ -1259,7 +1324,8 @@ msgid "Malawi" msgstr "Малави" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1311,7 +1377,6 @@ msgstr "Дървовиден преглед" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1340,6 +1405,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1391,7 +1462,7 @@ msgid "Bahamas" msgstr "Бахамски острови" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1414,6 +1485,12 @@ msgstr "Ирландия" msgid "Number of modules updated" msgstr "Брой обновени модули" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1489,6 +1566,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1561,7 +1644,7 @@ msgid "Madagascar" msgstr "Мадагаскар" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1652,12 +1735,6 @@ msgstr "Адрес за е-поща" msgid "French (BE) / Français (BE)" msgstr "Френски (BE) / Français (BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Не може да записвате в този документ! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1728,6 +1805,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1738,13 +1821,19 @@ msgstr "" msgid "Slovenia" msgstr "Словения" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1774,6 +1863,14 @@ msgstr "Крайна дата" msgid "New Zealand" msgstr "Нова Зеландия" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1823,19 +1920,13 @@ msgstr "Грешка! НЕ може да създавате рекурсивни msgid "Valid" msgstr "Валиден" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Не можете да изтриете този документ! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "Модул '%s' не може да бъде обновен. Той не е инсталиран." @@ -1946,6 +2037,15 @@ msgstr "Сигнал (subflow.*)" msgid "HR sector" msgstr "" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1999,6 +2099,11 @@ msgstr "Зависимости" msgid "Main Company" msgstr "Основна фирма" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2086,8 +2191,9 @@ msgid "Sir" msgstr "Сър" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2186,7 +2292,7 @@ msgid "Mayotte" msgstr "Майот" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "Моля укажете действие за изпълнение !" @@ -2210,6 +2316,12 @@ msgstr "Отляво надясно" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2230,7 +2342,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "Рекурсивна грешка при зависимостите на модулите !" @@ -2257,6 +2375,11 @@ msgstr "" "ДДС номер. Отметнете ако партньора е регистриран по ДДС. Използва се при " "деклариране на ДДС." +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2309,11 +2432,6 @@ msgstr "" msgid "VAT" msgstr "ДДС" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2350,7 +2468,7 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2359,13 +2477,21 @@ msgstr "" "Не може да бъде създаден модулния файл:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Науру" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2441,6 +2567,12 @@ msgstr "Изпрати SMS" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2498,7 +2630,7 @@ msgid "Ecuador" msgstr "Еквадор" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2569,7 +2701,7 @@ msgid "Action to Trigger" msgstr "Действие за извършване" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2766,18 +2898,13 @@ msgstr "Автор" msgid "FYROM" msgstr "Република Македония" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Разширено търсене" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Подходящо представяне на дата и време." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2823,7 +2950,7 @@ msgid "Rules" msgstr "Правила" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2895,7 +3022,7 @@ msgid "Lesotho" msgstr "Лесото" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "Не може да премахнете модел '%s' !" @@ -2925,6 +3052,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2956,7 +3089,7 @@ msgid "Benin" msgstr "Бенин" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2986,6 +3119,14 @@ msgstr "RML горен колонтитул" msgid "API ID" msgstr "API ID" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3236,6 +3377,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "Никарагуа" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3516,7 +3663,8 @@ msgid "Bank Type" msgstr "Вид банка" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "Името на група не може да започва с \"-\"" @@ -3538,7 +3686,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3556,7 +3704,7 @@ msgid "Flow Start" msgstr "Начало на процес" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3588,7 +3736,9 @@ msgid "Guadeloupe (French)" msgstr "Гваделупа (Франция)" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3663,6 +3813,11 @@ msgstr "" msgid "Cape Verde" msgstr "Кабо Верде" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3676,6 +3831,12 @@ msgstr "Събития" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3709,9 +3870,10 @@ msgid "French / Français" msgstr "Френски / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Създадени менюта" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -3962,6 +4124,14 @@ msgstr "Съвет" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -4003,8 +4173,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -4034,12 +4204,9 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Клиент" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "" #. module: base #: model:res.country,name:base.lc @@ -4149,6 +4316,18 @@ msgstr "Виетнам" msgid "Signature" msgstr "Подпис" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4170,7 +4349,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4211,9 +4390,11 @@ msgid "Contacts" msgstr "Контакти" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Фарьорски острови" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4242,6 +4423,12 @@ msgstr "Чехия" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4286,15 +4473,9 @@ msgid "Mongolia" msgstr "Монголия" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Грешка" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Създадени менюта" #. module: base #: selection:ir.ui.view,type:0 @@ -4408,11 +4589,6 @@ msgstr "Сейнт Винсент и Гренадини" msgid "Password" msgstr "Парола" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4512,7 +4688,7 @@ msgid "Change My Preferences" msgstr "Промени настройките ми" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Невалидно име на модел при задаването на действие." @@ -4580,7 +4756,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4658,7 +4834,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4733,7 +4915,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Модул %s: Невалиден сертификат за качество" @@ -4785,6 +4967,11 @@ msgstr "" msgid "Accepted Users" msgstr "Одобрени потребители" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4901,6 +5088,14 @@ msgstr "" msgid "Nepal" msgstr "Непал" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4930,14 +5125,14 @@ msgid "Update Modules List" msgstr "Обнови списъка с модули" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4956,6 +5151,12 @@ msgstr "Продължи" msgid "Thai / ภาษาไทย" msgstr "тайски / ภาษาไทย" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5086,6 +5287,13 @@ msgstr "Пълното име на страната." msgid "Iteration" msgstr "Повтаряне" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5124,7 +5332,12 @@ msgid "Solomon Islands" msgstr "Соломонови острови" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "AccessError" @@ -5135,7 +5348,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5145,6 +5358,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5262,7 +5481,7 @@ msgid "ir.actions.todo" msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5336,17 +5555,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5355,7 +5580,7 @@ msgid "Python Code" msgstr "Python код" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "Модулния файл: %s, не можеда да бъде създаден !" @@ -5474,7 +5699,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5515,7 +5740,7 @@ msgstr "" "създаване)." #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5727,7 +5952,7 @@ msgid "Afghanistan, Islamic State of" msgstr "Афганистан" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Грешка!" @@ -5748,6 +5973,12 @@ msgstr "Единица интервал" msgid "Kind" msgstr "Вид" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -6005,6 +6236,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -6014,11 +6253,6 @@ msgstr "" msgid "Address" msgstr "Адрес" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6097,7 +6331,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "Сейнт Китс и Невис" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6183,7 +6417,7 @@ msgid "Samoa" msgstr "Самоа" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6204,11 +6438,19 @@ msgid "Child IDs" msgstr "Подчинени идентификатори" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Проблем в конфигурацията 'Record Id' в Действия на Сървъра!" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6255,6 +6497,14 @@ msgstr "Ел. поща" msgid "Home Action" msgstr "Основно действие" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6283,10 +6533,9 @@ msgid "Stop All" msgstr "Спиране на всички" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6337,7 +6586,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6395,7 +6644,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6447,7 +6696,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6528,7 +6777,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6566,6 +6822,12 @@ msgstr "До" msgid "Arguments" msgstr "Аргументи" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6576,16 +6838,31 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" msgstr "" +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Клиент" + #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (NI) / Español (NI)" @@ -6689,7 +6966,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6740,6 +7017,15 @@ msgstr "Отпратка към таблица" msgid "Object" msgstr "Обект" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6775,7 +7061,7 @@ msgid "User Ref." msgstr "Потребителска справка" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6916,7 +7202,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6974,7 +7260,7 @@ msgid "Action Type" msgstr "Вид действие" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7077,11 +7363,23 @@ msgstr "Код на държава" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7258,6 +7556,11 @@ msgstr "Изпращане на e-mail" msgid "Menu Action" msgstr "Действие на меню" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Фарьорски острови" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7395,7 +7698,7 @@ msgid "China" msgstr "Китай" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7593,7 +7896,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7637,6 +7940,14 @@ msgstr "Превод" msgid "Antigua and Barbuda" msgstr "Антигуа и Барбуда" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7695,7 +8006,7 @@ msgid "Auto-Refresh" msgstr "Автообновяване" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7705,6 +8016,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "О-ви Уолис и Футуна" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7761,6 +8077,35 @@ msgstr "Идентификационен код на банката" msgid "Turkmenistan" msgstr "Туркменистан" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Грешка" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7889,7 +8234,7 @@ msgid "Internal Header/Footer" msgstr "Вътрешен горен/долен колонтитул" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7930,6 +8275,14 @@ msgstr "Доминиканска република" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7955,7 +8308,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -8002,11 +8355,18 @@ msgid "Low" msgstr "Нисък" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -8015,7 +8375,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8169,7 +8529,7 @@ msgid "View Auto-Load" msgstr "Изглед автоматично зареждане" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8181,6 +8541,11 @@ msgstr "" msgid "Resource" msgstr "Ресурс" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8192,7 +8557,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8204,6 +8569,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8328,7 +8701,7 @@ msgid "Azerbaijan" msgstr "Азербайджан" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Предупреждение" @@ -8355,9 +8728,9 @@ msgid "Czech / Čeština" msgstr "чешки / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "О-ви Уолис и Футуна" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Разширено търсене" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8660,7 +9033,7 @@ msgid "Account Owner" msgstr "Собственик на сметка" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8720,7 +9093,7 @@ msgid "Workflow Instances" msgstr "Инстанции от последователности от действия" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Парньори: " @@ -9606,6 +9979,10 @@ msgstr "руски / русский язык" #~ msgid "Product quantity" #~ msgstr "Количество продукт" +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Не може да създадете този вид документ! (%s)" + #, python-format #~ msgid "Account move line \"%s\" is not valid" #~ msgstr "Ред \"%s\" от движение по сметка не е валиден" @@ -9664,6 +10041,10 @@ msgstr "руски / русский язык" #~ msgid "Define New Users" #~ msgstr "Задаване на нови потребители" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Вие не можете да четете този документ! (%s)" + #~ msgid "terp-calendar" #~ msgstr "terp-calendar" @@ -9673,6 +10054,10 @@ msgstr "руски / русский язык" #~ msgid "Year without century: %(y)s" #~ msgstr "Година без век: %(y)s" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Не може да записвате в този документ! (%s)" + #~ msgid "Confirmation" #~ msgstr "Потвърждаване" @@ -9680,6 +10065,10 @@ msgstr "руски / русский язык" #~ msgid "Enter at least one field !" #~ msgstr "Въведете поне едно поле!" +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Не можете да изтриете този документ! (%s)" + #~ msgid "Installation Done" #~ msgstr "Инсталацията приключена" diff --git a/bin/addons/base/i18n/bs.po b/bin/addons/base/i18n/bs.po index ac8f646808e..124c1d69538 100644 --- a/bin/addons/base/i18n/bs.po +++ b/bin/addons/base/i18n/bs.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-09-29 08:03+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:52+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:14+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +60,6 @@ msgstr "Metapodaci" msgid "View Architecture" msgstr "Prikaz arhikteture" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Ne možete izraditi ovu vrstu dokumenta (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +110,14 @@ msgstr "" msgid "Created Views" msgstr "Kreirani prikazi" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,11 +134,10 @@ msgid "South Korea" msgstr "Južna Koreja" #. 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" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -140,13 +149,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Swaziland" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -175,13 +191,13 @@ msgid "Search Partner" msgstr "Pronađi partnera" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "novo" @@ -212,7 +228,7 @@ msgid "Contact Name" msgstr "Naziv kontakta" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -236,6 +252,12 @@ msgstr "aktivno" msgid "Wizard Name" msgstr "Naziv čarobnjaka" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -268,7 +290,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -319,7 +340,7 @@ msgid "Netherlands Antilles" msgstr "Nizozemski Antili" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -343,11 +364,6 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "Bosanski / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -357,6 +373,12 @@ msgstr "" "Ukoliko je označeno, prilikom sljedećeg ispisa s jednakim nazivom datoteke, " "biti će vraćen prethodni izvještaj." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -383,6 +405,12 @@ msgstr "Kolumbija" msgid "Schedule Upgrade" msgstr "Planiraj nadogradnju" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -426,7 +454,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Prilagođena polja moraju imati ime koje počinje sa 'x_' !" @@ -674,6 +702,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -738,6 +772,14 @@ msgstr "%B - Puni naziv za mjesec." msgid "Type" msgstr "Vrsta" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -764,6 +806,19 @@ msgstr "Neodgovarajući XML za arhitekturu prikaza!" msgid "Cayman Islands" msgstr "Kajmanska ostrva" +#. 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 +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -868,6 +923,16 @@ msgstr "" msgid "Search" msgstr "" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -923,13 +988,13 @@ msgid "ir.exports" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -960,6 +1025,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1007,7 +1078,7 @@ msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1108,12 +1179,6 @@ msgstr "" 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 #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1153,8 +1218,8 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr "" @@ -1232,7 +1297,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1243,7 +1308,8 @@ msgid "Malawi" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1292,7 +1358,6 @@ msgstr "" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1319,6 +1384,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1370,7 +1441,7 @@ msgid "Bahamas" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1391,6 +1462,12 @@ msgstr "" msgid "Number of modules updated" msgstr "" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1466,6 +1543,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1535,7 +1618,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1620,12 +1703,6 @@ msgstr "" msgid "French (BE) / Français (BE)" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1696,6 +1773,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1706,13 +1789,19 @@ msgstr "" msgid "Slovenia" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1742,6 +1831,14 @@ msgstr "" msgid "New Zealand" msgstr "" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1791,19 +1888,13 @@ msgstr "" msgid "Valid" msgstr "Ispravan" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "" @@ -1914,6 +2005,15 @@ msgstr "" msgid "HR sector" msgstr "" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1967,6 +2067,11 @@ msgstr "" msgid "Main Company" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2053,8 +2158,9 @@ msgid "Sir" msgstr "" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2153,7 +2259,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2177,6 +2283,12 @@ msgstr "" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2197,7 +2309,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "" @@ -2222,6 +2340,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2274,11 +2397,6 @@ msgstr "" msgid "VAT" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2315,20 +2433,28 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" " %s" msgstr "" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2404,6 +2530,12 @@ msgstr "Pošalji SMS" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2461,7 +2593,7 @@ msgid "Ecuador" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2527,7 +2659,7 @@ msgid "Action to Trigger" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2722,18 +2854,13 @@ msgstr "Autor" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2779,7 +2906,7 @@ msgid "Rules" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2847,7 +2974,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "Nije moguće obrisati model '%s' !" @@ -2877,6 +3004,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2908,7 +3041,7 @@ msgid "Benin" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2938,6 +3071,14 @@ msgstr "" msgid "API ID" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3183,6 +3324,12 @@ msgstr "" msgid "Nicaragua" msgstr "" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3461,7 +3608,8 @@ msgid "Bank Type" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "" @@ -3483,7 +3631,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3501,7 +3649,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3533,7 +3681,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3608,6 +3758,11 @@ msgstr "" msgid "Cape Verde" msgstr "" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3621,6 +3776,12 @@ msgstr "" msgid "ir.actions.url" msgstr "" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3654,8 +3815,9 @@ msgid "French / Français" msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" msgstr "" #. module: base @@ -3906,6 +4068,14 @@ msgstr "" msgid "ir.attachment" msgstr "" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3944,8 +4114,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -3975,11 +4145,8 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" msgstr "" #. module: base @@ -4088,6 +4255,18 @@ msgstr "" msgid "Signature" msgstr "Potpis" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4109,7 +4288,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4150,8 +4329,10 @@ msgid "Contacts" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" msgstr "" #. module: base @@ -4181,6 +4362,12 @@ msgstr "" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4225,14 +4412,8 @@ msgid "Mongolia" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -4347,11 +4528,6 @@ msgstr "" msgid "Password" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4451,7 +4627,7 @@ msgid "Change My Preferences" msgstr "Promjeni Moje postavke" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4519,7 +4695,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4597,7 +4773,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4670,7 +4852,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.objekt.linije" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4718,6 +4900,11 @@ msgstr "" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4832,6 +5019,14 @@ msgstr "" msgid "Nepal" msgstr "" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4861,14 +5056,14 @@ msgid "Update Modules List" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4887,6 +5082,12 @@ msgstr "Nastavi" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5017,6 +5218,13 @@ msgstr "" msgid "Iteration" msgstr "" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5055,7 +5263,12 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "" @@ -5066,7 +5279,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5076,6 +5289,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5193,7 +5412,7 @@ msgid "ir.actions.todo" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5267,17 +5486,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5286,7 +5511,7 @@ msgid "Python Code" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "" @@ -5405,7 +5630,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5444,7 +5669,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5656,7 +5881,7 @@ msgid "Afghanistan, Islamic State of" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "" @@ -5677,6 +5902,12 @@ msgstr "" msgid "Kind" msgstr "" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5932,6 +6163,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5941,11 +6180,6 @@ msgstr "" msgid "Address" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6024,7 +6258,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6108,7 +6342,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6129,11 +6363,19 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6180,6 +6422,14 @@ msgstr "" msgid "Home Action" msgstr "" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6208,10 +6458,9 @@ msgid "Stop All" msgstr "Zaustavi sve" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6262,7 +6511,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6320,7 +6569,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6372,7 +6621,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6453,7 +6702,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6491,6 +6747,12 @@ msgstr "" msgid "Arguments" msgstr "" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6501,14 +6763,29 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" msgstr "" #. module: base @@ -6614,7 +6891,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6665,6 +6942,15 @@ msgstr "" msgid "Object" msgstr "Objekat" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6700,7 +6986,7 @@ msgid "User Ref." msgstr "Korisnik ref." #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6841,7 +7127,7 @@ msgid "workflow.triggers" msgstr "radnitok.okidači" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6897,7 +7183,7 @@ msgid "Action Type" msgstr "Tip akcije" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7000,11 +7286,23 @@ msgstr "" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7179,6 +7477,11 @@ msgstr "Pošalji email" msgid "Menu Action" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7316,7 +7619,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7514,7 +7817,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7558,6 +7861,14 @@ msgstr "" msgid "Antigua and Barbuda" msgstr "" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7616,7 +7927,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7626,6 +7937,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7682,6 +7998,35 @@ msgstr "" msgid "Turkmenistan" msgstr "" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7810,7 +8155,7 @@ msgid "Internal Header/Footer" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7849,6 +8194,14 @@ msgstr "" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7872,7 +8225,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7919,11 +8272,18 @@ msgid "Low" msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7932,7 +8292,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8086,7 +8446,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8098,6 +8458,11 @@ msgstr "" msgid "Resource" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8109,7 +8474,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8121,6 +8486,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8245,7 +8618,7 @@ msgid "Azerbaijan" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "" @@ -8272,8 +8645,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" msgstr "" #. module: base @@ -8572,7 +8945,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8632,7 +9005,7 @@ msgid "Workflow Instances" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "" @@ -8913,6 +9286,10 @@ msgstr "" #~ msgid "STOCK_REVERT_TO_SAVED" #~ msgstr "SKLADIŠTE_VRATITI_NA_SPREMLJENO" +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Ne možete izraditi ovu vrstu dokumenta (%s)" + #~ msgid "Outgoing transitions" #~ msgstr "Odlazni prijelazi" diff --git a/bin/addons/base/i18n/ca.po b/bin/addons/base/i18n/ca.po index 9731ea242a3..3df277f9f66 100644 --- a/bin/addons/base/i18n/ca.po +++ b/bin/addons/base/i18n/ca.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-16 08:43+0000\n" "Last-Translator: Jordi Esteve (www.zikzakmedia.com) " "\n" @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:53+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:14+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -41,6 +41,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -53,12 +61,6 @@ msgstr "Metadades" msgid "View Architecture" msgstr "Codi vista" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "No podeu crear aquest tipus de document! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -109,6 +111,14 @@ msgstr "" msgid "Created Views" msgstr "Vistes creades" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -125,11 +135,10 @@ msgid "South Korea" msgstr "Corea del Sud" #. 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 "Transicions" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -141,13 +150,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Swazilàndia" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -178,13 +194,13 @@ msgid "Search Partner" msgstr "Busca empresa" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "nou" @@ -215,7 +231,7 @@ msgid "Contact Name" msgstr "Nom" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -239,6 +255,12 @@ msgstr "Activa" msgid "Wizard Name" msgstr "Nom d'assistent" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -271,7 +293,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -322,7 +343,7 @@ msgid "Netherlands Antilles" msgstr "Antilles holandeses" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -346,11 +367,6 @@ msgstr "Grec / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "Bosnià / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -360,6 +376,12 @@ msgstr "" "Si marqueu aquesta opció, quan l'usuari imprimeixi el mateix nom d'adjunt " "per segona vegada, obtindrá l'informe anterior." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "El mètode read (llegir) no està implementat en aquest objecte!" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -387,6 +409,12 @@ msgstr "Colòmbia" msgid "Schedule Upgrade" msgstr "Programa actualització" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -430,7 +458,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Els camps personalitzats han de tenir un nom que comenci amb 'x_'!" @@ -677,6 +705,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "El mètode unlink (elimina) no està implementat en aquest objecte!" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -741,6 +775,14 @@ msgstr "%B - Nom de mes complet." msgid "Type" msgstr "Tipus" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -767,6 +809,19 @@ msgstr "XML invàlid per a la definició de la vista!" msgid "Cayman Islands" msgstr "Illes Caiman" +#. 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 "Transicions" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -874,6 +929,16 @@ msgstr "Haití" msgid "Search" msgstr "Cerca" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -929,13 +994,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -969,6 +1034,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "El mètode search (cercar) no està implementat en aquest objecte!" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1016,7 +1087,7 @@ msgid "On Create" msgstr "En creació" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1120,12 +1191,6 @@ msgstr "ID fitxer adjunt" msgid "Day: %(day)s" msgstr "Dia: %(day)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "No podeu llegir aquest document! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1167,8 +1232,8 @@ msgstr "" "object.list_price > object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (còpia)" @@ -1248,7 +1313,7 @@ msgid "Formula" msgstr "Fórmula" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "No es pot eliminar l'usuari principal!" @@ -1259,7 +1324,8 @@ msgid "Malawi" msgstr "Malawi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1311,7 +1377,6 @@ msgstr "Arbre" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1339,6 +1404,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "El mètode search_memory no està implementat!" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1390,7 +1461,7 @@ msgid "Bahamas" msgstr "Bahames" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1413,6 +1484,12 @@ msgstr "Irlanda" msgid "Number of modules updated" msgstr "Número de mòduls actualitzats" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "El mètode set_memory no està implementat!" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1488,6 +1565,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1560,7 +1643,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1650,12 +1733,6 @@ msgstr "Adreça correu electrònic" msgid "French (BE) / Français (BE)" msgstr "Francès (BE) / Français (BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "No podeu escriure en aquest document! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1726,6 +1803,13 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" +"El mètode perm_read (llegir permisos) no està implementat en aquest objecte!" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1736,13 +1820,19 @@ msgstr "" msgid "Slovenia" msgstr "Eslovènia" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1772,6 +1862,14 @@ msgstr "Data final" msgid "New Zealand" msgstr "Nova Zelanda" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1821,19 +1919,13 @@ msgstr "Error! No podeu crear companyies recursives." msgid "Valid" msgstr "Vàlid" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "No podeu eliminar aquest document! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "No es pot actualitzar mòdul '%s'. No està instal·lat." @@ -1944,6 +2036,15 @@ msgstr "Senyal (subflow.*)" msgid "HR sector" msgstr "" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1997,6 +2098,11 @@ msgstr "Dependències" msgid "Main Company" msgstr "Empresa principal" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2085,8 +2191,9 @@ msgid "Sir" msgstr "Sr." #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2185,7 +2292,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "Indiqueu una acció per ser executada!" @@ -2209,6 +2316,12 @@ msgstr "Dreta-a-esquerra" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "Verifiqueu que totes les línies tinguin %d columnes" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2229,7 +2342,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "Error de recurrència entre dependències de mòduls!" @@ -2256,6 +2375,11 @@ msgstr "" "Número CIF/NIF. Marqueu aquesta casella si l'empresa està subjecta a l'IVA. " "S'utilitza per a la declaració legal de l'IVA." +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2308,11 +2432,6 @@ msgstr "" msgid "VAT" msgstr "CIF/NIF" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2349,7 +2468,7 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2358,13 +2477,21 @@ msgstr "" "No es pot crear el fitxer del mòdul:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Nauru" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2440,6 +2567,12 @@ msgstr "Envia SMS" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2497,7 +2630,7 @@ msgid "Ecuador" msgstr "Equador" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2569,7 +2702,7 @@ msgid "Action to Trigger" msgstr "Acció a disparar" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2766,18 +2899,13 @@ msgstr "Autor" msgid "FYROM" msgstr "FYR de Macedònia" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Cerca avançada" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Representació apropiada de data i hora." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2823,7 +2951,7 @@ msgid "Rules" msgstr "Regles" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2894,7 +3022,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "No podeu eliminar aquest model '%s'!" @@ -2924,6 +3052,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2955,7 +3089,7 @@ msgid "Benin" msgstr "Benín" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2985,6 +3119,14 @@ msgstr "Capçalera RML" msgid "API ID" msgstr "ID API" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3235,6 +3377,12 @@ msgstr "res.usuaris" msgid "Nicaragua" msgstr "Nicaragua" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "El mètode write (esciure) no està implementat en aquest objecte!" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3515,7 +3663,8 @@ msgid "Bank Type" msgstr "Tipus de banc" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "El nom del grup no pot començar amb \"-\"" @@ -3537,7 +3686,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3555,7 +3704,7 @@ msgid "Flow Start" msgstr "Inici del flux" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3587,7 +3736,9 @@ msgid "Guadeloupe (French)" msgstr "Guadalupe (Francesa)" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3662,6 +3813,11 @@ msgstr "" msgid "Cape Verde" msgstr "Cap Verd" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3675,6 +3831,12 @@ msgstr "Esdeveniments" msgid "ir.actions.url" msgstr "ir.accions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3708,9 +3870,10 @@ msgid "French / Français" msgstr "Francès / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Menús creats" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "El mètode create (crear) no està implementat en aquest objecte!" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -3961,6 +4124,14 @@ msgstr "Consell" msgid "ir.attachment" msgstr "ir.adjunt" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -4002,8 +4173,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -4033,12 +4204,9 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Client" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "" #. module: base #: model:res.country,name:base.lc @@ -4146,6 +4314,18 @@ msgstr "Vietnam" msgid "Signature" msgstr "Signatura" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "No implementat" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4167,7 +4347,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4208,9 +4388,11 @@ msgid "Contacts" msgstr "Contactes" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Illes Fèroe" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4239,6 +4421,12 @@ msgstr "República Txeca" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4283,15 +4471,9 @@ msgid "Mongolia" msgstr "Mongòlia" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Error" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Menús creats" #. module: base #: selection:ir.ui.view,type:0 @@ -4405,11 +4587,6 @@ msgstr "Sant Vicenç i les Granadines" msgid "Password" msgstr "Contrasenya" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4509,7 +4686,7 @@ msgid "Change My Preferences" msgstr "Canvia les preferències" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Nom de model no vàlid en la definició de l'acció." @@ -4577,7 +4754,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4655,7 +4832,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4730,7 +4913,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.objecte.línias" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Mòdul %s: Certificat de qualitat no vàlid" @@ -4781,6 +4964,11 @@ msgstr "" msgid "Accepted Users" msgstr "Usuaris acceptats" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4897,6 +5085,14 @@ msgstr "" msgid "Nepal" msgstr "Nepal" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4926,14 +5122,14 @@ msgid "Update Modules List" msgstr "Actualitza llista de mòduls" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4952,6 +5148,12 @@ msgstr "Següent" msgid "Thai / ภาษาไทย" msgstr "Tailandès / ภาษาไทย" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5082,6 +5284,13 @@ msgstr "El nom complert del país." msgid "Iteration" msgstr "Iteració" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5120,7 +5329,12 @@ msgid "Solomon Islands" msgstr "Illes Salomó" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "ErrorAccés" @@ -5131,7 +5345,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5141,6 +5355,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "El mètode copy (copiar) no està implementat en aquest objecte!" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5258,7 +5478,7 @@ msgid "ir.actions.todo" msgstr "ir.accions.tot" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5332,17 +5552,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "El mètode get_memory no està implementat!" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5351,7 +5577,7 @@ msgid "Python Code" msgstr "Codi de Python" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "No es pot crear el fitxer de mòdul: %s!" @@ -5470,7 +5696,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5511,7 +5737,7 @@ msgstr "" "crear)." #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5723,7 +5949,7 @@ msgid "Afghanistan, Islamic State of" msgstr "Estat Islàmic d'Afganistan" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Error!" @@ -5744,6 +5970,12 @@ msgstr "Unitat d'interval" msgid "Kind" msgstr "Classe" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "Aquest mètode ja no existeix" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -6001,6 +6233,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -6010,11 +6250,6 @@ msgstr "" msgid "Address" msgstr "Adreça" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6093,7 +6328,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "Saint Kitts i Nevis Anguilla" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6179,7 +6414,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6200,11 +6435,19 @@ msgid "Child IDs" msgstr "IDs fills" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problema en configuració `Id registre` en l'acció del servidor!" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "Error de Validació" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6251,6 +6494,14 @@ msgstr "Email" msgid "Home Action" msgstr "Acció inicial" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6279,10 +6530,9 @@ msgid "Stop All" msgstr "Tot parat" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6333,7 +6583,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6391,7 +6641,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6443,7 +6693,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6524,7 +6774,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6562,6 +6819,12 @@ msgstr "A" msgid "Arguments" msgstr "Arguments" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6572,15 +6835,30 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" -msgstr "" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "El valor \"%s\" pel camp \"%s\" no està en la selecció" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Client" #. module: base #: selection:base.language.install,lang:0 @@ -6685,7 +6963,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6736,6 +7014,15 @@ msgstr "Ref. taula" msgid "Object" msgstr "Objecte" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6771,7 +7058,7 @@ msgid "User Ref." msgstr "Ref. usuari" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6912,7 +7199,7 @@ msgid "workflow.triggers" msgstr "workflow.activacions" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6970,7 +7257,7 @@ msgid "Action Type" msgstr "Tipus d'acció" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7073,11 +7360,23 @@ msgstr "Codi de país" msgid "workflow.instance" msgstr "workflow.instancia" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "Mètode get (obtenir) no definit!" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7254,6 +7553,11 @@ msgstr "Envia email" msgid "Menu Action" msgstr "Acció de menú" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Illes Fèroe" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7391,7 +7695,7 @@ msgid "China" msgstr "Xina" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7589,7 +7893,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7633,6 +7937,14 @@ msgstr "Traducció" msgid "Antigua and Barbuda" msgstr "Antigua i Barbuda" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7691,7 +8003,7 @@ msgid "Auto-Refresh" msgstr "Auto-refrescar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7701,6 +8013,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Illes Wallis i Futuna" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7757,6 +8074,35 @@ msgstr "Codi d'identificador bancari" msgid "Turkmenistan" msgstr "Turkmenistan" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Error" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7886,7 +8232,7 @@ msgid "Internal Header/Footer" msgstr "Capçalera / Peu de pàgina interna" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7927,6 +8273,14 @@ msgstr "República Dominicana" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7952,7 +8306,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7999,11 +8353,18 @@ msgid "Low" msgstr "Baixa" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -8012,7 +8373,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8166,7 +8527,7 @@ msgid "View Auto-Load" msgstr "Vista auto-carregar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8178,6 +8539,11 @@ msgstr "" msgid "Resource" msgstr "Recurs" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8189,7 +8555,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8201,6 +8567,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8325,7 +8699,7 @@ msgid "Azerbaijan" msgstr "Azerbaidjan" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Avís" @@ -8352,9 +8726,9 @@ msgid "Czech / Čeština" msgstr "Xec / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Illes Wallis i Futuna" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Cerca avançada" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8657,7 +9031,7 @@ msgid "Account Owner" msgstr "Propietari compte" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8717,7 +9091,7 @@ msgid "Workflow Instances" msgstr "Instàncies flux" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Empreses: " @@ -9966,8 +10340,8 @@ msgstr "Rus / русский язык" #~ msgstr "Vista prèvia d'imatge" #, python-format -#~ msgid "The unlink method is not implemented on this object !" -#~ msgstr "El mètode unlink (elimina) no està implementat en aquest objecte!" +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "No podeu crear aquest tipus de document! (%s)" #, python-format #~ msgid "Password mismatch !" @@ -9978,10 +10352,6 @@ msgstr "Rus / русский язык" #~ msgstr "" #~ "Aquesta url '%s' ha d'apuntar a un fitxer html amb enllaços a mòduls zip" -#, python-format -#~ msgid "The read method is not implemented on this object !" -#~ msgstr "El mètode read (llegir) no està implementat en aquest objecte!" - #, python-format #~ msgid "You try to bypass an access rule (Document type: %s)." #~ msgstr "Intenteu saltar una regla d'accés (tipus document: %s)." @@ -9991,34 +10361,25 @@ msgstr "Rus / русский язык" #~ msgstr "Gràfics de pastís necessiten exactament dos camps" #, python-format -#~ msgid "Not implemented search_memory method !" -#~ msgstr "El mètode search_memory no està implementat!" - -#, python-format -#~ msgid "Not implemented set_memory method !" -#~ msgstr "El mètode set_memory no està implementat!" +#~ msgid "You can not read this document! (%s)" +#~ msgstr "No podeu llegir aquest document! (%s)" #, python-format #~ msgid "Enter at least one field !" #~ msgstr "Introduiu almenys un camp!" #, python-format -#~ msgid "The perm_read method is not implemented on this object !" -#~ msgstr "" -#~ "El mètode perm_read (llegir permisos) no està implementat en aquest objecte!" +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "No podeu escriure en aquest document! (%s)" #, python-format -#~ msgid "Please check that all your lines have %d columns." -#~ msgstr "Verifiqueu que totes les línies tinguin %d columnes" +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "No podeu eliminar aquest document! (%s)" #, python-format #~ msgid "Can not define a column %s. Reserved keyword !" #~ msgstr "No s'ha pogut definir la columna %s. Paraula reservada !" -#, python-format -#~ msgid "The create method is not implemented on this object !" -#~ msgstr "El mètode create (crear) no està implementat en aquest objecte!" - #, python-format #~ msgid "Invalid operation" #~ msgstr "L'operació no és vàlida." @@ -10031,10 +10392,6 @@ msgstr "Rus / русский язык" #~ "Esteu intentant d'instal·lar un mòdul que depèn del mòdul: %s.\n" #~ "Però aquest mòdul no es troba disponible en el vostre sistema." -#, python-format -#~ msgid "The write method is not implemented on this object !" -#~ msgstr "El mètode write (esciure) no està implementat en aquest objecte!" - #, python-format #~ msgid "Tree can only be used in tabular reports" #~ msgstr "Àrbre es pot utilitzar només en informes tabulars" @@ -10048,10 +10405,6 @@ msgstr "Rus / русский язык" #~ msgstr "" #~ "El mètode name_get (obtenir nom) no està implementat en aquest objecte!" -#, python-format -#~ msgid "Not Implemented" -#~ msgstr "No implementat" - #, python-format #~ msgid "The name_search method is not implemented on this object !" #~ msgstr "El mètode name_search no està implementat en aquest objecte!" @@ -10060,42 +10413,18 @@ msgstr "Rus / русский язык" #~ msgid "Please specify the Partner Email address !" #~ msgstr "Introduïu l'adreça de correu electrònic de l'empresa!" -#, python-format -#~ msgid "The copy method is not implemented on this object !" -#~ msgstr "El mètode copy (copiar) no està implementat en aquest objecte!" - -#, python-format -#~ msgid "Not implemented get_memory method !" -#~ msgstr "El mètode get_memory no està implementat!" - #, python-format #~ msgid "Bad file format" #~ msgstr "Format de fitxer incorrecte" -#, python-format -#~ msgid "This method does not exist anymore" -#~ msgstr "Aquest mètode ja no existeix" - #, python-format #~ msgid "Unknown position in inherited view %s !" #~ msgstr "Posició desconeguda en vista heretada %s!" -#, python-format -#~ msgid "ValidateError" -#~ msgstr "Error de Validació" - #, python-format #~ msgid "Field %d should be a figure" #~ msgstr "Camp %d ha de ser una xifra" -#, python-format -#~ msgid "The value \"%s\" for the field \"%s\" is not in the selection" -#~ msgstr "El valor \"%s\" pel camp \"%s\" no està en la selecció" - -#, python-format -#~ msgid "undefined get method !" -#~ msgstr "Mètode get (obtenir) no definit!" - #, python-format #~ msgid "Password empty !" #~ msgstr "Contrasenya buida!" @@ -10116,10 +10445,6 @@ msgstr "Rus / русский язык" #~ msgid "Bar charts need at least two fields" #~ msgstr "Gràfics de barres necessiten al menys dos camps" -#, python-format -#~ msgid "The search method is not implemented on this object !" -#~ msgstr "El mètode search (cercar) no està implementat en aquest objecte!" - #~ msgid "" #~ "If set, sequence will only be used in case this python expression matches, " #~ "and will precede other sequences." diff --git a/bin/addons/base/i18n/cs.po b/bin/addons/base/i18n/cs.po index 4d8dcf40604..943926bf19c 100644 --- a/bin/addons/base/i18n/cs.po +++ b/bin/addons/base/i18n/cs.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-06-06 04:19+0000\n" "Last-Translator: Vladimír Burian \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:53+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:14+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +60,6 @@ msgstr "Metadata" msgid "View Architecture" msgstr "Architektura náhledu(View Architecture)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +110,14 @@ msgstr "" msgid "Created Views" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,10 +134,9 @@ msgid "South Korea" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" msgstr "" #. module: base @@ -140,13 +149,20 @@ msgstr "" msgid "Swaziland" msgstr "" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -175,13 +191,13 @@ msgid "Search Partner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "nový" @@ -212,7 +228,7 @@ msgid "Contact Name" msgstr "Jméno kontaktu" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -234,6 +250,12 @@ msgstr "Aktivní" msgid "Wizard Name" msgstr "" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -266,7 +288,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -317,7 +338,7 @@ msgid "Netherlands Antilles" msgstr "Nizozemské Antily" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -339,11 +360,6 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "Bosenština / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -351,6 +367,12 @@ msgid "" "name, it returns the previous report." msgstr "" +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -377,6 +399,12 @@ msgstr "Kolumbie" msgid "Schedule Upgrade" msgstr "Aktualizace rozvrhu" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -418,7 +446,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -665,6 +693,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -729,6 +763,14 @@ msgstr "" msgid "Type" msgstr "" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -755,6 +797,19 @@ msgstr "Invalidní XML pro zobrazení architektury!" msgid "Cayman Islands" msgstr "Kajmanské ostrovy" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -859,6 +914,16 @@ msgstr "Haiti" msgid "Search" msgstr "" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -914,13 +979,13 @@ msgid "ir.exports" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -951,6 +1016,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -998,7 +1069,7 @@ msgid "On Create" msgstr "On Create(On Create)" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1099,12 +1170,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "Den: %(den/dny)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1144,8 +1209,8 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr "" @@ -1223,7 +1288,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1234,7 +1299,8 @@ msgid "Malawi" msgstr "Malawi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1283,7 +1349,6 @@ msgstr "Strom(Tree)" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1310,6 +1375,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1361,7 +1432,7 @@ msgid "Bahamas" msgstr "Bahamy" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1382,6 +1453,12 @@ msgstr "Irsko" msgid "Number of modules updated" msgstr "Počet aktualizovaných modulů" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1457,6 +1534,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1526,7 +1609,7 @@ msgid "Madagascar" msgstr "Madagaskar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1612,12 +1695,6 @@ msgstr "Emailová adresa" msgid "French (BE) / Français (BE)" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1688,6 +1765,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1698,13 +1781,19 @@ msgstr "" msgid "Slovenia" msgstr "Slovinsko" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1734,6 +1823,14 @@ msgstr "" msgid "New Zealand" msgstr "Nový Zéland" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1783,19 +1880,13 @@ msgstr "" msgid "Valid" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "" @@ -1906,6 +1997,15 @@ msgstr "Signál (subflow.*)(Signal (subflow.*))" msgid "HR sector" msgstr "" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1959,6 +2059,11 @@ msgstr "Závislosti(Dependencies)" msgid "Main Company" msgstr "Hlavní společnost" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2045,8 +2150,9 @@ msgid "Sir" msgstr "" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2145,7 +2251,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2169,6 +2275,12 @@ msgstr "" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2189,7 +2301,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "" @@ -2214,6 +2332,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2266,11 +2389,6 @@ msgstr "" msgid "VAT" msgstr "DPH" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2307,20 +2425,28 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" " %s" msgstr "" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Nauru" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2396,6 +2522,12 @@ msgstr "Zaslat SMS" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2453,7 +2585,7 @@ msgid "Ecuador" msgstr "Ekvádor" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2519,7 +2651,7 @@ msgid "Action to Trigger" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2714,18 +2846,13 @@ msgstr "Autor(Author)" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2771,7 +2898,7 @@ msgid "Rules" msgstr "Pravidla" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2841,7 +2968,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -2871,6 +2998,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2902,7 +3035,7 @@ msgid "Benin" msgstr "Benin" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2932,6 +3065,14 @@ msgstr "" msgid "API ID" msgstr "API ID(API ID)" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3177,6 +3318,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3455,7 +3602,8 @@ msgid "Bank Type" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "" @@ -3477,7 +3625,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3495,7 +3643,7 @@ msgid "Flow Start" msgstr "začátek toku(Flow start)" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3527,7 +3675,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3602,6 +3752,11 @@ msgstr "" msgid "Cape Verde" msgstr "" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3615,6 +3770,12 @@ msgstr "Akce" msgid "ir.actions.url" msgstr "" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3648,8 +3809,9 @@ msgid "French / Français" msgstr "Francouzština / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" msgstr "" #. module: base @@ -3900,6 +4062,14 @@ msgstr "" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3938,8 +4108,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -3969,11 +4139,8 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" msgstr "" #. module: base @@ -4082,6 +4249,18 @@ msgstr "" msgid "Signature" msgstr "Podpis" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4103,7 +4282,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4144,9 +4323,11 @@ msgid "Contacts" msgstr "Kontakty" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Faerské ostrovy" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4175,6 +4356,12 @@ msgstr "" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4219,14 +4406,8 @@ msgid "Mongolia" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -4341,11 +4522,6 @@ msgstr "" msgid "Password" msgstr "Heslo(Password)" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4445,7 +4621,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4513,7 +4689,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4591,7 +4767,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4664,7 +4846,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4712,6 +4894,11 @@ msgstr "" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4826,6 +5013,14 @@ msgstr "" msgid "Nepal" msgstr "" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4855,14 +5050,14 @@ msgid "Update Modules List" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4881,6 +5076,12 @@ msgstr "" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5011,6 +5212,13 @@ msgstr "" msgid "Iteration" msgstr "" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5049,7 +5257,12 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "" @@ -5060,7 +5273,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5070,6 +5283,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5187,7 +5406,7 @@ msgid "ir.actions.todo" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5261,17 +5480,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5280,7 +5505,7 @@ msgid "Python Code" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "" @@ -5399,7 +5624,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5438,7 +5663,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5650,7 +5875,7 @@ msgid "Afghanistan, Islamic State of" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "" @@ -5671,6 +5896,12 @@ msgstr "Intervalová jednotka(Interval Unit)" msgid "Kind" msgstr "Druh" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5926,6 +6157,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5935,11 +6174,6 @@ msgstr "" msgid "Address" msgstr "Adresa" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6018,7 +6252,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6102,7 +6336,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6123,11 +6357,19 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6174,6 +6416,14 @@ msgstr "" msgid "Home Action" msgstr "Hlavní Akce" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6202,10 +6452,9 @@ msgid "Stop All" msgstr "Zastavit vše(Stop all)" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6256,7 +6505,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6314,7 +6563,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6366,7 +6615,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6447,7 +6696,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6485,6 +6741,12 @@ msgstr "Do(To)" msgid "Arguments" msgstr "Argumenty" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6495,14 +6757,29 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" msgstr "" #. module: base @@ -6608,7 +6885,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6659,6 +6936,15 @@ msgstr "Table Ref.(Table Ref.)" msgid "Object" msgstr "" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6694,7 +6980,7 @@ msgid "User Ref." msgstr "Ref. uživatele(User Ref.)" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6835,7 +7121,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6891,7 +7177,7 @@ msgid "Action Type" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -6994,11 +7280,23 @@ msgstr "Kód země" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7173,6 +7471,11 @@ msgstr "Poslat e-mail" msgid "Menu Action" msgstr "Akce nabídky" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Faerské ostrovy" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7310,7 +7613,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7508,7 +7811,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7552,6 +7855,14 @@ msgstr "Platnost překladu(Translation value)" msgid "Antigua and Barbuda" msgstr "" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7610,7 +7921,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7620,6 +7931,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7676,6 +7992,35 @@ msgstr "" msgid "Turkmenistan" msgstr "" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7804,7 +8149,7 @@ msgid "Internal Header/Footer" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7843,6 +8188,14 @@ msgstr "" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7866,7 +8219,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7913,11 +8266,18 @@ msgid "Low" msgstr "Nízká" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7926,7 +8286,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8080,7 +8440,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8092,6 +8452,11 @@ msgstr "" msgid "Resource" msgstr "Zdroj" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8103,7 +8468,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8115,6 +8480,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8239,7 +8612,7 @@ msgid "Azerbaijan" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "" @@ -8266,8 +8639,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" msgstr "" #. module: base @@ -8566,7 +8939,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8626,7 +8999,7 @@ msgid "Workflow Instances" msgstr "Workflow Instances(Workflow Instances)" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "" diff --git a/bin/addons/base/i18n/da.po b/bin/addons/base/i18n/da.po index 582f208cc8a..61de6b4ef0b 100644 --- a/bin/addons/base/i18n/da.po +++ b/bin/addons/base/i18n/da.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-02-07 05:09+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:53+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:15+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -41,6 +41,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -53,12 +61,6 @@ msgstr "Metadata" msgid "View Architecture" msgstr "Vis arkitektur" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -109,6 +111,14 @@ msgstr "" msgid "Created Views" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -125,11 +135,10 @@ msgid "South Korea" msgstr "Sydkorea" #. 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 "Overgange" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -141,13 +150,20 @@ msgstr "" msgid "Swaziland" msgstr "Swaziland" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -176,13 +192,13 @@ msgid "Search Partner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "ny" @@ -213,7 +229,7 @@ msgid "Contact Name" msgstr "Kontakt navn" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -235,6 +251,12 @@ msgstr "aktiv" msgid "Wizard Name" msgstr "Wizard navn" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -267,7 +289,6 @@ msgstr "" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -318,7 +339,7 @@ msgid "Netherlands Antilles" msgstr "Nederlandske Antiller" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -340,11 +361,6 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -352,6 +368,12 @@ msgid "" "name, it returns the previous report." msgstr "" +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -378,6 +400,12 @@ msgstr "Colombia" msgid "Schedule Upgrade" msgstr "" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -419,7 +447,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -666,6 +694,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -730,6 +764,14 @@ msgstr "" msgid "Type" msgstr "" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -756,6 +798,19 @@ msgstr "" msgid "Cayman Islands" msgstr "Caymanøerne" +#. 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 "Overgange" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -860,6 +915,16 @@ msgstr "Haiti" msgid "Search" msgstr "Søg" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -915,13 +980,13 @@ msgid "ir.exports" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -952,6 +1017,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -999,7 +1070,7 @@ msgid "On Create" msgstr "Ved oprettelse" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1100,12 +1171,6 @@ msgstr "" 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 #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1145,8 +1210,8 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (kopi)" @@ -1224,7 +1289,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1235,7 +1300,8 @@ msgid "Malawi" msgstr "Malavi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1284,7 +1350,6 @@ msgstr "" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1311,6 +1376,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1362,7 +1433,7 @@ msgid "Bahamas" msgstr "Bahama" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1383,6 +1454,12 @@ msgstr "Irland" msgid "Number of modules updated" msgstr "" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1458,6 +1535,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1527,7 +1610,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1612,12 +1695,6 @@ msgstr "" msgid "French (BE) / Français (BE)" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1688,6 +1765,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1698,13 +1781,19 @@ msgstr "" msgid "Slovenia" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1734,6 +1823,14 @@ msgstr "" msgid "New Zealand" msgstr "" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1783,19 +1880,13 @@ msgstr "" msgid "Valid" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "" @@ -1906,6 +1997,15 @@ msgstr "" msgid "HR sector" msgstr "" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1959,6 +2059,11 @@ msgstr "" msgid "Main Company" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2045,8 +2150,9 @@ msgid "Sir" msgstr "" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2145,7 +2251,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2169,6 +2275,12 @@ msgstr "" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2189,7 +2301,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "" @@ -2214,6 +2332,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2266,11 +2389,6 @@ msgstr "" msgid "VAT" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2307,20 +2425,28 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" " %s" msgstr "" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2396,6 +2522,12 @@ msgstr "" msgid "EAN13" msgstr "" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2453,7 +2585,7 @@ msgid "Ecuador" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2519,7 +2651,7 @@ msgid "Action to Trigger" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2714,18 +2846,13 @@ msgstr "" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2771,7 +2898,7 @@ msgid "Rules" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2839,7 +2966,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -2869,6 +2996,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2900,7 +3033,7 @@ msgid "Benin" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2930,6 +3063,14 @@ msgstr "" msgid "API ID" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3175,6 +3316,12 @@ msgstr "" msgid "Nicaragua" msgstr "" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3453,7 +3600,8 @@ msgid "Bank Type" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "" @@ -3475,7 +3623,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3493,7 +3641,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3525,7 +3673,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3600,6 +3750,11 @@ msgstr "" msgid "Cape Verde" msgstr "" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3613,6 +3768,12 @@ msgstr "" msgid "ir.actions.url" msgstr "" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3646,8 +3807,9 @@ msgid "French / Français" msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" msgstr "" #. module: base @@ -3898,6 +4060,14 @@ msgstr "" msgid "ir.attachment" msgstr "" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3936,8 +4106,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -3967,11 +4137,8 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" msgstr "" #. module: base @@ -4080,6 +4247,18 @@ msgstr "" msgid "Signature" msgstr "" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4101,7 +4280,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4142,8 +4321,10 @@ msgid "Contacts" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" msgstr "" #. module: base @@ -4173,6 +4354,12 @@ msgstr "" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4217,14 +4404,8 @@ msgid "Mongolia" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -4339,11 +4520,6 @@ msgstr "" msgid "Password" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4443,7 +4619,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4511,7 +4687,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4589,7 +4765,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4662,7 +4844,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4710,6 +4892,11 @@ msgstr "" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4824,6 +5011,14 @@ msgstr "" msgid "Nepal" msgstr "" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4853,14 +5048,14 @@ msgid "Update Modules List" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4879,6 +5074,12 @@ msgstr "" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5009,6 +5210,13 @@ msgstr "" msgid "Iteration" msgstr "" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5047,7 +5255,12 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "" @@ -5058,7 +5271,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5068,6 +5281,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5185,7 +5404,7 @@ msgid "ir.actions.todo" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5259,17 +5478,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5278,7 +5503,7 @@ msgid "Python Code" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "" @@ -5397,7 +5622,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5436,7 +5661,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5648,7 +5873,7 @@ msgid "Afghanistan, Islamic State of" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "" @@ -5669,6 +5894,12 @@ msgstr "" msgid "Kind" msgstr "" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5924,6 +6155,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5933,11 +6172,6 @@ msgstr "" msgid "Address" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6016,7 +6250,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6100,7 +6334,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6121,11 +6355,19 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6172,6 +6414,14 @@ msgstr "" msgid "Home Action" msgstr "" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6200,10 +6450,9 @@ msgid "Stop All" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6254,7 +6503,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6312,7 +6561,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6364,7 +6613,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6445,7 +6694,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6483,6 +6739,12 @@ msgstr "" msgid "Arguments" msgstr "" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6493,14 +6755,29 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" msgstr "" #. module: base @@ -6606,7 +6883,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6657,6 +6934,15 @@ msgstr "" msgid "Object" msgstr "" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6692,7 +6978,7 @@ msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6833,7 +7119,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6889,7 +7175,7 @@ msgid "Action Type" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -6992,11 +7278,23 @@ msgstr "" msgid "workflow.instance" msgstr "" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7171,6 +7469,11 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7308,7 +7611,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7506,7 +7809,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7550,6 +7853,14 @@ msgstr "" msgid "Antigua and Barbuda" msgstr "" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7608,7 +7919,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7618,6 +7929,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7674,6 +7990,35 @@ msgstr "" msgid "Turkmenistan" msgstr "" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7802,7 +8147,7 @@ msgid "Internal Header/Footer" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7841,6 +8186,14 @@ msgstr "" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7864,7 +8217,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7911,11 +8264,18 @@ msgid "Low" msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7924,7 +8284,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8078,7 +8438,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8090,6 +8450,11 @@ msgstr "" msgid "Resource" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8101,7 +8466,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8113,6 +8478,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8237,7 +8610,7 @@ msgid "Azerbaijan" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "" @@ -8264,8 +8637,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" msgstr "" #. module: base @@ -8564,7 +8937,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8624,7 +8997,7 @@ msgid "Workflow Instances" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "" diff --git a/bin/addons/base/i18n/de.po b/bin/addons/base/i18n/de.po index 8a0809687bd..e29d9758c17 100644 --- a/bin/addons/base/i18n/de.po +++ b/bin/addons/base/i18n/de.po @@ -7,15 +7,15 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-14 08:16+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" +"PO-Revision-Date: 2011-01-01 06:52+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:54+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:00+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -42,6 +42,16 @@ msgstr "Andere Konfigurationen" msgid "DateTime" msgstr "Datum Zeit" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" +"Das zweite Argument des many2many Feldes %s sollte eine SQL Tabelle sein! " +"Sie benutzen %s, welches keine gültige SQL Tabellenbezeichnung ist." + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -54,12 +64,6 @@ msgstr "Metadaten" msgid "View Architecture" msgstr "Ansicht Aufbau" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Sie können diese Form des Dokuments nicht erzeugen ! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -110,6 +114,16 @@ msgstr "Zeige Menütips" msgid "Created Views" msgstr "Erstellte Ansichten" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" +"Sie haben keine Schreibrechte für den Beleg (%s) ! Stellen Sie sicher, dass " +"Sie der folgenden Gruppe zugeordnet sind: %s." + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -126,11 +140,10 @@ msgid "South Korea" msgstr "Südkorea" #. 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 "Verbindungen" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "Abhängigkeitsfehler" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -142,13 +155,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Swasiland" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "erstellt." + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "Holzlieferaten" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -180,13 +200,13 @@ msgid "Search Partner" msgstr "Suche Partner" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "\"smtp_server\" muss definiert sein um Mails an Benuzter zu senden" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "neu" @@ -217,7 +237,7 @@ msgid "Contact Name" msgstr "Kontakt" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -241,6 +261,12 @@ msgstr "Aktiv" msgid "Wizard Name" msgstr "Assistent Name" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "Fehler bei group_by Argument" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -273,7 +299,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "Widget" @@ -324,7 +349,7 @@ msgid "Netherlands Antilles" msgstr "Niederländische Antillen" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -348,11 +373,6 @@ msgstr "Griechisch / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "Bosnisch" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -362,6 +382,13 @@ msgstr "" "Wenn dieses Häckchen gesetzt wird, wird der vorherige Report mit dem " "gleichen Namen gedruck." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" +"Die 'Lesen' Methode ('read') ist für dieses Objekt nicht eingerichtet !" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -388,6 +415,12 @@ msgstr "Kolumbien" msgid "Schedule Upgrade" msgstr "Plane Upgrade" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "Der Schlüssel '%s' konnte im Auswahlfeld '%s' nicht gefunden werden." + #. module: base #: help:res.country,code:0 msgid "" @@ -431,7 +464,7 @@ msgid "Miscellaneous Suppliers" msgstr "Sonstige Lieferanten" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -445,7 +478,7 @@ msgstr "Auswahl der auszuführenden Aktion, Bericht, Assistent" #. module: base #: view:res.config.users:0 msgid "New User" -msgstr "" +msgstr "Neuer Benutzer" #. module: base #: view:base.language.export:0 @@ -572,7 +605,7 @@ msgstr "Albanian / Shqip" #. module: base #: model:ir.ui.menu,name:base.menu_crm_config_opportunity msgid "Opportunities" -msgstr "" +msgstr "Verkaufschancen" #. module: base #: model:ir.model,name:base.model_base_language_export @@ -687,6 +720,12 @@ msgstr "" "Definiert die Sprache der Schnittstelle, wird verwendet, wenn die " "Übersetzung geladen ist." +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "Die Trennregel ist für dieses Objekt nicht implementiert !" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -751,6 +790,16 @@ msgstr "%B - Kompletter Monatsname" msgid "Type" msgstr "Typ" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" +"Die Sprache mit dem Kürzel \"%s\" wurde nicht für Ihr System definiert!\n" +"Definieren Sie diese Sprache über das Menü Administration." + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -777,6 +826,20 @@ msgstr "Fehlerhafter xml Code für diese Ansicht!" msgid "Cayman Islands" msgstr "Cayman Inseln" +#. 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 "Verbindungen" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" +"Datensatz #%d von %s wurde nicht gefunden, kann somit nicht kopiert werden !" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -791,7 +854,7 @@ msgstr "Zeichen" #: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_form #: model:ir.ui.menu,name:base.menu_publisher_warranty_contract msgid "Contracts" -msgstr "" +msgstr "Wartungsvertrag" #. module: base #: selection:base.language.install,lang:0 @@ -887,6 +950,22 @@ msgstr "Haiti" msgid "Search" msgstr "Suche" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" +"Die Aktion kann nicht fertiggestellt werden, wahrscheinlich aufgrund einer " +"der folgenden Fehler:\n" +"- Löschen: Sie versuchen einen Datensatz zu löschen, auf den noch andere " +"Datensätze referenzieren\n" +"- Neu/Aktualisierung: Ein Pflicht-Feld wurde nicht oder nicht richtig " +"ausgefüllt" + #. module: base #: view:ir.rule:0 msgid "" @@ -942,16 +1021,17 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "Es existiert keine Sprache mit dem Code \"%s\"" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" +"Es ist ein Fehler bei der Kommunikation mit dem Wartungsserver aufgetreten." #. module: base #: help:ir.actions.server,email:0 @@ -967,7 +1047,7 @@ msgstr "" #. module: base #: view:res.lang:0 msgid "%Y - Year with century." -msgstr "" +msgstr "%Y - Jahr mit Jahrhundert." #. module: base #: report:ir.module.reference.graph:0 @@ -981,6 +1061,15 @@ msgid "" "system. After the contract has been registered, you will be able to send " "issues directly to OpenERP." msgstr "" +"Dieser Assistent hilft Ihnen bei der Registrierung des Wartungsvertrags. " +"Nachdem der Wartungsvertrag registriert wurde, können Sie Probleme direkt an " +"OpenERP berichten." + +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "Die Suche ist für dieses Objekt nicht eingerichtet !" #. module: base #: view:wizard.ir.model.menu.create:0 @@ -1031,7 +1120,7 @@ msgid "On Create" msgstr "Bei Erzeugung" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1152,12 +1241,6 @@ msgstr "Sie können dieses Dokument nicht lesen ! (%s)" msgid "Day: %(day)s" msgstr "Tag: %(day)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Sie können dieses Dokument nicht lesen! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1208,8 +1291,8 @@ msgstr "" "object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (Kopie)" @@ -1229,7 +1312,7 @@ msgstr "Partner" #. module: base #: field:res.partner.category,parent_left:0 msgid "Left parent" -msgstr "" +msgstr "Übergeordneter Partner" #. module: base #: model:ir.actions.act_window,name:base.res_widget_act_window @@ -1289,7 +1372,7 @@ msgid "Formula" msgstr "Formel" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "Kann den root Benutzer nicht entfernen!" @@ -1300,7 +1383,8 @@ msgid "Malawi" msgstr "Malawi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "%s (copy)" @@ -1352,7 +1436,6 @@ msgstr "Baum" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1383,6 +1466,12 @@ msgstr "" "Wenn Sie das CSV Format verwenden, überprüfen Sie, ob die erste Zeile " "folgendes Format hat:" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "Nicht implementierte search_memory Methode !" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1436,7 +1525,7 @@ msgid "Bahamas" msgstr "Bahamas" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1459,6 +1548,12 @@ msgstr "Irland" msgid "Number of modules updated" msgstr "Anzahl Module mit Updates" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "Nicht implementierte set_memory Methode !" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1516,6 +1611,10 @@ msgid "" "access to selected functionalities within the system. Click on 'Done' if you " "do not wish to add more users at this stage, you can always do this later." msgstr "" +"Legen Sie zusätzliche Benutzer an und weisen Sie den neuen Benutzern eine " +"Gruppen zu, um die Zugriffsrechte auf bestimmte Programmfunktionen " +"einzuschränken. Klicken Sie auf 'Überspringen' wenn Sie jetzt keine " +"zusätzlichen Benutzer anlegen möchten und dies später nachholen möchten." #. module: base #: model:res.country,name:base.bz @@ -1541,6 +1640,12 @@ msgstr "" "Komma-getrennte Liste aller erlaubten Ansichstypen wie 'form', 'tree', " "'calendar', etc. (Default: tree,form)" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "Ein Beleg wurde seit der letzten Ansicht geändert (%s:%d)" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1613,7 +1718,7 @@ msgid "Madagascar" msgstr "Madagaskar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1702,12 +1807,6 @@ msgstr "Email Addresse" msgid "French (BE) / Français (BE)" msgstr "Französisch (BE) / Français (BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Sie können nicht in diesem Dokument schreiben ! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1780,23 +1879,35 @@ msgstr "" "Name des Objektes, dessen Funktion ausgeführt wird, wenn das Steuerprogramm " "(Scheduler) läuft (z.B. res.partner)" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "Die perm_read Methode wurde für dieses Objekt nicht umgesetzt!" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." -msgstr "" +msgstr "%y - Jahr ohne Jahrhundert [00,99]." #. module: base #: model:res.country,name:base.si msgid "Slovenia" msgstr "Slowenien" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "Fehlerhafte Objekt Architektur !" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "EMail Nachrichten" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "Fehler!" @@ -1826,6 +1937,16 @@ msgstr "Enddatum" msgid "New Zealand" msgstr "Neuseeland" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" +"Ein Datensatz der modifiziert werden sollte, wurde bereits gelöscht " +"(Belegart : %s)." + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1879,19 +2000,13 @@ msgstr "Fehler! Sie können keine rekursiven Unternehmen erzeugen." msgid "Valid" msgstr "Gültig" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Sie können dieses Dokument nicht löschen ! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "Kann Modul '%s' nicht upgraden. Es ist gar nicht installiert." @@ -1910,7 +2025,7 @@ msgstr "Armenien" #: model:ir.actions.act_window,name:base.ir_property_form #: model:ir.ui.menu,name:base.menu_ir_property_form_all msgid "Configuration Parameters" -msgstr "Konfiguriere Paramater" +msgstr "Konfigurationsparameter" #. module: base #: constraint:ir.cron:0 @@ -1965,7 +2080,7 @@ msgstr "Konfiguration Iteration" #. module: base #: selection:publisher_warranty.contract,state:0 msgid "Canceled" -msgstr "" +msgstr "Abgebrochen" #. module: base #: model:res.country,name:base.at @@ -2002,6 +2117,18 @@ msgstr "Signal (subflow.*)" msgid "HR sector" msgstr "Personalwesen" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" +"Fehler bei Spezifikation des \"Auftrags\". Eine gültige Spezifikation für " +"einen \"Auftrag\" ist eine komma separierte Liste gültiger Feldbezeichnungen " +"(optional erweitert durch die Angabe einer auf-/absteigenden Sortierung)." + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -2057,6 +2184,11 @@ msgstr "Abhängigkeiten" msgid "Main Company" msgstr "Hauptunternehmen" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "Web Icon Datei (hover)" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2147,9 +2279,10 @@ msgid "Sir" msgstr "Herr" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" -msgstr "Wählen Sie das Module (zip Datei) für den Import" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" +msgstr "Es wurde keine Ansicht des Typs '%s' für diese Struktur definiert!" #. module: base #: field:ir.default,ref_id:0 @@ -2247,7 +2380,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "Bitte spezifiziere Startaktion !" @@ -2271,6 +2404,12 @@ msgstr "Rechts-nach-Links" msgid "Filters" msgstr "Filter" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "Prüfen Sie ob alle Positionen über eine Spalte %d verfügen" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2291,7 +2430,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "Wenn nicht definiert, dann Standardwert für neue Datensätze" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "Rekursive Einträge entdeckt" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "Fehler durch Abhängigkeiten zwischen Modulen !" @@ -2320,6 +2465,11 @@ msgstr "" "Umsatzsteuer Identifikationsnummer. Aktivieren Sie die Option, wenn der " "Partner Ust-pflichtig ist. Wird von der Ust-Voranmeldung verwendet." +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2372,11 +2522,6 @@ msgstr "EAN Prüfung" msgid "VAT" msgstr "USt." -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2395,7 +2540,7 @@ msgstr "%x - Anvisierte Datenpräsentation." #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." -msgstr "" +msgstr "%d - Tag des Monats [01,31]." #. module: base #: model:res.country,name:base.tj @@ -2413,7 +2558,7 @@ msgid "M." msgstr "Hr." #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2422,13 +2567,24 @@ msgstr "" "Kann die Modul Datei nicht erstellen:\n" "%s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" +"Der Vorgang ist entweder aufgrund der Zugriffsrechte nicht zugelassen, oder " +"wurde bei einem bereits gelöschten Beleg vorgenommen (Vorgang: lesen, " +"Belegtyp: %s)." + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Nauru" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "Die Zertifikats-ID muss eindeutig sein!" @@ -2507,6 +2663,12 @@ msgstr "SMS senden" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "Fehlerhafte Architektur!" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2565,7 +2727,7 @@ msgid "Ecuador" msgstr "Ekuador" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2612,7 +2774,7 @@ msgstr "Basis Feld" #. module: base #: view:publisher_warranty.contract:0 msgid "Validate" -msgstr "" +msgstr "Bestätigen" #. module: base #: field:ir.actions.todo,restart:0 @@ -2637,7 +2799,7 @@ msgid "Action to Trigger" msgstr "Auszulösende Aktion" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2804,7 +2966,7 @@ msgstr "" #. module: base #: sql_constraint:ir.config_parameter:0 msgid "Key must be unique." -msgstr "" +msgstr "Schlüssel muss eindeutig sein!" #. module: base #: view:ir.actions.act_window:0 @@ -2840,29 +3002,27 @@ msgstr "Autor" msgid "FYROM" msgstr "FYROM" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Erweiterte Suche" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Datums und Zeitangabe." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" "\n" "Click 'Continue' and enjoy your OpenERP experience..." msgstr "" +"Ihre Datenbank ist nun vollständig eingerichtet.\n" +"\n" +"Klicken Sie auf 'Fortsetzen' . Viel Erfolg mit Ihrem OpenERP Setup!" #. module: base #: selection:base.language.install,lang:0 msgid "Hebrew / עִבְרִי" -msgstr "" +msgstr "Hebräisch / עִבְרִי" #. module: base #: model:res.country,name:base.bo @@ -2897,7 +3057,7 @@ msgid "Rules" msgstr "Fallsteuerung" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2969,7 +3129,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "Sie können die Vorlage '%s' nicht entfernen !" @@ -2999,6 +3159,12 @@ msgstr "Abkhazian / аҧсуа" msgid "System Configuration Done" msgstr "Systemkonfiguration beendet" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "Fehler während der Prüfung des Feldes field(s) %s: %s" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -3030,10 +3196,10 @@ msgid "Benin" msgstr "Benin" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." -msgstr "" +msgstr "Der Wartungsvertrag wurde bereits im System registriert." #. module: base #: help:ir.sequence,suffix:0 @@ -3060,6 +3226,16 @@ msgstr "RML Header" msgid "API ID" msgstr "API ID" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" +"Sie können den Beleg (%s) nicht erstellen ! Stellen Sie sicher das der " +"Benutzer der Gruppe %s angehört." + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3131,7 +3307,7 @@ msgstr "Brasilien" #. module: base #: view:res.lang:0 msgid "%M - Minute [00,59]." -msgstr "" +msgstr "%M - Minute [00,59]." #. module: base #: selection:ir.module.module,license:0 @@ -3290,6 +3466,12 @@ msgid "" "Would your payment have been carried out after this mail was sent, please " "consider the present one as void." msgstr "" +"Bitte berücksichtigen Sie das folgende Rechnungen fällig sind. Wenn Sie die " +"Rechnungen bereits überwiesen haben, senden Sie uns bitte eine " +"Zahlungsbestätigung Ihrer Bank. Sollte sich die Bezahlung weiter verzögern, " +"kontaktieren Sie uns bitte.\n" +"Insofern Sie die offenen Rechnungen nach Eingang dieser Zahlungserinnerung " +"bezahlt haben, betrachten Sie diese Benachrichtung bitte als gegenstandlos." #. module: base #: model:res.country,name:base.mx @@ -3316,6 +3498,13 @@ msgstr "res.users" msgid "Nicaragua" msgstr "Nikaragua" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" +"Die 'schreiben' Methode ('write') wurde für dieses Objekt nicht freigegeben!" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3382,7 +3571,7 @@ msgstr "Kasachstan" #. module: base #: view:res.lang:0 msgid "%w - Weekday number [0(Sunday),6]." -msgstr "" +msgstr "%w - Wochentagnummer [0(Sunday),6]." #. module: base #: field:ir.actions.report.xml,name:0 @@ -3599,7 +3788,8 @@ msgid "Bank Type" msgstr "Bank Typ" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "Der Name der Gruppe kann nicht mit einem \"-\" beginnen" @@ -3621,7 +3811,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "Gujarati / ગુજરાતી" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3632,7 +3822,7 @@ msgstr "" #. module: base #: view:publisher_warranty.contract.wizard:0 msgid "Please enter the serial key provided in your contract document:" -msgstr "" +msgstr "Bitte geben Sie hier die Seriennummer aus dem Wartungsvertrag ein." #. module: base #: view:workflow.activity:0 @@ -3641,7 +3831,7 @@ msgid "Flow Start" msgstr "Workflow Anfang" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3674,7 +3864,9 @@ msgid "Guadeloupe (French)" msgstr "Guadeloupe (Frankreich)" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "Benutzerfehler" @@ -3745,13 +3937,18 @@ msgstr "Partner Adressen" #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." -msgstr "" +msgstr "%S - Sekunden [00,61]." #. module: base #: model:res.country,name:base.cv msgid "Cape Verde" msgstr "Kapverdische Inseln" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "Wählen Sie das Module (zip Datei) für den Import" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3765,6 +3962,13 @@ msgstr "Ereignisse" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" +"Falsche ID für den Datensatz, erhalte %r, erwarte aber einen integer Wert" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3798,9 +4002,12 @@ msgid "French / Français" msgstr "French / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Erzeugtes Menü" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "" +"Die 'erstellen' Methode ('create') wurde für dieses Objekt nicht freigegeben " +"!" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -4053,6 +4260,17 @@ msgstr "Ratschlag" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" +"Sie können diesen Vorgang nicht ausführen. Die Erstellung eines neuen " +"Datensatzes wurde für dieses Objekt nicht freigegeben, das dieses Objekt " +"lediglich für die Auswertungen benötigt wird." + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -4093,9 +4311,9 @@ msgid "Project" msgstr "Projekt" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" -msgstr "" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" +msgstr "Web Icon Bild (hover)" #. module: base #: view:base.module.import:0 @@ -4110,7 +4328,7 @@ msgstr "Abgebrochen" #. module: base #: view:res.config.users:0 msgid "Create User" -msgstr "" +msgstr "Erstelle Benutzer" #. module: base #: view:partner.clear.ids:0 @@ -4121,15 +4339,12 @@ msgstr "Wollen Sie die ID's löschen? " #: field:publisher_warranty.contract,name:0 #: field:publisher_warranty.contract.wizard,name:0 msgid "Serial Key" -msgstr "" +msgstr "Seriennummer" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Kunde" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "Audit" #. module: base #: model:res.country,name:base.lc @@ -4196,7 +4411,7 @@ msgstr "Felder Mapping" #. module: base #: view:publisher_warranty.contract:0 msgid "Refresh Validation Dates" -msgstr "" +msgstr "Aktualisiere Bestätigungsdatum" #. module: base #: view:ir.model:0 @@ -4237,6 +4452,18 @@ msgstr "Vietnam" msgid "Signature" msgstr "Signatur" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "Nicht implementiert" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4258,7 +4485,7 @@ msgid "False means for every user" msgstr "Falsch bedeutet \"für alle Benutzer\"" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "Der Name des Moduls muss eindeutig sein!" @@ -4299,9 +4526,13 @@ msgid "Contacts" msgstr "Partner Kontakte" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Färöer Inseln" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" +"Es ist nicht möglich diesen Beleg zu löschen, da er als Standard Eigenschaft " +"verwendet wird." #. module: base #: view:res.widget.wizard:0 @@ -4328,7 +4559,13 @@ msgstr "Tschechische Republik" #. module: base #: view:res.widget.wizard:0 msgid "Widget Wizard" -msgstr "" +msgstr "Assistent Widgets" + +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "Fehler bei Feldern für Kalenderansicht" #. module: base #: selection:ir.property,type:0 @@ -4376,15 +4613,9 @@ msgid "Mongolia" msgstr "Mongolei" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Fehler" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Erzeugtes Menü" #. module: base #: selection:ir.ui.view,type:0 @@ -4440,7 +4671,7 @@ msgstr "Dieses Fenster" #. module: base #: view:publisher_warranty.contract:0 msgid "Publisher Warranty Contracts" -msgstr "" +msgstr "Wartungsvertrag des Herausgebers" #. module: base #: help:res.log,name:0 @@ -4500,11 +4731,6 @@ msgstr "Saint Vincent & Grenadines" msgid "Password" msgstr "Passwort" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4610,7 +4836,7 @@ msgid "Change My Preferences" msgstr "Einstellungen jetzt vornehmen" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Ungültiger Modulname in der Aktionsdefinition." @@ -4655,7 +4881,7 @@ msgstr "Kokos-Inseln" #: selection:base.module.import,state:0 #: selection:base.module.update,state:0 msgid "init" -msgstr "" +msgstr "init" #. module: base #: view:res.lang:0 @@ -4678,7 +4904,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4760,7 +4986,14 @@ msgid "Client Actions" msgstr "Aktion der Anwendungsprogramme" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" +"Die existierende Methode wurde für dieses Objekt nicht implementiert !" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4835,7 +5068,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Modul %s: ungültiges Zertifikat" @@ -4886,6 +5119,11 @@ msgstr "SMS senden" msgid "Accepted Users" msgstr "Zugelassene Benutzer" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "Web Icon Grafik" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4986,7 +5224,7 @@ msgstr "Dominika" #: sql_constraint:publisher_warranty.contract:0 msgid "" "Your publisher warranty contract is already subscribed in the system !" -msgstr "" +msgstr "Ihr Wartungsvertrag wurde bereits aktiviert!" #. module: base #: help:ir.cron,nextcall:0 @@ -5009,6 +5247,16 @@ msgstr "" msgid "Nepal" msgstr "Nepal" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" +"Fehlerhafter Wert für das referenzierende Feld \"%s\" (letzter Teil sollte " +"ein Integer Wert ungleich Null sein): \"%s\"." + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -5041,14 +5289,16 @@ msgid "Update Modules List" msgstr "Update der Module" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" +"Es ist nicht möglich das Modul \"%s\" upzudaten, da folgende externe " +"Moduleabhängigkeit nicht erfüllt werden konnte: \"%s\"" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5071,6 +5321,12 @@ msgstr "Weiter" msgid "Thai / ภาษาไทย" msgstr "Thailand / ภาษาไทย" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "Das Objekt %s existiert nicht" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5201,6 +5457,13 @@ msgstr "Komplette Bezeichnung des Landes." msgid "Iteration" msgstr "Iteration" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "Benutzer Fehler" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5239,7 +5502,12 @@ msgid "Solomon Islands" msgstr "Solomoninseln" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "ZugrifffFehler" @@ -5250,7 +5518,7 @@ msgid "Waiting" msgstr "Warteliste" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "Konnte Modul base nicht laden" @@ -5260,10 +5528,16 @@ msgstr "Konnte Modul base nicht laden" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "Die Kopieren Methode ist für dieses Objekt nicht eingerichtet!" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" -msgstr "" +msgstr "Datum Erstellung" #. module: base #: view:ir.translation:0 @@ -5382,7 +5656,7 @@ msgid "ir.actions.todo" msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "Kann vorhergehende ir.actions.todo nicht finden" @@ -5448,7 +5722,7 @@ msgstr "Unternehmen" #. module: base #: view:res.lang:0 msgid "%H - Hour (24-hour clock) [00,23]." -msgstr "" +msgstr "%H - Stunde (24-Stunden Format) [00,23]." #. module: base #: model:ir.model,name:base.model_res_widget @@ -5456,19 +5730,25 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "Modul %s existiert nicht!" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" "Eine Sprache, die in einer Benutzereinstellung definiert ist, kann nicht " "gelöscht werden." +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "Nicht eingerichtete get_memory Methode !" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5477,7 +5757,7 @@ msgid "Python Code" msgstr "Python Code" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "Kann die Module Datei nicht erzeugen: %s!" @@ -5556,12 +5836,12 @@ msgstr "Schließe/Öffne Fenster..." #. module: base #: view:res.lang:0 msgid "%I - Hour (12-hour clock) [01,12]." -msgstr "" +msgstr "%I - Stunde (12-Stunden Format) [01,12]." #. module: base #: selection:publisher_warranty.contract.wizard,state:0 msgid "Finished" -msgstr "" +msgstr "Abgeschlossen" #. module: base #: model:res.country,name:base.de @@ -5596,10 +5876,11 @@ msgid "" msgstr "Ansicht Type: 'tree' für Listen, 'Form' für andere Ansichten" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" +"Klicken Sie auf \"Weiter\", um die nächste Erweiterung zu konfigurieren" #. module: base #: field:ir.actions.server,record_id:0 @@ -5636,7 +5917,7 @@ msgid "" msgstr "Auswahl des Objektes, für das die Aktion gelten soll" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "BItte definieren Sie die Server Option --email-from" @@ -5851,7 +6132,7 @@ msgid "Afghanistan, Islamic State of" msgstr "Afghanistan" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Fehler !" @@ -5872,6 +6153,12 @@ msgstr "Intervall in Minuten" msgid "Kind" msgstr "Art" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "Diese Methode existiert zwischenzeitlich nicht mehr" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -6065,7 +6352,7 @@ msgstr "Schreibrechte" #. module: base #: view:res.lang:0 msgid "%m - Month number [01,12]." -msgstr "" +msgstr "%m - Monat Nummer [01,12]." #. module: base #: field:res.bank,city:0 @@ -6141,6 +6428,16 @@ msgid "To browse official translations, you can start with these links:" msgstr "" "Um die offiziellen Übersetzungen zu sehen, verwenden Sie bitte diese Links" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" +"Sie haben kein Leserecht für diesen Beleg (%s) ! Stellen Sie sicher, dass " +"der Benutzer Mitglied der folgenden Gruppe ist: %s." + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -6150,11 +6447,6 @@ msgstr "" msgid "Address" msgstr "Adresse" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6233,7 +6525,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "St. Kitts und Nevis" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6322,7 +6614,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6347,11 +6639,19 @@ msgid "Child IDs" msgstr "untergeordnete ID's" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problem in Konfiguration 'Datensatznummer' in der Server Aktion!" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "ValidierungsFehler" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6401,6 +6701,16 @@ msgstr "E-Mail:" msgid "Home Action" msgstr "Aktionen" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" +"Die Summe der Daten (2. Feld) ist 0.\n" +"Ein Tortendiagramm kann damit nicht gezeichnet werden." + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6429,11 +6739,10 @@ msgid "Stop All" msgstr "Stop" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" -msgstr "" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" +msgstr "Die read_group Methode wurde für dieses Objekt nicht umgesetzt !" #. module: base #: view:ir.model.data:0 @@ -6484,10 +6793,10 @@ msgid "Start update" msgstr "Beginne Aktualisierung" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" -msgstr "" +msgstr "Fehler bei Vertragsprüfung" #. module: base #: field:res.country.state,name:0 @@ -6542,7 +6851,7 @@ msgid "HR Manager Dashboard" msgstr "Pinnwand Personalleitung" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6599,7 +6908,7 @@ msgid "Module Update" msgstr "Module aktualisieren" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "Folgende Module sind nicht installiert oder unbekannt: %s" @@ -6680,7 +6989,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "Der Name des Benutzer, verwendet für Suche und Listen." #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "Datenintegritäts Fehler" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "Die Feldlänge kann niemals kleiner als 1 sein!" @@ -6693,7 +7009,7 @@ msgstr "Somalia" #. module: base #: selection:publisher_warranty.contract,state:0 msgid "Terminated" -msgstr "" +msgstr "Abgebrochen" #. module: base #: model:res.partner.category,name:base.res_partner_category_13 @@ -6718,6 +7034,12 @@ msgstr "An" msgid "Arguments" msgstr "Argumente" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "Die Datenbank ID existiert nicht: %s : %s" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6728,15 +7050,30 @@ msgstr "GPL Version 2" msgid "GPL Version 3" msgstr "GPL Version 3" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "Schlüssel '%s' wurde im Auswahlfeld '%s' nicht gefunden" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "richtige EAN13" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" -msgstr "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "Der Wert \"%s\" für das Feld \"%s\" ist nicht in dieser Auswahl" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Kunde" #. module: base #: selection:base.language.install,lang:0 @@ -6828,7 +7165,7 @@ msgstr "Installation Abbrechen" #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" -msgstr "" +msgstr "Übergeordneter Partner" #. module: base #: view:res.lang:0 @@ -6841,11 +7178,13 @@ msgid "Copy Object" msgstr "Kopiere Objekt" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" msgstr "" +"Gruppe(n) kann/können nicht gelöscht werden, da immer noch einzelne " +"Benutz(er) zugeordnet sind: %s !" #. module: base #: model:ir.actions.act_window,name:base.action_country_state @@ -6892,6 +7231,18 @@ msgstr "Table Ref." msgid "Object" msgstr "Objekt" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" +"\n" +"\n" +"[Objekt mit Referenz: %s - %s]" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6929,7 +7280,7 @@ msgid "User Ref." msgstr "Benutzer Referenz" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "Warnung !" @@ -7070,7 +7421,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "Fehlerhafte Sucheinstellungen" @@ -7128,7 +7479,7 @@ msgid "Action Type" msgstr "Aktion" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7220,7 +7571,7 @@ msgstr "Entferne Haken, um den Kontakt in der Ansicht zu verstecken" #. module: base #: model:ir.model,name:base.model_res_widget_wizard msgid "Add a widget for User" -msgstr "" +msgstr "Assistent hinzufügen für Benutzer" #. module: base #: model:res.country,name:base.dk @@ -7237,11 +7588,23 @@ msgstr "Landescode" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "Unbekannte Attribute %s in %s " + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "nicht definierte 'get' Funktion" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7418,6 +7781,11 @@ msgstr "Send Email" msgid "Menu Action" msgstr "Menü Aktion" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Färöer Inseln" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7446,7 +7814,7 @@ msgstr "Lieferanten" #. module: base #: view:publisher_warranty.contract.wizard:0 msgid "Register" -msgstr "" +msgstr "Registrieren" #. module: base #: field:res.request,ref_doc2:0 @@ -7560,7 +7928,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7622,7 +7990,7 @@ msgstr "Bulgarien" #. module: base #: view:publisher_warranty.contract.wizard:0 msgid "Publisher warranty contract successfully registered!" -msgstr "" +msgstr "Wartungsvertrag des Herausgebers wurde erfolgreich registriert" #. module: base #: model:res.country,name:base.ao @@ -7657,7 +8025,7 @@ msgstr "5. %y, %Y ==> 08, 2008" #. module: base #: model:res.partner.title,shortcut:base.res_partner_title_ltd msgid "ltd" -msgstr "" +msgstr "Ltd" #. module: base #: field:ir.model.fields,model_id:0 @@ -7768,7 +8136,7 @@ msgid "Account No." msgstr "Konto Nummer" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Basis Sprache 'en_US' kann nicht gelöscht werden !" @@ -7817,6 +8185,16 @@ msgstr "Übersetzung" msgid "Antigua and Barbuda" msgstr "Antigua und Barbados" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" +"Der Vorgang wurde aufgrund fehlender Berechtigungen blockiert, oder weil der " +"Beleg bereit gelöscht wurde (Operation: %s, Document type: %s)." + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7875,7 +8253,7 @@ msgid "Auto-Refresh" msgstr "Autospeicherung..." #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7886,6 +8264,11 @@ msgstr "" msgid "Diagram" msgstr "Diagramm" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis- und Futuna-Inseln" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7942,6 +8325,35 @@ msgstr "Bank Identifikation" msgid "Turkmenistan" msgstr "Turkmenistan" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Fehler" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -8070,7 +8482,7 @@ msgid "Internal Header/Footer" msgstr "InternerHeader/Footer" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -8111,6 +8523,16 @@ msgstr "Dominikanische Republik" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" +"Fehlerhafte Spezifikation der Gruppierung: \"%s\".\n" +"Eine group_by Spezifikation sollte eine gültige Liste mit Feldern aufweisen." + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -8136,7 +8558,7 @@ msgid "Event Logs" msgstr "Ereignisse Aufzeichnungen" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "System Konfiguration erledigt" @@ -8183,11 +8605,18 @@ msgid "Low" msgstr "Ausreichend" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Fehler! Sie können keine rekursiven Menüeinträge erstellen." +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "Registrieren eines Wartungsvertrags" + #. module: base #: view:ir.rule:0 msgid "" @@ -8198,10 +8627,11 @@ msgstr "" "aus Schritt 2 mit logisch ODER verknüpft." #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" +"Bitte prüfen Sie die Angaben zum Wartungsvertrag und deren Gültigkeit." #. module: base #: model:res.country,name:base.sv @@ -8256,7 +8686,7 @@ msgstr "Romanian / română" #. module: base #: view:res.log:0 msgid "System Logs" -msgstr "" +msgstr "System Protokolle" #. module: base #: selection:workflow.activity,join_mode:0 @@ -8356,7 +8786,7 @@ msgid "View Auto-Load" msgstr "Ansicht Autorefresh" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Sie können das Feld '%s' nicht entfernen!" @@ -8368,6 +8798,11 @@ msgstr "Sie können das Feld '%s' nicht entfernen!" msgid "Resource" msgstr "Ressource (Objekt)" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "Web Icon Datei" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8379,7 +8814,7 @@ msgid "View Ordering" msgstr "Ansicht Sortierung" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "Nicht erfüllte Abhängigkeit !" @@ -8393,6 +8828,16 @@ msgstr "" "Unterstützte Dateiformate: *.csv (Comma-separated values) or *.po (GetText " "Portable Objects)" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" +"Sie können diesen Beleg (%s) nicht löschen. Stellen Sie sicher, dass Sie als " +"Benutzer der folgenden Gruppe angehören: %s." + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8418,7 +8863,7 @@ msgstr "Slowakische Republik" #. module: base #: model:ir.ui.menu,name:base.publisher_warranty msgid "Publisher Warranty" -msgstr "" +msgstr "Wartung durch den Herausgeber" #. module: base #: model:res.country,name:base.aw @@ -8470,7 +8915,7 @@ msgstr "EMail & Unterschrift" #. module: base #: view:publisher_warranty.contract:0 msgid "Publisher Warranty Contract" -msgstr "" +msgstr "Wartungsvertrag des Herausgebers" #. module: base #: selection:base.language.install,lang:0 @@ -8522,7 +8967,7 @@ msgid "Azerbaijan" msgstr "Aserbaidschan" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Warnung" @@ -8549,9 +8994,9 @@ msgid "Czech / Čeština" msgstr "Czech / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis- und Futuna-Inseln" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Erweiterte Suche" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8605,6 +9050,10 @@ msgid "" "simplified interface, which has less features but is easier. You can always " "switch later from the user preferences." msgstr "" +"Wenn sie OpenERP erstmals verwenden, empfehlen wir Ihnen das vereinfachte " +"Benutzerinterface zu benutzen. Es bietet zwar weniger Funktionen, ist " +"dadurch aber auch leichter zu bedienen und verstehen. Sie können jederzeit " +"in Ihren Benutzereinstellungen auf das erweiterte Benutzerinterface wechseln." #. module: base #: model:ir.model,name:base.model_res_country @@ -8790,7 +9239,7 @@ msgstr "" #. module: base #: view:res.lang:0 msgid "%j - Day of the year [001,366]." -msgstr "" +msgstr "%j - Tag des Jahres [001,366]." #. module: base #: field:ir.actions.server,mobile:0 @@ -8859,7 +9308,7 @@ msgid "Account Owner" msgstr "Konto Inhaber" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "Unternehmenswechsel Warnhinweis" @@ -8867,7 +9316,7 @@ msgstr "Unternehmenswechsel Warnhinweis" #. module: base #: model:ir.actions.act_window,name:base.action_res_widget_wizard msgid "Homepage Widgets Management" -msgstr "" +msgstr "Verwaltung Homepage Widgets" #. module: base #: field:workflow,osv:0 @@ -8919,7 +9368,7 @@ msgid "Workflow Instances" msgstr "Workflow Objekte" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Partner: " @@ -10210,14 +10659,6 @@ msgstr "Russian / русский язык" #~ msgid "Choose a language to install:" #~ msgstr "Zu verwendende Sprache" -#, python-format -#~ msgid "" -#~ "The sum of the data (2nd field) is null.\n" -#~ "We can't draw a pie chart !" -#~ msgstr "" -#~ "Die Summe der Daten (2. Feld) ist 0.\n" -#~ "Ein Tortendiagramm kann damit nicht gezeichnet werden." - #, python-format #~ msgid "" #~ "You try to install a module that depends on the module: %s.\n" @@ -10230,6 +10671,10 @@ msgstr "Russian / русский язык" #~ msgid "You cannot perform this operation." #~ msgstr "Dieser Vorgang kann nicht durchgeführt werden." +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Sie können diese Form des Dokuments nicht erzeugen ! (%s)" + #~ msgid "txt" #~ msgstr "txt" @@ -10241,6 +10686,10 @@ msgstr "Russian / русский язык" #~ msgid "Password mismatch !" #~ msgstr "Passowort Fehleingabe" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Sie können dieses Dokument nicht lesen! (%s)" + #, python-format #~ msgid "" #~ "You try to install the module '%s' that depends on the module:'%s'.\n" @@ -10254,6 +10703,14 @@ msgstr "Russian / русский язык" #~ msgid "Pie charts need exactly two fields" #~ msgstr "Tortendiagramme benötigen exakt zwei Felder" +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Sie können dieses Dokument nicht löschen ! (%s)" + +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Sie können nicht in diesem Dokument schreiben ! (%s)" + #~ msgid "Make the rule global, otherwise it needs to be put on a group" #~ msgstr "" #~ "Mache die Regel global gültig, ansonsten muss diese auf Gruppeneben " @@ -10437,38 +10894,6 @@ msgstr "Russian / русский язык" #~ msgid "Your maintenance contract is already subscribed in the system !" #~ msgstr "Ihr Wartungsvertrag wurde bereits in Ihrem System registriert!" -#, python-format -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "[object with reference: %s - %s]" -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "[Objekt mit Referenz: %s - %s]" - -#, python-format -#~ msgid "Integrity Error" -#~ msgstr "Datenintegritäts Fehler" - -#, python-format -#~ msgid "" -#~ "The operation cannot be completed, probably due to the following:\n" -#~ "- deletion: you may be trying to delete a record while other records still " -#~ "reference it\n" -#~ "- creation/update: a mandatory field is not correctly set" -#~ msgstr "" -#~ "Die Aktion kann nicht fertiggestellt werden, wahrscheinlich aufgrund einer " -#~ "der folgenden Fehler:\n" -#~ "- Löschen: Sie versuchen einen Datensatz zu löschen, auf den noch andere " -#~ "Datensätze referenzieren\n" -#~ "- Neu/Aktualisierung: Ein Pflicht-Feld wurde nicht oder nicht richtig " -#~ "ausgefüllt" - -#, python-format -#~ msgid "Constraint Error" -#~ msgstr "Abhängigkeitsfehler" - #~ msgid "The Code of the Partner Function must be unique !" #~ msgstr "Der Code der Partnerfunktion muss eindeutig sein." diff --git a/bin/addons/base/i18n/el.po b/bin/addons/base/i18n/el.po index 97fce10985c..5a0763a929e 100644 --- a/bin/addons/base/i18n/el.po +++ b/bin/addons/base/i18n/el.po @@ -5,14 +5,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-18 08:23+0000\n" "Last-Translator: Dimitris Andavoglou \n" "Language-Team: nls@hellug.gr \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:54+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:16+0000\n" "X-Generator: Launchpad (build Unknown)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" @@ -42,6 +42,14 @@ msgstr "Άλλη Παραμετροποίηση" msgid "DateTime" msgstr "ΗμερομηνίαΏρα" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -54,12 +62,6 @@ msgstr "Μεταδεδομένα" msgid "View Architecture" msgstr "Προβολή Δομής" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Δεν μπορείτε να δημιουργήσετε τέτοιο έγγραφο! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -110,6 +112,14 @@ msgstr "Εμφάνιση Συμβουλών στο Μενού" msgid "Created Views" msgstr "Δημιουργημένες Προβολές" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -126,11 +136,10 @@ msgid "South Korea" msgstr "Νότια Κορέα" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "Ροές" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -142,13 +151,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Swaziland" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "Προμηθευτές Ξύλου" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -179,7 +195,7 @@ msgid "Search Partner" msgstr "Αναζήτηση συνεργάτη" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" @@ -187,7 +203,7 @@ msgstr "" "χρήστες" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "νέο" @@ -218,7 +234,7 @@ msgid "Contact Name" msgstr "Όνομα Επαφής" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -242,6 +258,12 @@ msgstr "ενεργό" msgid "Wizard Name" msgstr "Όνομα Αυτόματου Οδηγού" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -274,7 +296,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "Μικροεφαρμογή" @@ -325,7 +346,7 @@ msgid "Netherlands Antilles" msgstr "Netherlands Antilles (Ολλανδικές Αντίλλες)" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -347,11 +368,6 @@ msgstr "Greek / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "Bosnian / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "Εικονίδια ιστού" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -361,6 +377,12 @@ msgstr "" "Αν επιλέξετε αυτό, τη δεύτερη φορά που ο χρήστης θα εκτυπώσει το ίδιο όνομα " "συνημμένου, θα εκτυπωθεί η προηγούμενη αναφορά." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "Η μέθοδος ανάγνωσης δεν έχει αναπτυχθεί για αυτό το αντικείμενο!" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -389,6 +411,12 @@ msgstr "Colombia" msgid "Schedule Upgrade" msgstr "Προγραμματισμός Αναβάθμισης" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -434,7 +462,7 @@ msgid "Miscellaneous Suppliers" msgstr "Λοιποί προμηθευτές" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Τα ειδικά πεδία πρέπει να έχουν όνομα που ξεκινάει από 'x_' !" @@ -693,6 +721,12 @@ msgstr "" "Ορίζει τη γλώσσα για την διεπαφή χρήστη του χρήστη, όταν είναι διαθέσιμες οι " "μεταφράσεις του UI" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "Η μέθοδος αποσύνδεσης δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -757,6 +791,14 @@ msgstr "%B - Πλήρες όνομα μήνα." msgid "Type" msgstr "Τύπος" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -783,6 +825,19 @@ msgstr "Άκυρο XML για Αρχιτεκτονική Όψης!" msgid "Cayman Islands" msgstr "Cayman Islands" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "Ροές" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -894,6 +949,16 @@ msgstr "Haiti" msgid "Search" msgstr "Αναζήτηση" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -950,13 +1015,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "Δεν υπάρχει γλώσσα με κωδικό \"%s\"" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -990,6 +1055,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "Η μέθοδος αναζήτησης δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1039,7 +1110,7 @@ msgid "On Create" msgstr "Κατά τη Δημιουργία" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1160,12 +1231,6 @@ msgstr "Συνημμένη ID" msgid "Day: %(day)s" msgstr "Ημέρα: %(day)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Δεν μπορείτε να διαβάσετε αυτό το έγγραφο! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1215,8 +1280,8 @@ msgstr "" "object.list_price > object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (αντίγραφο)" @@ -1296,7 +1361,7 @@ msgid "Formula" msgstr "Τύπος" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "Can not remove root user!" @@ -1307,7 +1372,8 @@ msgid "Malawi" msgstr "Malawi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "%s (αντίγραφο)" @@ -1359,7 +1425,6 @@ msgstr "Δέντρο" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "Αφήστε το κενό αν δεν επιθυμείτε ο χρήστης να συνδέεται στο σύστημα." @@ -1388,6 +1453,12 @@ msgstr "" "Όταν χρησιμοποιείτε CSV μορφή, παρακαλούμε επίσης να ελέγξετε ότι η πρώτη " "γραμμή του αρχείου σας είναι ένα από τα ακόλουθα:" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "Not implemented search_memory method !" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1442,7 +1513,7 @@ msgid "Bahamas" msgstr "Bahamas" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1465,6 +1536,12 @@ msgstr "Ireland" msgid "Number of modules updated" msgstr "Αριθμός Αρθρωμάτων που ενημερώθηκαν" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "Not implemented set_memory method !" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1547,6 +1624,12 @@ msgstr "" "λίστα χωρισμένη με κόματα των επιτρεπόμενων προβολών,όπως " "'φόρμα','δέντρο','ημερολόγιο', κ.λπ. (Προεπιλογή: δέντρο, φόρμα)" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1619,7 +1702,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1711,12 +1794,6 @@ msgstr "Email Address" msgid "French (BE) / Français (BE)" msgstr "Γαλλικά (BE) / Français (BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Δεν μπορείτε να επέμβετε στο έγγραφο! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1789,6 +1866,12 @@ msgstr "" "Όνομα του αντικειμένου του οποίου η λειτουργία θα κληθεί όταν θα εκτελεστεί " "αυτός το πρόγραμμα. π.χ. 'res.partener'" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "The perm_read method is not implemented on this object !" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1799,13 +1882,19 @@ msgstr "" msgid "Slovenia" msgstr "Slovenia" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "Μηνύματα" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "Σφάλμα!" @@ -1835,6 +1924,14 @@ msgstr "Ημερ/νία Λήξης" msgid "New Zealand" msgstr "New Zealand" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1888,19 +1985,13 @@ msgstr "Σφάλμα! Υπάρχει εταιρεία με την ίδια πε msgid "Valid" msgstr "Έγκυρο" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Δεν μπορείτε να διαγράψετε αυτό το έγγραφο! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "" @@ -2013,6 +2104,15 @@ msgstr "Σινιάλο (υπο-ροή.*)" msgid "HR sector" msgstr "Τμήμα Ανθρωπίνων Πόρων" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -2069,6 +2169,11 @@ msgstr "Dependencies" msgid "Main Company" msgstr "Κύρια Εταρεία" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2159,9 +2264,10 @@ msgid "Sir" msgstr "Κύριος" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" -msgstr "Επιλέξτε πακέτο αρθρώματος για εισαγωγή (αρχείο .zip):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" +msgstr "" #. module: base #: field:ir.default,ref_id:0 @@ -2259,7 +2365,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "Παρακαλώ επιλέξτε ενέργειας προς εκτέλεση!" @@ -2283,6 +2389,12 @@ msgstr "Right-to-Left" msgid "Filters" msgstr "Φίλτρα" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "Παρακαλώ ελέγξτε ότι όλες οι γραμμές σας έχουν %d στήλες." + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2303,7 +2415,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "Αν δεν έχει ορισθεί, δρα ως η προεπιλεγμένη τιμή για νέους πόρους." #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "Σφάλμα στις εξαρτήσεις Αρθρωμάτων!" @@ -2333,6 +2451,11 @@ msgstr "" "Αριθμός ΦΠΑ. Επιλέξτε αυτό αν ο συνεργάτης πληρώνει ΦΠΑ. Χρησιμοποιείται " "στην περιοδική δήλωση ΦΠΑ." +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2385,11 +2508,6 @@ msgstr "Έλεγχος ean" msgid "VAT" msgstr "ΦΠΑ" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "Αιώρηση εικονιδίων ιστού" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2426,7 +2544,7 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2435,13 +2553,21 @@ msgstr "" "Αδύνατη η δημιουργία του αρχείου Αρθρώματος:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Nauru" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "Το πιστοποιητικό ταυτότητας του στοιχείου πρέπει να είναι μοναδικό !" @@ -2520,6 +2646,12 @@ msgstr "Αποστολή SMS" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2579,7 +2711,7 @@ msgid "Ecuador" msgstr "Ecuador" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2651,7 +2783,7 @@ msgid "Action to Trigger" msgstr "Ενέργεια προς Εκκίνηση" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2854,18 +2986,13 @@ msgstr "Δημιουργός" msgid "FYROM" msgstr "FYROM" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Προχωρημένη Αναζήτηση" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Ορθή εμφάνιση ημερ/νίας και ώρας" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2914,7 +3041,7 @@ msgid "Rules" msgstr "Κανόνες" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2988,7 +3115,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "Δεν μπορείτε να διαγράψετε το μοντέλο '%s' !" @@ -3018,6 +3145,12 @@ msgstr "Αμπχαζιανά / аҧсуа" msgid "System Configuration Done" msgstr "Διαμόρφωση συστήματος ολοκληρώθηκε" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "Σφάλμα κατά την επικύρωση των πεδίων %s: %s" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -3049,7 +3182,7 @@ msgid "Benin" msgstr "Benin" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -3079,6 +3212,14 @@ msgstr "RML Κεφαλίδα" msgid "API ID" msgstr "API ID" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3338,6 +3479,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "Nicaragua" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "Η μέθοδος εγγραφής δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3621,7 +3768,8 @@ msgid "Bank Type" msgstr "Τύπος Τράπεζας" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "Το όνομα της ομάδας δεν μπορεί να ξεκινάει με \"-\"" @@ -3643,7 +3791,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "Gujarati / ગુજરાતી" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3663,7 +3811,7 @@ msgid "Flow Start" msgstr "Εκκίνηση Ροής" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3697,7 +3845,9 @@ msgid "Guadeloupe (French)" msgstr "Guadeloupe (French)" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "Σφάλμα Χρήστη" @@ -3772,6 +3922,11 @@ msgstr "" msgid "Cape Verde" msgstr "Cape Verde (Πράσινο Ακρωτήριο)" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "Επιλέξτε πακέτο αρθρώματος για εισαγωγή (αρχείο .zip):" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3785,6 +3940,12 @@ msgstr "Συμβάντα" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "Wrong ID for the browse record, got %r, expected an integer." + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3818,9 +3979,10 @@ msgid "French / Français" msgstr "French / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Δημιουργημένα Μενού" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "The create method is not implemented on this object !" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -4073,6 +4235,14 @@ msgstr "Συμβουλή" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -4113,8 +4283,8 @@ msgid "Project" msgstr "Έργο" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -4144,12 +4314,9 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Πελάτης" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "Λογιστικός έλεγχος" #. module: base #: model:res.country,name:base.lc @@ -4259,6 +4426,18 @@ msgstr "Vietnam" msgid "Signature" msgstr "Υπογραφή" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "Μη ενεργοποιημένο" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4280,7 +4459,7 @@ msgid "False means for every user" msgstr "Τιμή False σημαίνει για κάθε χρήστη" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "Το όνομα του αρθρώματος πρέπει να είναι μοναδικό !" @@ -4321,9 +4500,11 @@ msgid "Contacts" msgstr "Στοιχεία" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4352,6 +4533,12 @@ msgstr "Czech Republic" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4396,15 +4583,9 @@ msgid "Mongolia" msgstr "Mongolia" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Σφάλμα" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Δημιουργημένα Μενού" #. module: base #: selection:ir.ui.view,type:0 @@ -4521,11 +4702,6 @@ msgstr "Saint Vincent & Grenadines" msgid "Password" msgstr "Συνθηματικό" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "Αρχείο εικονιδίου" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4627,7 +4803,7 @@ msgid "Change My Preferences" msgstr "Αλλαγή Προτιμήσεων" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Λανθασμένο όνομα μοντέλου στην δήλωση ενέργειας" @@ -4695,7 +4871,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4776,7 +4952,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4852,7 +5034,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Άρθρωμα %s: Άκυρο Πιστοποιητικό Ποιότητας" @@ -4903,6 +5085,11 @@ msgstr "Αποστολή γραπτού μηνύματος" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -5017,6 +5204,14 @@ msgstr "" msgid "Nepal" msgstr "Nepal" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -5046,14 +5241,14 @@ msgid "Update Modules List" msgstr "Ενημέρωση Λίστας Αρθρωμάτων" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5072,6 +5267,12 @@ msgstr "Συνέχεια" msgid "Thai / ภาษาไทย" msgstr "Ταϋλανδικά / ภาษาไทย" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5202,6 +5403,13 @@ msgstr "Πλήρες όνομα χώρας." msgid "Iteration" msgstr "Επανάληψη" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "UserError" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5242,7 +5450,12 @@ msgid "Solomon Islands" msgstr "Solomon Islands" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "AccessError" @@ -5253,7 +5466,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "Δεν μπορεί να φορτωθεί το βασικό άρθρωμα" @@ -5263,6 +5476,12 @@ msgstr "Δεν μπορεί να φορτωθεί το βασικό άρθρωμ msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 μ.μ." +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "The copy method is not implemented on this object !" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5380,7 +5599,7 @@ msgid "ir.actions.todo" msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5454,18 +5673,24 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" "Δεν μπορείτε να διαγράψετε τη γλώσσα που είναι προτιμώμενη από τον χρήστη!" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "Not implemented get_memory method !" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5474,7 +5699,7 @@ msgid "Python Code" msgstr "Python Code" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "Αδύνατη η δημιουργία του αρχείου Αρθρώματος: %s!" @@ -5593,7 +5818,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5635,7 +5860,7 @@ msgstr "" "Select the object on which the action will work (read, write, create)." #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5847,7 +6072,7 @@ msgid "Afghanistan, Islamic State of" msgstr "Afghanistan, Islamic State of" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Σφάλμα!" @@ -5868,6 +6093,12 @@ msgstr "Μονάδα Διαστήματος" msgid "Kind" msgstr "Είδος" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "Αυτή η μέθοδος δε χρησιμοποιείται πια" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -6125,6 +6356,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -6134,11 +6373,6 @@ msgstr "" msgid "Address" msgstr "Διεύθυνση" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6217,7 +6451,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "Saint Kitts & Nevis Anguilla" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6303,7 +6537,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6328,11 +6562,19 @@ msgid "Child IDs" msgstr "Child IDs" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problem in configuration `Record Id` in Server Action!" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "ValidateError" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6381,6 +6623,16 @@ msgstr "Email" msgid "Home Action" msgstr "Home Action" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" +"Το άθροισμα των δεδομένων στο 2ο πεδίο είναι μηδενικό.\n" +"Αδύνατη η δημιουργία κυκλικού διαγράμματος !" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6409,10 +6661,9 @@ msgid "Stop All" msgstr "Όλα Stop" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6463,7 +6714,7 @@ msgid "Start update" msgstr "Έναρξη ενημέρωσης" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6523,7 +6774,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6575,7 +6826,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "Τα παρακάτω αθρώματα δεν είναι εγκατεστημένα ή είναι άγνωστα:%s" @@ -6656,7 +6907,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "ο μέγεθος του πεδίου δεν μπορεί ποτέ να είναι μικρότερο του 1!" @@ -6694,6 +6952,12 @@ msgstr "Σε" msgid "Arguments" msgstr "Arguments" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6704,15 +6968,30 @@ msgstr "GPL Έκδοση 2" msgid "GPL Version 3" msgstr "GPL Έκδοση 3" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "Σωστός EAN13" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" -msgstr "Λογιστικός έλεγχος" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "Η τιμή \"%s\" για οτ πεδίο \"%s\" δεν είναι επιλεγμένη!" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Πελάτης" #. module: base #: selection:base.language.install,lang:0 @@ -6817,7 +7096,7 @@ msgid "Copy Object" msgstr "Αντιγραφή Αντικειμένου" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6868,6 +7147,15 @@ msgstr "Table Ref." msgid "Object" msgstr "Αντικείμενο" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6903,7 +7191,7 @@ msgid "User Ref." msgstr "User Ref." #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "Προσοχή!" @@ -7044,7 +7332,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "Λάθος κριτήρια αναζήτησης" @@ -7102,7 +7390,7 @@ msgid "Action Type" msgstr "Τύπος Ενέργειας" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7205,11 +7493,23 @@ msgstr "Κωδικός Χώρας" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "undefined get method !" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7386,6 +7686,11 @@ msgstr "Αποστολή Email" msgid "Menu Action" msgstr "Λειτουργία Μενού" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Faroe Islands" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7526,7 +7831,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7730,7 +8035,7 @@ msgid "Account No." msgstr "Αρ. Λογαριασμού" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Η βασική γλώσσα 'en_US' δεν μπορεί να διαγραφεί!" @@ -7774,6 +8079,14 @@ msgstr "Μετάφραση" msgid "Antigua and Barbuda" msgstr "Antigua and Barbuda" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7832,7 +8145,7 @@ msgid "Auto-Refresh" msgstr "Auto-Refresh" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7842,6 +8155,11 @@ msgstr "" msgid "Diagram" msgstr "Διάγραμμα" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis and Futuna Islands" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7898,6 +8216,35 @@ msgstr "Τραπεζικός Κωδικός Αναγνώρισης" msgid "Turkmenistan" msgstr "Turkmenistan" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Σφάλμα" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -8026,7 +8373,7 @@ msgid "Internal Header/Footer" msgstr "Εσωτερική Κεφαλίδα/Υποσέλιδο" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -8067,6 +8414,14 @@ msgstr "Dominican Republic" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -8093,7 +8448,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -8140,11 +8495,18 @@ msgid "Low" msgstr "Χαμηλή" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -8153,7 +8515,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8307,7 +8669,7 @@ msgid "View Auto-Load" msgstr "Αυτόματη Φόρτωση Προβολής" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Δεν μπορείτε να καταργήσετε το πεδίο '%s' !" @@ -8319,6 +8681,11 @@ msgstr "Δεν μπορείτε να καταργήσετε το πεδίο '%s' msgid "Resource" msgstr "Πηγή" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8330,7 +8697,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "Ανεκπλήρωτες εξαρτήσεις!" @@ -8344,6 +8711,14 @@ msgstr "" "Υποστηριζόμενες μορφές αρχείων *.csv (Comma-separated values) ή *.po " "(GetText Portable Objects)" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8468,7 +8843,7 @@ msgid "Azerbaijan" msgstr "Azerbaijan" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Προσοχή" @@ -8495,9 +8870,9 @@ msgid "Czech / Čeština" msgstr "Czech / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis and Futuna Islands" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Προχωρημένη Αναζήτηση" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8800,7 +9175,7 @@ msgid "Account Owner" msgstr "Ιδιοκτήτης Λογαρισμού" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "Προειδοποίηση αλλαγής εταιρίας" @@ -8860,7 +9235,7 @@ msgid "Workflow Instances" msgstr "Workflow Instances" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Συνεργάτες " @@ -8932,6 +9307,10 @@ msgstr "Ρώσσικα / русский язык" #~ msgid "Product quantity" #~ msgstr "Ποσ. προϊόντος" +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Δεν μπορείτε να δημιουργήσετε τέτοιο έγγραφο! (%s)" + #, python-format #~ msgid "Account move line \"%s\" is not valid" #~ msgstr "Η κίνηση λογαριασμού στην γραμμή \"%s\" δεν είναι έγκυρη" @@ -8946,10 +9325,6 @@ msgstr "Ρώσσικα / русский язык" #~ msgid "Yearly" #~ msgstr "Ετησίως" -#, python-format -#~ msgid "The unlink method is not implemented on this object !" -#~ msgstr "Η μέθοδος αποσύνδεσης δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" - #~ 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 " @@ -9038,10 +9413,6 @@ msgstr "Ρώσσικα / русский язык" #~ msgid "Workcenter name" #~ msgstr "Όνομα κέντρου εργασίας" -#, python-format -#~ msgid "The read method is not implemented on this object !" -#~ msgstr "Η μέθοδος ανάγνωσης δεν έχει αναπτυχθεί για αυτό το αντικείμενο!" - #~ msgid "STOCK_MEDIA_REWIND" #~ msgstr "STOCK_MEDIA_REWIND" @@ -9130,14 +9501,6 @@ msgstr "Ρώσσικα / русский язык" #~ msgid "You try to bypass an access rule (Document type: %s)." #~ msgstr "Υπάρχουν κανόνες πρόσβασης για έγγραφα %s." -#, python-format -#~ msgid "" -#~ "The sum of the data (2nd field) is null.\n" -#~ "We can't draw a pie chart !" -#~ msgstr "" -#~ "Το άθροισμα των δεδομένων στο 2ο πεδίο είναι μηδενικό.\n" -#~ "Αδύνατη η δημιουργία κυκλικού διαγράμματος !" - #, python-format #~ msgid "invalid mode for test_state" #~ msgstr "άκυρη κατάσταση για test_state" @@ -9292,6 +9655,10 @@ msgstr "Ρώσσικα / русский язык" #~ msgstr "" #~ "Αδύνατη η τροποποίηση/διαγραφή ημερολογίου με εγγραφές σε αυτή την περίοδο!" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Δεν μπορείτε να διαβάσετε αυτό το έγγραφο! (%s)" + #~ msgid "STOCK_FIND_AND_REPLACE" #~ msgstr "STOCK_FIND_AND_REPLACE" @@ -9336,10 +9703,6 @@ msgstr "Ρώσσικα / русский язык" #~ msgid "Product Cost Structure" #~ msgstr "Δομή Κόστους Προϊόντος" -#, python-format -#~ msgid "Not implemented search_memory method !" -#~ msgstr "Not implemented search_memory method !" - #~ msgid "STOCK_PROPERTIES" #~ msgstr "STOCK_PROPERTIES" @@ -9353,10 +9716,6 @@ msgstr "Ρώσσικα / русский язык" #~ msgid "Year without century: %(y)s" #~ msgstr "Χρονολογία χωρίς τον αιώνα: %(y)s" -#, python-format -#~ msgid "Not implemented set_memory method !" -#~ msgstr "Not implemented set_memory method !" - #, python-format #~ msgid "A sign-out must be right after a sign-in !" #~ msgstr "Η έξοδος πρέπει να είναι μετά από την είσοδο!" @@ -9399,6 +9758,10 @@ msgstr "Ρώσσικα / русский язык" #~ msgid "Configure User" #~ msgstr "Ρυθμίσεις Χρήστη" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Δεν μπορείτε να επέμβετε στο έγγραφο! (%s)" + #, python-format #~ msgid "Product Margins" #~ msgstr "Περιθώρια Προϊόντων" @@ -9417,10 +9780,6 @@ msgstr "Ρώσσικα / русский язык" #~ msgid "STOCK_PRINT_PREVIEW" #~ msgstr "STOCK_PRINT_PREVIEW" -#, python-format -#~ msgid "The perm_read method is not implemented on this object !" -#~ msgstr "The perm_read method is not implemented on this object !" - #, python-format #~ msgid "" #~ "No journal defined on the related employee.\n" @@ -9475,6 +9834,10 @@ msgstr "Ρώσσικα / русский язык" #~ msgid "Please verify that an account is defined in the journal." #~ msgstr "Παρακαλώ ελέγξτε αν έχει οριστεί λογαριασμός στο ημερολόγιο." +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Δεν μπορείτε να διαγράψετε αυτό το έγγραφο! (%s)" + #, python-format #~ msgid "No Partner!" #~ msgstr "Δεν υπάρχει Συνεργάτης!" @@ -9565,10 +9928,6 @@ msgstr "Ρώσσικα / русский язык" #~ msgid "Report Footer" #~ msgstr "Report Footer" -#, python-format -#~ msgid "Please check that all your lines have %d columns." -#~ msgstr "Παρακαλώ ελέγξτε ότι όλες οι γραμμές σας έχουν %d στήλες." - #~ msgid "Import language" #~ msgstr "Εισαγωγή γλώσσας" @@ -9694,10 +10053,6 @@ msgstr "Ρώσσικα / русский язык" #~ msgid "System Upgrade" #~ msgstr "Αναβάθμιση Συστήματος" -#, python-format -#~ msgid "The create method is not implemented on this object !" -#~ msgstr "The create method is not implemented on this object !" - #, python-format #~ msgid "1" #~ msgstr "1" @@ -9779,10 +10134,6 @@ msgstr "Ρώσσικα / русский язык" #~ "φορά. Οι λιγότερο συνηθισμένες επιλογές και πεδία δεν θα προβάλονται. " #~ "Μπορείτε να το αλλάξετε αυτό αργότερα από το μενού της Διαχείρισης." -#, python-format -#~ msgid "Error occurred while validating the field(s) %s: %s" -#~ msgstr "Σφάλμα κατά την επικύρωση των πεδίων %s: %s" - #, python-format #~ msgid "You can not change the tax, you should remove and recreate lines !" #~ msgstr "" @@ -9887,10 +10238,6 @@ msgstr "Ρώσσικα / русский язык" #~ "Όλα τα email έχουν αποσταλλεί με επιτυχία στους Συνεργάτες:\n" #~ "\n" -#, python-format -#~ msgid "The write method is not implemented on this object !" -#~ msgstr "Η μέθοδος εγγραφής δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" - #~ msgid "Sale Opportunity" #~ msgstr "Ευκαιρία Πώλησης" @@ -10011,10 +10358,6 @@ msgstr "Ρώσσικα / русский язык" #~ msgid "STOCK_MEDIA_STOP" #~ msgstr "STOCK_MEDIA_STOP" -#, python-format -#~ msgid "Wrong ID for the browse record, got %r, expected an integer." -#~ msgstr "Wrong ID for the browse record, got %r, expected an integer." - #~ msgid "STOCK_DND_MULTIPLE" #~ msgstr "STOCK_DND_MULTIPLE" @@ -10150,10 +10493,6 @@ msgstr "Ρώσσικα / русский язык" #~ "Παρακαλώ ελέγξετε την αξία του τιμολογίου!\n" #~ "Το πραγματικό σύνολο δεν συμπίπτει με την υπολογιζόμενη τιμή." -#, python-format -#~ msgid "Not Implemented" -#~ msgstr "Μη ενεργοποιημένο" - #~ msgid "Maintenance" #~ msgstr "Συντήρηση" @@ -10417,10 +10756,6 @@ msgstr "Ρώσσικα / русский язык" #~ "Δεν μπορείτε να δημοσιεύσετε μια Ενότητα Προγράμματος που δεν έχει " #~ "εγκατασταθεί!" -#, python-format -#~ msgid "UserError" -#~ msgstr "UserError" - #~ msgid "STOCK_MEDIA_RECORD" #~ msgstr "STOCK_MEDIA_RECORD" @@ -10436,10 +10771,6 @@ msgstr "Ρώσσικα / русский язык" #~ msgid "Entries are not of the same account or already reconciled ! " #~ msgstr "Οι εγγραφές δεν είναι του ίδιου λογαριασμού ή έχουν ήδη συμφωνηθεί! " -#, python-format -#~ msgid "The copy method is not implemented on this object !" -#~ msgstr "The copy method is not implemented on this object !" - #, python-format #~ msgid "Integrity Error !" #~ msgstr "Σφάλμα ακεραιότητας!" @@ -10495,10 +10826,6 @@ msgstr "Ρώσσικα / русский язык" #~ msgid "You cannot perform this operation." #~ msgstr "Δεν μπορείτε να εκτελέσετε αυτή τη λειτουργία." -#, python-format -#~ msgid "Not implemented get_memory method !" -#~ msgstr "Not implemented get_memory method !" - #~ msgid "Customers Partners" #~ msgstr "Πελάτες" @@ -10608,10 +10935,6 @@ msgstr "Ρώσσικα / русский язык" #~ msgid "terp-hr" #~ msgstr "terp-hr" -#, python-format -#~ msgid "This method does not exist anymore" -#~ msgstr "Αυτή η μέθοδος δε χρησιμοποιείται πια" - #~ msgid "Manual" #~ msgstr "Manual" @@ -10728,10 +11051,6 @@ msgstr "Ρώσσικα / русский язык" #~ msgid "Ok" #~ msgstr "ΟΚ" -#, python-format -#~ msgid "ValidateError" -#~ msgstr "ValidateError" - #, python-format #~ msgid "Modify line failed !" #~ msgstr "Ανεπιτυχής τροποποίηση γραμμής!" @@ -10859,10 +11178,6 @@ msgstr "Ρώσσικα / русский язык" #~ msgid "Could not cancel this purchase order !" #~ msgstr "Η Παραγγελία δεν μπορεί να ακυρωθεί!" -#, python-format -#~ msgid "The value \"%s\" for the field \"%s\" is not in the selection" -#~ msgstr "Η τιμή \"%s\" για οτ πεδίο \"%s\" δεν είναι επιλεγμένη!" - #~ msgid "Automatic XSL:RML" #~ msgstr "Automatic XSL:RML" @@ -11009,10 +11324,6 @@ msgstr "Ρώσσικα / русский язык" #~ msgid "Bad Configuration !" #~ msgstr "Λάθος ρυθμίσεις!" -#, python-format -#~ msgid "undefined get method !" -#~ msgstr "undefined get method !" - #, python-format #~ msgid "You can not validate a non-balanced entry !" #~ msgstr "Δεν μπορείτε να επικυρώσετε μιά μή αντιλογισμένη εγγραφή!" @@ -11399,10 +11710,6 @@ msgstr "Ρώσσικα / русский язык" #~ msgid "No BoM defined for this product !" #~ msgstr "Δεν έχει οριστεί Κ.Υ. για το Προϊόν!" -#, python-format -#~ msgid "The search method is not implemented on this object !" -#~ msgstr "Η μέθοδος αναζήτησης δεν έχει αναπτυχθεί σε αυτό το αντικείμενο!" - #, python-format #~ msgid "The Sign-in date must be in the past" #~ msgstr "Η ημερ/νία Εισόδου πρέπει να είναι παρελθοντική" @@ -11735,8 +12042,17 @@ msgstr "Ρώσσικα / русский язык" #~ msgid "terp-mail-forward" #~ msgstr "terp-mail-forward" +#~ msgid "Web Icons Hover" +#~ msgstr "Αιώρηση εικονιδίων ιστού" + +#~ msgid "Web Icons" +#~ msgstr "Εικονίδια ιστού" + #~ msgid "Maintenance Contracts" #~ msgstr "Συμβόλαια συντήρησης" +#~ msgid "Icon File" +#~ msgstr "Αρχείο εικονιδίου" + #~ msgid "Limited Company" #~ msgstr "Εταιρία Περιορισμένης Ευθύνης" diff --git a/bin/addons/base/i18n/en_GB.po b/bin/addons/base/i18n/en_GB.po index 1175ddda129..408cc133d02 100644 --- a/bin/addons/base/i18n/en_GB.po +++ b/bin/addons/base/i18n/en_GB.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-21 15:20+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: English (United Kingdom) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:59+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:21+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -41,6 +41,14 @@ msgstr "Other configuration" msgid "DateTime" msgstr "DateTime" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -53,12 +61,6 @@ msgstr "Metadata" msgid "View Architecture" msgstr "View Architecture" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "You can not create this kind of document! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -109,6 +111,14 @@ msgstr "Display menu tips" msgid "Created Views" msgstr "Created Views" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -125,11 +135,10 @@ msgid "South Korea" msgstr "South Korea" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "Transitions" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -141,13 +150,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Swaziland" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "Wood suppliers" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -178,13 +194,13 @@ msgid "Search Partner" msgstr "Search Partner" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "\"smtp_server\" needs to be set to send e-mails to users" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "new" @@ -215,7 +231,7 @@ msgid "Contact Name" msgstr "Contact Name" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -239,6 +255,12 @@ msgstr "active" msgid "Wizard Name" msgstr "Wizard Name" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -271,7 +293,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "Widget" @@ -322,7 +343,7 @@ msgid "Netherlands Antilles" msgstr "Netherlands Antilles" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -346,11 +367,6 @@ msgstr "Greek / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "Bosnian / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "Web icons" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -358,6 +374,12 @@ msgid "" "name, it returns the previous report." msgstr "On checking this successive reports are generated from cache." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -384,6 +406,12 @@ msgstr "Colombia" msgid "Schedule Upgrade" msgstr "Schedule Upgrade" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -428,7 +456,7 @@ msgid "Miscellaneous Suppliers" msgstr "Miscellaneous suppliers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "The name of custom fields must begin with 'x_' !" @@ -685,6 +713,12 @@ msgstr "" "Sets the language for the user's user interface, when UI translations are " "available" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -749,6 +783,14 @@ msgstr "%B - Full month name." msgid "Type" msgstr "Type" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -775,6 +817,19 @@ msgstr "Invalid XML code in Arch fields of View!" msgid "Cayman Islands" msgstr "Cayman Islands" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "Transitions" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -885,6 +940,16 @@ msgstr "Haiti" msgid "Search" msgstr "Search" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -941,13 +1006,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "No language with code \"%s\" exists" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "Error during communication with the publisher warranty server." @@ -984,6 +1049,12 @@ msgstr "" "system. After the contract has been registered, you will be able to send " "issues directly to OpenERP." +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1033,7 +1104,7 @@ msgid "On Create" msgstr "On Create" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1154,12 +1225,6 @@ msgstr "Attached ID" msgid "Day: %(day)s" msgstr "Day: %(day)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "You are not permitted to access this document! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1207,8 +1272,8 @@ msgstr "" "object.list_price > object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (copy)" @@ -1288,7 +1353,7 @@ msgid "Formula" msgstr "Formula" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "Can not remove root user!" @@ -1299,7 +1364,8 @@ msgid "Malawi" msgstr "Malawi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "%s (copy)" @@ -1351,7 +1417,6 @@ msgstr "Tree" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1381,6 +1446,12 @@ msgstr "" "When using CSV format, please also check that the first line of your file is " "one of the following:" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1434,7 +1505,7 @@ msgid "Bahamas" msgstr "Bahamas" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1456,6 +1527,12 @@ msgstr "Ireland" msgid "Number of modules updated" msgstr "Number of modules updated" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1540,6 +1617,12 @@ msgstr "" "Comma-separated list of allowed view modes, such as 'form', 'tree', " "'calendar', etc. (Default: tree,form)" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1612,7 +1695,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1701,12 +1784,6 @@ msgstr "E-mail Address" msgid "French (BE) / Français (BE)" msgstr "French (BE) / Français (BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "You can not write in this document! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1779,6 +1856,12 @@ msgstr "" "Name of object whose function will be called when this scheduler will run. " "e.g. 'res.partener'" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1789,13 +1872,19 @@ msgstr "%y - Year without century [00,99]." msgid "Slovenia" msgstr "Slovenia" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "Messages" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "Error!" @@ -1825,6 +1914,14 @@ msgstr "Ending Date" msgid "New Zealand" msgstr "New Zealand" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1877,19 +1974,13 @@ msgstr "Error! You can not create recursive companies." msgid "Valid" msgstr "Valid" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "You can not delete this document! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "Can not upgrade module '%s'. It is not installed." @@ -2000,6 +2091,15 @@ msgstr "Signal (subflow.*)" msgid "HR sector" msgstr "HR sector" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -2056,6 +2156,11 @@ msgstr "Dependencies" msgid "Main Company" msgstr "Main Company" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2146,8 +2251,9 @@ msgid "Sir" msgstr "Sir" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2246,7 +2352,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "Please specify an action to launch !" @@ -2270,6 +2376,12 @@ msgstr "Right-to-Left" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2290,7 +2402,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "Recursion error in modules dependencies !" @@ -2317,6 +2435,11 @@ msgstr "" "Value Added Tax number. Check the box if the partner is subjected to the " "VAT. Used by the VAT legal statement." +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2369,11 +2492,6 @@ msgstr "" msgid "VAT" msgstr "VAT" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2410,7 +2528,7 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2419,13 +2537,21 @@ msgstr "" "Can not create the module file:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Nauru" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2501,6 +2627,12 @@ msgstr "Send SMS" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2558,7 +2690,7 @@ msgid "Ecuador" msgstr "Ecuador" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2629,7 +2761,7 @@ msgid "Action to Trigger" msgstr "Action to Trigger" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2826,18 +2958,13 @@ msgstr "Author" msgid "FYROM" msgstr "FYROM" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Advanced Search" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Appropriate date and time representation." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2883,7 +3010,7 @@ msgid "Rules" msgstr "Rules" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "You try to remove a module that is installed or will be installed" @@ -2954,7 +3081,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "You cannot remove the model '%s' !" @@ -2984,6 +3111,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -3015,7 +3148,7 @@ msgid "Benin" msgstr "Benin" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -3045,6 +3178,14 @@ msgstr "RML Header" msgid "API ID" msgstr "API ID" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3295,6 +3436,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "Nicaragua" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3575,7 +3722,8 @@ msgid "Bank Type" msgstr "Bank Type" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "The name of the group can not start with \"-\"" @@ -3597,7 +3745,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3615,7 +3763,7 @@ msgid "Flow Start" msgstr "Flow Start" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3647,7 +3795,9 @@ msgid "Guadeloupe (French)" msgstr "Guadeloupe (French)" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3722,6 +3872,11 @@ msgstr "" msgid "Cape Verde" msgstr "Cape Verde" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3735,6 +3890,12 @@ msgstr "Events" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3768,9 +3929,10 @@ msgid "French / Français" msgstr "French / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Created Menus" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -4021,6 +4183,14 @@ msgstr "Advice" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -4061,8 +4231,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -4092,12 +4262,9 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Customer" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "" #. module: base #: model:res.country,name:base.lc @@ -4206,6 +4373,18 @@ msgstr "Vietnam" msgid "Signature" msgstr "Signature" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4227,7 +4406,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4268,9 +4447,11 @@ msgid "Contacts" msgstr "Contacts" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4299,6 +4480,12 @@ msgstr "Czech Republic" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4343,15 +4530,9 @@ msgid "Mongolia" msgstr "Mongolia" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Error" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Created Menus" #. module: base #: selection:ir.ui.view,type:0 @@ -4465,11 +4646,6 @@ msgstr "Saint Vincent & Grenadines" msgid "Password" msgstr "Password" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4569,7 +4745,7 @@ msgid "Change My Preferences" msgstr "Change My Preferences" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Invalid model name in the action definition." @@ -4637,7 +4813,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4715,7 +4891,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4790,7 +4972,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Module %s: Invalid Quality Certificate" @@ -4841,6 +5023,11 @@ msgstr "" msgid "Accepted Users" msgstr "Accepted Users" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4955,6 +5142,14 @@ msgstr "" msgid "Nepal" msgstr "Nepal" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4984,14 +5179,14 @@ msgid "Update Modules List" msgstr "Update Modules List" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5010,6 +5205,12 @@ msgstr "Continue" msgid "Thai / ภาษาไทย" msgstr "Thai / ภาษาไทย" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5140,6 +5341,13 @@ msgstr "The full name of the country." msgid "Iteration" msgstr "Iteration" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5178,7 +5386,12 @@ msgid "Solomon Islands" msgstr "Solomon Islands" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "AccessError" @@ -5189,7 +5402,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5199,6 +5412,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5316,7 +5535,7 @@ msgid "ir.actions.todo" msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5390,17 +5609,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5409,7 +5634,7 @@ msgid "Python Code" msgstr "Python Code" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "Can not create the module file: %s !" @@ -5528,7 +5753,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5568,7 +5793,7 @@ msgstr "" "Select the object on which the action will work (read, write, create)." #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5780,7 +6005,7 @@ msgid "Afghanistan, Islamic State of" msgstr "Afghanistan, Islamic State of" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Error !" @@ -5801,6 +6026,12 @@ msgstr "Interval Unit" msgid "Kind" msgstr "Kind" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -6058,6 +6289,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -6067,11 +6306,6 @@ msgstr "" msgid "Address" msgstr "Address" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6150,7 +6384,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "Saint Kitts & Nevis Anguilla" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6236,7 +6470,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6257,11 +6491,19 @@ msgid "Child IDs" msgstr "Child IDs" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problem in configuration `Record Id` in Server Action!" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6308,6 +6550,14 @@ msgstr "E-mail" msgid "Home Action" msgstr "Home Action" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6336,10 +6586,9 @@ msgid "Stop All" msgstr "Stop All" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6390,7 +6639,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6448,7 +6697,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6500,7 +6749,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6581,7 +6830,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6619,6 +6875,12 @@ msgstr "To" msgid "Arguments" msgstr "Arguments" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6629,16 +6891,31 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" msgstr "" +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Customer" + #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (NI) / Español (NI)" @@ -6742,7 +7019,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6793,6 +7070,15 @@ msgstr "Table Ref." msgid "Object" msgstr "Object" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6828,7 +7114,7 @@ msgid "User Ref." msgstr "User Ref." #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6969,7 +7255,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7027,7 +7313,7 @@ msgid "Action Type" msgstr "Action Type" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7130,11 +7416,23 @@ msgstr "Country Code" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7311,6 +7609,11 @@ msgstr "Send E-mail" msgid "Menu Action" msgstr "Menu Action" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Faroe Islands" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7448,7 +7751,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7646,7 +7949,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7690,6 +7993,14 @@ msgstr "Translation Value" msgid "Antigua and Barbuda" msgstr "Antigua and Barbuda" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7748,7 +8059,7 @@ msgid "Auto-Refresh" msgstr "Auto-Refresh" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7758,6 +8069,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis and Futuna Islands" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7814,6 +8130,35 @@ msgstr "Bank Identifier Code" msgid "Turkmenistan" msgstr "Turkmenistan" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Error" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7942,7 +8287,7 @@ msgid "Internal Header/Footer" msgstr "Internal Header/Footer" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7983,6 +8328,14 @@ msgstr "Dominican Republic" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -8008,7 +8361,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -8055,11 +8408,18 @@ msgid "Low" msgstr "Low" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -8068,7 +8428,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8222,7 +8582,7 @@ msgid "View Auto-Load" msgstr "View Auto-Load" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8234,6 +8594,11 @@ msgstr "" msgid "Resource" msgstr "Resource" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8245,7 +8610,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8257,6 +8622,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8381,7 +8754,7 @@ msgid "Azerbaijan" msgstr "Azerbaijan" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Warning" @@ -8408,9 +8781,9 @@ msgid "Czech / Čeština" msgstr "Czech / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis and Futuna Islands" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Advanced Search" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8712,7 +9085,7 @@ msgid "Account Owner" msgstr "Account Owner" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8772,7 +9145,7 @@ msgid "Workflow Instances" msgstr "Workflow Instances" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Partners: " @@ -8832,6 +9205,10 @@ msgstr "Sri Lanka" msgid "Russian / русский язык" msgstr "Russian / русский язык" +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "You can not create this kind of document! (%s)" + #~ msgid "%j - Day of the year as a decimal number [001,366]." #~ msgstr "%j - Day of the year as a decimal number [001,366]." @@ -9048,6 +9425,10 @@ msgstr "Russian / русский язык" #~ msgid "Check new modules" #~ msgstr "Check new modules" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "You are not permitted to access this document! (%s)" + #~ msgid "STOCK_YES" #~ msgstr "STOCK_YES" @@ -9147,6 +9528,10 @@ msgstr "Russian / русский язык" #~ msgid "Configure User" #~ msgstr "Configure User" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "You can not write in this document! (%s)" + #~ msgid "My Closed Requests" #~ msgstr "My Closed Requests" @@ -9171,6 +9556,10 @@ msgstr "Russian / русский язык" #~ msgid "right" #~ msgstr "right" +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "You can not delete this document! (%s)" + #~ msgid "%S - Second as a decimal number [00,61]." #~ msgstr "%S - Second as a decimal number [00,61]." @@ -10222,6 +10611,9 @@ msgstr "Russian / русский язык" #~ msgid "Choose a language to install:" #~ msgstr "Choose a language to install:" +#~ msgid "Web Icons" +#~ msgstr "Web icons" + #~ msgid "Mister" #~ msgstr "Mister" diff --git a/bin/addons/base/i18n/es.po b/bin/addons/base/i18n/es.po index 17ddeba0c09..63935c533a4 100644 --- a/bin/addons/base/i18n/es.po +++ b/bin/addons/base/i18n/es.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-28 07:22+0000\n" "Last-Translator: Jordi Esteve (www.zikzakmedia.com) " "\n" @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-29 04:40+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:20+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -41,6 +41,14 @@ msgstr "Otra configuración" msgid "DateTime" msgstr "FechaHora" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -53,12 +61,6 @@ msgstr "Metadatos" msgid "View Architecture" msgstr "Código vista" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "No puede crear este tipo de documento! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -109,6 +111,14 @@ msgstr "Mostrar consejos de menú" msgid "Created Views" msgstr "Vistas creadas" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -125,11 +135,10 @@ msgid "South Korea" msgstr "Corea del Sur" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "Transiciones" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -141,13 +150,20 @@ msgstr "ir.ui.vista.custom" msgid "Swaziland" msgstr "Suazilandia" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "Proveedores de madera" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -179,7 +195,7 @@ msgid "Search Partner" msgstr "Buscar empresa" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" @@ -187,7 +203,7 @@ msgstr "" "usuarios" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "nuevo" @@ -218,7 +234,7 @@ msgid "Contact Name" msgstr "Nombre" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -242,6 +258,12 @@ msgstr "activa" msgid "Wizard Name" msgstr "Nombre de asistente" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -274,7 +296,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "Widget" @@ -325,7 +346,7 @@ msgid "Netherlands Antilles" msgstr "Antillas holandesas" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -349,11 +370,6 @@ msgstr "Griego / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "Bosnio / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "Iconos web" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -363,6 +379,12 @@ msgstr "" "Si marca esta opción, cuando el usuario imprima el mismo nombre de adjunto " "por segunda vez, obtendrá el informe anterior." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "¡El método read (leer) no está implementado en este objeto!" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -391,6 +413,12 @@ msgstr "Colombia" msgid "Schedule Upgrade" msgstr "Programar actualización" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "Clave/valor '%s' no encontrado en el campo selección '%s'" + #. module: base #: help:res.country,code:0 msgid "" @@ -436,7 +464,7 @@ msgid "Miscellaneous Suppliers" msgstr "Proveedores varios" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -698,6 +726,12 @@ msgstr "" "Establece el idioma en que se mostrará la interfaz de usuario, cuando hay " "traducciones de la interfaz disponibles." +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "¡El método unlink (eliminar) no está implementado en este objeto!" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -762,6 +796,14 @@ msgstr "%B - Nombre de mes completo." msgid "Type" msgstr "Tipo" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -788,6 +830,19 @@ msgstr "¡XML inválido para la definición de la vista!" msgid "Cayman Islands" msgstr "Islas Caimán" +#. 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 "Transiciones" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -899,6 +954,16 @@ msgstr "Haití" msgid "Search" msgstr "Búsqueda" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -956,13 +1021,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "No existe un idioma con código \"%s\"" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -1002,6 +1067,12 @@ msgstr "" "su sistema OpenERP. Después de que el contrato haya sido registrado, podrá " "enviar incidencias directamente a OpenERP." +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "¡El método search (buscar) no está implementado en este objeto!" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1051,7 +1122,7 @@ msgid "On Create" msgstr "Al crear" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1171,12 +1242,6 @@ msgstr "ID archivo adjunto" msgid "Day: %(day)s" msgstr "Día: %(day)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "¡No puede leer este documento! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1225,8 +1290,8 @@ msgstr "" "object.list_price > object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (copia)" @@ -1306,7 +1371,7 @@ msgid "Formula" msgstr "Fórmula" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "¡No se puede eliminar el usuario principal!" @@ -1317,7 +1382,8 @@ msgid "Malawi" msgstr "Malawi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "%s (copiar)" @@ -1369,7 +1435,6 @@ msgstr "Árbol" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1399,6 +1464,12 @@ msgstr "" "Cuando use el formato CSV, por favor compruebe que la primera línea de su " "archivo es una de las siguientes:" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "¡El método search_memory no está implementado!" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1452,7 +1523,7 @@ msgid "Bahamas" msgstr "Bahamas" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1475,6 +1546,12 @@ msgstr "Irlanda" msgid "Number of modules updated" msgstr "Número de módulos actualizados" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "¡El método set_memory no está implementado!" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1562,6 +1639,12 @@ msgstr "" "(formulario), 'tree' (árbol), 'calendar' (calendario), etc (por defecto: " "tree,form)" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1634,7 +1717,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1725,12 +1808,6 @@ msgstr "Dirección de correo electrónico" msgid "French (BE) / Français (BE)" msgstr "Francés (BE) / Français (BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "¡No puede escribir en este documento! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1803,6 +1880,13 @@ msgstr "" "Nombre del objeto cuya función será llamada cuando el planificador se " "ejecute. Por ejemplo: 'res.partner'" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" +"¡El método perm_read (leer permisos) no está implementado en este objeto!" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1813,13 +1897,19 @@ msgstr "%y - Año sin el siglo [00,99]." msgid "Slovenia" msgstr "Eslovenia" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "Mensajes" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "¡Error!" @@ -1849,6 +1939,14 @@ msgstr "Fecha final" msgid "New Zealand" msgstr "Nueva Zelanda" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1901,19 +1999,13 @@ msgstr "¡Error! No se pueden crear compañías recursivas." msgid "Valid" msgstr "Válido" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "¡No puede eliminar este documento! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "No puede actualizar el módulo '% s'. No está instalado" @@ -2024,6 +2116,15 @@ msgstr "Señal (subflow.*)" msgid "HR sector" msgstr "Sector RRHH" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -2080,6 +2181,11 @@ msgstr "Dependencias" msgid "Main Company" msgstr "Empresa principal" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2170,9 +2276,10 @@ msgid "Sir" msgstr "Sr." #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" -msgstr "Selccione el paquete del módulo que queire importar (fichero .zip)" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" +msgstr "" #. module: base #: field:ir.default,ref_id:0 @@ -2270,7 +2377,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "¡ Por favor, indique una acción a ejecutar !" @@ -2294,6 +2401,12 @@ msgstr "Derecha-a-izquierda" msgid "Filters" msgstr "Filtros" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "Verifique que todas las líneas tengan %d columnas" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2315,7 +2428,13 @@ msgstr "" "Si no está especificado, actúa como valor por defecto para nuevos recursos" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "Se ha detectado recursividad." + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "¡Error de recurrencia entre dependencias de módulos!" @@ -2345,6 +2464,11 @@ msgstr "" "Número CIF/NIF. Marque esta caja si la empresa está sujeta al IVA. Se " "utiliza para la declaración legal del IVA." +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "mantenimiento.contrato" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2397,11 +2521,6 @@ msgstr "Verificación EAN" msgid "VAT" msgstr "CIF/NIF" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "Iconos web flotantes" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2438,7 +2557,7 @@ msgid "M." msgstr "Sr." #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2447,13 +2566,21 @@ msgstr "" "No se puede crear el archivo del módulo:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Nauru" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "¡El ID del certificado del módulo debe ser único!" @@ -2532,6 +2659,12 @@ msgstr "Enviar SMS" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2590,7 +2723,7 @@ msgid "Ecuador" msgstr "Ecuador" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2662,7 +2795,7 @@ msgid "Action to Trigger" msgstr "Acción a disparar" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2865,18 +2998,13 @@ msgstr "Autor" msgid "FYROM" msgstr "FYR de Macedonia" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Búsqueda avanzada" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Representación apropiada de fecha y hora." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2925,7 +3053,7 @@ msgid "Rules" msgstr "Reglas" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2996,7 +3124,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "¡No puede eliminar este modelo «%s»!" @@ -3026,6 +3154,12 @@ msgstr "Abkhazian / аҧсуа" msgid "System Configuration Done" msgstr "Configuración del sistema realizada" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "Ha ocurrido un error mientras se validaban los campo(s) %s: %s" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -3057,7 +3191,7 @@ msgid "Benin" msgstr "Benín" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "Este contrato ya está registrado en el sistema." @@ -3087,6 +3221,14 @@ msgstr "Cabecera RML" msgid "API ID" msgstr "ID API" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3351,6 +3493,12 @@ msgstr "res.usuarios" msgid "Nicaragua" msgstr "Nicaragua" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "¡El método write (escribir) no está implementado en este objeto!" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3637,7 +3785,8 @@ msgid "Bank Type" msgstr "Tipo de banco" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "El nombre del grupo no puede empezar con \"-\"" @@ -3659,7 +3808,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "Gujarati / ગુજરાતી" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3680,7 +3829,7 @@ msgid "Flow Start" msgstr "Inicio del flujo" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3714,7 +3863,9 @@ msgid "Guadeloupe (French)" msgstr "Guadalupe (Francesa)" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "Error de usuario" @@ -3792,6 +3943,11 @@ msgstr "%S - Segundos [00,61]." msgid "Cape Verde" msgstr "Cabo Verde" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "Selccione el paquete del módulo que queire importar (fichero .zip)" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3805,6 +3961,14 @@ msgstr "Eventos" msgid "ir.actions.url" msgstr "ir.acciones.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" +"ID erróneo para el registro a mostrar, se ha obtenido %r, se esperaba un " +"entero." + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3838,9 +4002,10 @@ msgid "French / Français" msgstr "Francés / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Menús creados" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "¡El método create (crear) no está implementado en este objeto!" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -4091,6 +4256,14 @@ msgstr "Consejo" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -4132,9 +4305,9 @@ msgid "Project" msgstr "Proyecto" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" -msgstr "mantenimiento.contrato" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" +msgstr "" #. module: base #: view:base.module.import:0 @@ -4163,12 +4336,9 @@ msgid "Serial Key" msgstr "Número de serie" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Cliente" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "Auditoría" #. module: base #: model:res.country,name:base.lc @@ -4276,6 +4446,18 @@ msgstr "Vietnam" msgid "Signature" msgstr "Firma" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "No implementado" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4297,7 +4479,7 @@ msgid "False means for every user" msgstr "Falso significa para todos los usuarios." #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "¡El nombre del módulo debe ser único!" @@ -4338,9 +4520,11 @@ msgid "Contacts" msgstr "Contactos" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Islas Feroe" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4369,6 +4553,12 @@ msgstr "República Checa" msgid "Widget Wizard" msgstr "Asistente widget" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4415,15 +4605,9 @@ msgid "Mongolia" msgstr "Mongolia" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Error" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Menús creados" #. module: base #: selection:ir.ui.view,type:0 @@ -4539,11 +4723,6 @@ msgstr "San Vicente y las Granadinas" msgid "Password" msgstr "Contraseña" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "Archivo de icono" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4648,7 +4827,7 @@ msgid "Change My Preferences" msgstr "Cambiar mis preferencias" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Nombre de modelo no válido en la definición de acción." @@ -4716,7 +4895,7 @@ msgid "Raphaël Valyi's tweets" msgstr "Tweets de Raphaël Valyi" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4799,7 +4978,13 @@ msgid "Client Actions" msgstr "Acciones cliente" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4874,7 +5059,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.objeto.lineas" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Módulo %s: Certificado de calidad no válido" @@ -4925,6 +5110,11 @@ msgstr "Enviar SMS" msgid "Accepted Users" msgstr "Usuarios aceptados" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -5051,6 +5241,14 @@ msgstr "Tweets de Olivier Dony" msgid "Nepal" msgstr "Nepal" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -5083,7 +5281,7 @@ msgid "Update Modules List" msgstr "Actualizar lista de módulos" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" @@ -5092,7 +5290,7 @@ msgstr "" "resuelta: %s" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5115,6 +5313,12 @@ msgstr "Siguiente" msgid "Thai / ภาษาไทย" msgstr "Tailandés / ภาษาไทย" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5245,6 +5449,13 @@ msgstr "El nombre completo del país." msgid "Iteration" msgstr "Iteración" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "Error de usuario" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5284,7 +5495,12 @@ msgid "Solomon Islands" msgstr "Islas Salomón" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "ErrorAcceso" @@ -5295,7 +5511,7 @@ msgid "Waiting" msgstr "En espera" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "Podría no cargar el módulo base" @@ -5305,6 +5521,12 @@ msgstr "Podría no cargar el módulo base" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "¡El método copy (copiar) no está implementado en este objeto!" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5427,7 +5649,7 @@ msgid "ir.actions.todo" msgstr "ir.acciones.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "No se ha encontrado el ir.acciones.todo anterior" @@ -5501,18 +5723,24 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "¡No existe el módulo %s!" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" "¡No puede eliminar el idioma que es el idioma predeterminado de un usuario!" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "¡El método get_memory no está implementado!" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5521,7 +5749,7 @@ msgid "Python Code" msgstr "Código Python" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "¡No se puede crear el archivo de módulo: %s!" @@ -5642,7 +5870,7 @@ msgstr "" "otras vistas." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "Haga clic en 'Continuar' para configurar el siguiente módulo..." @@ -5683,7 +5911,7 @@ msgstr "" "Seleccione el objeto sobre el cual la acción actuará (leer, escribir, crear)." #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "¡Verifique la opción del servidor --email-from !" @@ -5901,7 +6129,7 @@ msgid "Afghanistan, Islamic State of" msgstr "Estado Islámico de Afganistán" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "¡Error!" @@ -5922,6 +6150,12 @@ msgstr "Unidad de intervalo" msgid "Kind" msgstr "Clase" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "Este método ya no existe" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -6190,6 +6424,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "Para buscar traducciones oficiales, puede empezar con estos enlaces:" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -6199,11 +6441,6 @@ msgstr "Para buscar traducciones oficiales, puede empezar con estos enlaces:" msgid "Address" msgstr "Dirección" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "Fichero icono flotante" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6282,7 +6519,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "Antillas San Kitts y Nevis" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6371,7 +6608,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6394,11 +6631,19 @@ msgid "Child IDs" msgstr "IDs hijos" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "¡Problema en configuración `Id registro` en la acción del servidor!" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "Error de validación" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6447,6 +6692,16 @@ msgstr "Email" msgid "Home Action" msgstr "Acción inicial" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" +"La suma de los datos (2º campo) es nula.\n" +"¡No se puede dibujar un gráfico de sectores!" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6475,11 +6730,10 @@ msgid "Stop All" msgstr "Todo parado" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" -msgstr "Registrar un contracto" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" +msgstr "" #. module: base #: view:ir.model.data:0 @@ -6531,7 +6785,7 @@ msgid "Start update" msgstr "Iniciar actualización" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "Error de validación de contrato" @@ -6590,7 +6844,7 @@ msgid "HR Manager Dashboard" msgstr "Tablero Director RH" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6648,7 +6902,7 @@ msgid "Module Update" msgstr "Actualizar módulo" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "Los siguientes módulos no están instalados o son desconocidos: %s" @@ -6731,7 +6985,14 @@ msgstr "" "de los listados." #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "¡El tamaño del campo nunca puede ser menor que 1!" @@ -6769,6 +7030,12 @@ msgstr "A" msgid "Arguments" msgstr "Argumentos" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6779,15 +7046,30 @@ msgstr "GPL Versión 2" msgid "GPL Version 3" msgstr "GPL Versión 3" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "Corrija código EAN13" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" -msgstr "Auditoría" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "El valor \"%s\" para el campo \"%s\" no está en la selección" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Cliente" #. module: base #: selection:base.language.install,lang:0 @@ -6892,7 +7174,7 @@ msgid "Copy Object" msgstr "Copiar objeto" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6944,6 +7226,15 @@ msgstr "Ref. tabla" msgid "Object" msgstr "Objeto" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6981,7 +7272,7 @@ msgid "User Ref." msgstr "Ref. usuario" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "¡Aviso!" @@ -7122,7 +7413,7 @@ msgid "workflow.triggers" msgstr "workflow.disparadores" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "Criterios de búsqueda inválidos" @@ -7180,7 +7471,7 @@ msgid "Action Type" msgstr "Tipo de acción" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7288,11 +7579,23 @@ msgstr "Código de país" msgid "workflow.instance" msgstr "workflow.instancia" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "¡Método get (obtener) no definido!" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7469,6 +7772,11 @@ msgstr "Enviar email" msgid "Menu Action" msgstr "Acción de menú" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Islas Feroe" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7612,7 +7920,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7819,7 +8127,7 @@ msgid "Account No." msgstr "Nº de cuenta" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "¡El idioma de base 'en_US' no puede ser suprimido!" @@ -7868,6 +8176,14 @@ msgstr "Traducción" msgid "Antigua and Barbuda" msgstr "Antigua y Barbuda" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7926,7 +8242,7 @@ msgid "Auto-Refresh" msgstr "Auto-refrescar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7937,6 +8253,11 @@ msgstr "" msgid "Diagram" msgstr "Diagrama" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Islas Wallis y Futuna" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7993,6 +8314,35 @@ msgstr "Código de identificador bancario" msgid "Turkmenistan" msgstr "Turkmenistán" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Error" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -8122,7 +8472,7 @@ msgid "Internal Header/Footer" msgstr "Cabecera / Pie de página interna" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -8163,6 +8513,14 @@ msgstr "República Dominicana" msgid "Serbian (Cyrillic) / српски" msgstr "Serbio (Cirílico) / српски" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -8188,7 +8546,7 @@ msgid "Event Logs" msgstr "Registros de eventos" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "Configuración del sistema realizada." @@ -8235,11 +8593,18 @@ msgid "Low" msgstr "Baja" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Error ! No puede crear menús recursivos" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "Registrar un contracto" + #. module: base #: view:ir.rule:0 msgid "" @@ -8250,7 +8615,7 @@ msgstr "" "combinan mediante un operador lógico OR" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "Compruebe el nombre y validez de su contrato de garantía del editor." @@ -8409,7 +8774,7 @@ msgid "View Auto-Load" msgstr "Vista auto-carga" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "No puede suprimir el campo '%s' !" @@ -8421,6 +8786,11 @@ msgstr "No puede suprimir el campo '%s' !" msgid "Resource" msgstr "Recurso" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8432,7 +8802,7 @@ msgid "View Ordering" msgstr "Ordenación de la vista" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "¡Dependencia no resuleta!" @@ -8446,6 +8816,14 @@ msgstr "" "Formatos de ficheros soportados: *.csv (valores separados por comas) o *.po " "(objetos portables GetText)" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8574,7 +8952,7 @@ msgid "Azerbaijan" msgstr "Azerbaiyán" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Aviso" @@ -8601,9 +8979,9 @@ msgid "Czech / Čeština" msgstr "Checo / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Islas Wallis y Futuna" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Búsqueda avanzada" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8914,7 +9292,7 @@ msgid "Account Owner" msgstr "Propietario cuenta" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "Advertencia de cambio de compañia." @@ -8975,7 +9353,7 @@ msgid "Workflow Instances" msgstr "Instancias del flujo" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Empresas: " @@ -10267,6 +10645,10 @@ msgstr "Ruso / русский язык" #~ msgid "Product quantity" #~ msgstr "Cantidad producto" +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "No puede crear este tipo de documento! (%s)" + #, python-format #~ msgid "Account move line \"%s\" is not valid" #~ msgstr "La línea de asiento contable \"%s\" no es válida" @@ -10295,10 +10677,6 @@ msgstr "Ruso / русский язык" #~ msgid "You can not delete posted movement: \"%s\"!" #~ msgstr "¡No puede eliminar el movimiento validado: \"%s\"!" -#, python-format -#~ msgid "The unlink method is not implemented on this object !" -#~ msgstr "¡El método unlink (eliminar) no está implementado en este objeto!" - #, python-format #~ msgid "" #~ "There is no income account defined ' \\n " @@ -10353,18 +10731,10 @@ msgstr "Ruso / русский язык" #~ msgid "Workcenter name" #~ msgstr "Nombre de centro de trabajo" -#, python-format -#~ msgid "The read method is not implemented on this object !" -#~ msgstr "¡El método read (leer) no está implementado en este objeto!" - #, python-format #~ msgid "Product Quantity" #~ msgstr "Cantidad producto" -#, python-format -#~ msgid "Key/value '%s' not found in selection field '%s'" -#~ msgstr "Clave/valor '%s' no encontrado en el campo selección '%s'" - #, python-format #~ msgid "No partner has a VAT Number asociated with him." #~ msgstr "Ninguna empresa tiene un número fiscal asociado." @@ -10452,14 +10822,6 @@ msgstr "Ruso / русский язык" #~ msgid "You try to bypass an access rule (Document type: %s)." #~ msgstr "Intenta saltarse una regla de acceso (tipo documento: %s)." -#, python-format -#~ msgid "" -#~ "The sum of the data (2nd field) is null.\n" -#~ "We can't draw a pie chart !" -#~ msgstr "" -#~ "La suma de los datos (2º campo) es nula.\n" -#~ "¡No se puede dibujar un gráfico de sectores!" - #, python-format #~ msgid "invalid mode for test_state" #~ msgstr "modo no válido para test_state" @@ -10525,6 +10887,10 @@ msgstr "Ruso / русский язык" #~ msgstr "" #~ "¡No puede modificar/eliminar un diario con asientos para este período!" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "¡No puede leer este documento! (%s)" + #, python-format #~ msgid "Relation not found: %s on '%s'" #~ msgstr "Relación no encontrada: %s on '%s'" @@ -10555,10 +10921,6 @@ msgstr "Ruso / русский язык" #~ msgid "Product Cost Structure" #~ msgstr "Estructura de costes de producto" -#, python-format -#~ msgid "Not implemented search_memory method !" -#~ msgstr "¡El método search_memory no está implementado!" - #, python-format #~ msgid "" #~ "There is no receivable account defined for this journal:'\\n " @@ -10567,10 +10929,6 @@ msgstr "Ruso / русский язык" #~ "No hay cuenta de gastos definida para este diario:'\\n ' " #~ "\"%s\" (id:%d)" -#, python-format -#~ msgid "Not implemented set_memory method !" -#~ msgstr "¡El método set_memory no está implementado!" - #, python-format #~ msgid "Error, no partner !" #~ msgstr "¡Error, sin empresa!" @@ -10606,6 +10964,10 @@ msgstr "Ruso / русский язык" #~ "' \\n\t\t\t\t\t'en la empresa: %s\n" #~ "' \\n\t\t\t\t\t'en la línea: %s" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "¡No puede escribir en este documento! (%s)" + #, python-format #~ msgid "The account is not defined to be reconciled !" #~ msgstr "¡ No se ha definido la cuenta como reconciliable !" @@ -10618,31 +10980,18 @@ msgstr "Ruso / русский язык" #~ msgid "You have to provide an account for the write off entry !" #~ msgstr "¡ Debe indicar una cuenta para el asiento de ajuste !" -#, python-format -#~ msgid "The perm_read method is not implemented on this object !" -#~ msgstr "" -#~ "¡El método perm_read (leer permisos) no está implementado en este objeto!" - #, python-format #~ msgid "Message !" #~ msgstr "¡ Mensaje !" #, python-format -#~ msgid "Please check that all your lines have %d columns." -#~ msgstr "Verifique que todas las líneas tengan %d columnas" - -#, python-format -#~ msgid "Recursivity Detected." -#~ msgstr "Se ha detectado recursividad." +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "¡No puede eliminar este documento! (%s)" #, python-format #~ msgid "Can not define a column %s. Reserved keyword !" #~ msgstr "No se ha podido definir la columna %s. ¡Palabra reservada!" -#, python-format -#~ msgid "The create method is not implemented on this object !" -#~ msgstr "¡El método create (crear) no está implementado en este objeto!" - #, python-format #~ msgid "Invalid operation" #~ msgstr "La operación no es válida." @@ -10655,28 +11004,14 @@ msgstr "Ruso / русский язык" #~ "Está intentando instalar un módulo que depende del módulo: %s.\n" #~ "Pero este módulo no se encuentra disponible en su sistema." -#, python-format -#~ msgid "Error occurred while validating the field(s) %s: %s" -#~ msgstr "Ha ocurrido un error mientras se validaban los campo(s) %s: %s" - #, python-format #~ msgid "Using a relation field which uses an unknown object" #~ msgstr "Está usando un campo relación que utiliza un objeto desconocido" -#, python-format -#~ msgid "The write method is not implemented on this object !" -#~ msgstr "¡El método write (escribir) no está implementado en este objeto!" - #, python-format #~ msgid "Tree can only be used in tabular reports" #~ msgstr "Árbol se puede utilizar solamente en informes tabulares" -#, python-format -#~ msgid "Wrong ID for the browse record, got %r, expected an integer." -#~ msgstr "" -#~ "ID erróneo para el registro a mostrar, se ha obtenido %r, se esperaba un " -#~ "entero." - #, python-format #~ msgid "Couldn't find tag '%s' in parent view !" #~ msgstr "¡No se puede encontrar la marca '%s' en la vista padre!" @@ -10686,10 +11021,6 @@ msgstr "Ruso / русский язык" #~ msgstr "" #~ "¡El método name_get (obtener nombre) no está implementado en este objeto!" -#, python-format -#~ msgid "Not Implemented" -#~ msgstr "No implementado" - #, python-format #~ msgid "Records were modified in the meanwhile" #~ msgstr "Se han modificado registros entretanto" @@ -10705,22 +11036,10 @@ msgstr "Ruso / русский язык" #~ msgstr "" #~ "¡Por favor, introduzca la dirección de correo electrónico de la empresa!" -#, python-format -#~ msgid "UserError" -#~ msgstr "Error de usuario" - -#, python-format -#~ msgid "The copy method is not implemented on this object !" -#~ msgstr "¡El método copy (copiar) no está implementado en este objeto!" - #, python-format #~ msgid "You cannot perform this operation." #~ msgstr "No puede realizar esta operación." -#, python-format -#~ msgid "Not implemented get_memory method !" -#~ msgstr "¡El método get_memory no está implementado!" - #, python-format #~ msgid "Please specify server option --smtp-from !" #~ msgstr "Por favor, especifique la opción del servidor --smtp-from" @@ -10733,26 +11052,14 @@ msgstr "Ruso / русский язык" #~ msgid "Number too large '%d', can not translate it" #~ msgstr "Número '%d' demasiado grande, no se puede traducir" -#, python-format -#~ msgid "This method does not exist anymore" -#~ msgstr "Este método ya no existe" - #, python-format #~ msgid "Unknown position in inherited view %s !" #~ msgstr "¡Posición desconocida en vista heredada %s!" -#, python-format -#~ msgid "ValidateError" -#~ msgstr "Error de validación" - #, python-format #~ msgid "Field %d should be a figure" #~ msgstr "Campo %d debería ser una cifra" -#, python-format -#~ msgid "The value \"%s\" for the field \"%s\" is not in the selection" -#~ msgstr "El valor \"%s\" para el campo \"%s\" no está en la selección" - #~ msgid "Dutch (Belgium) / Nederlands (Belgïe)" #~ msgstr "Holandés (Bélgica) / Nederlands (Belgïe)" @@ -10761,10 +11068,6 @@ msgstr "Ruso / русский язык" #~ msgstr "" #~ "No puede enviar informes de errores debido a estos módulos no soportados: %s" -#, python-format -#~ msgid "undefined get method !" -#~ msgstr "¡Método get (obtener) no definido!" - #~ msgid "Html from html" #~ msgstr "Html desde html" @@ -10788,10 +11091,6 @@ msgstr "Ruso / русский язык" #~ msgid "Bar charts need at least two fields" #~ msgstr "Gráficos de barras necesitan al menos dos campos" -#, python-format -#~ msgid "The search method is not implemented on this object !" -#~ msgstr "¡El método search (buscar) no está implementado en este objeto!" - #, python-format #~ msgid "" #~ "You try to install the module '%s' that depends on the module:'%s'.\n" @@ -11182,6 +11481,9 @@ msgstr "Ruso / русский язык" #~ msgid "Mss." #~ msgstr "Sra." +#~ msgid "Icon File" +#~ msgstr "Archivo de icono" + #~ msgid "Ltd." #~ msgstr "Ltd." @@ -11191,5 +11493,14 @@ msgstr "Ruso / русский язык" #~ msgid "Access Groups" #~ msgstr "Grupos de Acceso" +#~ msgid "Web Icons Hover" +#~ msgstr "Iconos web flotantes" + +#~ msgid "Web Icons" +#~ msgstr "Iconos web" + +#~ msgid "Icon hover File" +#~ msgstr "Fichero icono flotante" + #~ msgid "Sr." #~ msgstr "Sr." diff --git a/bin/addons/base/i18n/es_EC.po b/bin/addons/base/i18n/es_EC.po index c79c7e2a9e9..49629b3d416 100644 --- a/bin/addons/base/i18n/es_EC.po +++ b/bin/addons/base/i18n/es_EC.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-11-07 02:51+0000\n" "Last-Translator: Cristian Salamea (Gnuthink) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 05:00+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:22+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,14 @@ msgstr "Otra configuración" msgid "DateTime" msgstr "FechaHora" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +60,6 @@ msgstr "Metadata" msgid "View Architecture" msgstr "Código vista" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "No puede crear este tipo de documento! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +110,14 @@ msgstr "Mostrar Consejos del Menú" msgid "Created Views" msgstr "Vistas creadas" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,11 +134,10 @@ msgid "South Korea" msgstr "Corea del Sur" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "Transiciones" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "Error de restriccion" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -140,13 +149,20 @@ msgstr "ir.ui.vista.custom" msgid "Swaziland" msgstr "Suazilandia" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "Wood Suppliers" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -177,14 +193,14 @@ msgid "Search Partner" msgstr "Buscar empresa" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" "\"smtp_server\" debe ser configurado para enviar mensajes a los usuarios" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "nuevo" @@ -215,7 +231,7 @@ msgid "Contact Name" msgstr "Nombre del contacto" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -239,6 +255,12 @@ msgstr "activo" msgid "Wizard Name" msgstr "Nombre de asistente" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -271,7 +293,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "Widget" @@ -322,7 +343,7 @@ msgid "Netherlands Antilles" msgstr "Antillas holandesas" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -346,11 +367,6 @@ msgstr "Greek / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "Bosnian / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -360,6 +376,12 @@ msgstr "" "Si marca esta opción, cuando el usuario imprima el mismo nombre de adjunto " "por segunda vez, obtendrá el informe anterior." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "¡El método read (leer) no está implementado en este objeto!" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -388,6 +410,12 @@ msgstr "Colombia" msgid "Schedule Upgrade" msgstr "Programar actualización" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "Clave/valor '%s' no encontrado en el campo selección '%s'" + #. module: base #: help:res.country,code:0 msgid "" @@ -432,7 +460,7 @@ msgid "Miscellaneous Suppliers" msgstr "Varios proveedores" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -692,6 +720,12 @@ msgstr "" "Establece el idioma para la interfaz del usuario, cuando las traducciones de " "interfaz de usuario están disponibles" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "¡El método unlink (eliminar) no está implementado en este objeto!" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -756,6 +790,14 @@ msgstr "%B - Nombre de mes completo." msgid "Type" msgstr "Tipo" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -782,6 +824,19 @@ msgstr "¡XML inválido para la definición de la vista!" msgid "Cayman Islands" msgstr "Islas Caimán" +#. 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 "Transiciones" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -893,6 +948,19 @@ msgstr "Haití" msgid "Search" msgstr "Buscar" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" +"La operacion no puede ser completada, probablemente sucedio lo siguiente:\n" +"- borrado: esta tratando de borrar un registro que hacer referencia a otro\n" +"- creacion/actualizacion: un campo requerido no fue llenado correctamente" + #. module: base #: view:ir.rule:0 msgid "" @@ -949,13 +1017,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "Ninguna lengua con el código \"%s\" existe" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -990,6 +1058,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "¡El método search (buscar) no está implementado en este objeto!" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1039,7 +1113,7 @@ msgid "On Create" msgstr "Al crear" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1159,12 +1233,6 @@ msgstr "ID archivo adjunto" msgid "Day: %(day)s" msgstr "Día: %(day)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "¡No puede leer este documento! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1206,8 +1274,8 @@ msgstr "" "object.list_price > object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (copia)" @@ -1287,7 +1355,7 @@ msgid "Formula" msgstr "Fórmula" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "¡No se puede eliminar el usuario principal!" @@ -1298,7 +1366,8 @@ msgid "Malawi" msgstr "Malawi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "%s (copia)" @@ -1350,7 +1419,6 @@ msgstr "Árbol" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1380,6 +1448,12 @@ msgstr "" "Al utilizar el formato CSV, por favor, compruebe también que la primera " "línea de su archivo sea uno de los siguientes:" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "¡El método search_memory no está implementado!" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1433,7 +1507,7 @@ msgid "Bahamas" msgstr "Bahamas" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1456,6 +1530,12 @@ msgstr "Irlanda" msgid "Number of modules updated" msgstr "Número de módulos actualizados" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "¡El método set_memory no está implementado!" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1535,6 +1615,12 @@ msgstr "" "Separados por comas la lista de modos de visualización que se permite, tales " "como 'form', 'tree', 'calendar', etc. (Default: tree,form)" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1607,7 +1693,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1698,12 +1784,6 @@ msgstr "Dirección de correo electrónico" msgid "French (BE) / Français (BE)" msgstr "French (BE) / Français (BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "¡No puede escribir en este documento! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1776,6 +1856,13 @@ msgstr "" "Nombre del objeto cuya función se llama cuando el planificador se ejecute. " "e.g. 'res.partener'" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" +"¡El método perm_read (leer permisos) no está implementado en este objeto!" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1786,13 +1873,19 @@ msgstr "" msgid "Slovenia" msgstr "Eslovenia" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "¡Error!" @@ -1822,6 +1915,14 @@ msgstr "Fecha final" msgid "New Zealand" msgstr "Nueva Zelanda" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1871,19 +1972,13 @@ msgstr "¡Error! No se pueden crear compañías recursivas." msgid "Valid" msgstr "Válido" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "¡No puede eliminar este documento! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "No puede actualizar el módulo '% s'. No está instalado" @@ -1994,6 +2089,15 @@ msgstr "Señal (subflow.*)" msgid "HR sector" msgstr "Sector RRHH" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -2047,6 +2151,11 @@ msgstr "Dependencias" msgid "Main Company" msgstr "Empresa principal" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2137,9 +2246,10 @@ msgid "Sir" msgstr "Sr." #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" -msgstr "Seleccione el Paquete del Módulo de Importación (Archivo zip.):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" +msgstr "" #. module: base #: field:ir.default,ref_id:0 @@ -2237,7 +2347,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "¡Por favor, indique una acción a ejecutar!" @@ -2261,6 +2371,12 @@ msgstr "Derecha-a-izquierda" msgid "Filters" msgstr "Filtros" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "Verifique que todas las líneas tengan %d columnas" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2283,7 +2399,13 @@ msgstr "" "recursos" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "Se ha detectado recursividad." + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "¡Error de recurrencia entre dependencias de módulos!" @@ -2313,6 +2435,11 @@ msgstr "" "Número CIF/NIF. Marque esta caja si la empresa está sujeta al IVA. Se " "utiliza para la declaración legal del IVA." +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2365,11 +2492,6 @@ msgstr "Ean de verificación" msgid "VAT" msgstr "CIF/NIF" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2406,7 +2528,7 @@ msgid "M." msgstr "M." #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2415,13 +2537,21 @@ msgstr "" "No se puede crear el archivo de módulo:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Nauru" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "El ID del certificado del módulo debe ser único !" @@ -2497,6 +2627,12 @@ msgstr "Enviar SMS" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2555,7 +2691,7 @@ msgid "Ecuador" msgstr "Ecuador" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2627,7 +2763,7 @@ msgid "Action to Trigger" msgstr "Acción a disparar" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2828,18 +2964,13 @@ msgstr "Autor" msgid "FYROM" msgstr "FYR de Macedonia" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Búsqueda avanzada" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Representación apropiada de fecha y hora." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2885,7 +3016,7 @@ msgid "Rules" msgstr "Reglas" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2956,7 +3087,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "¡No puede eliminar este modelo «%s»!" @@ -2986,6 +3117,12 @@ msgstr "" msgid "System Configuration Done" msgstr "Configuración del sistema terminada" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "Ha ocurrido un error mientras se validaban los campo(s) %s: %s" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -3017,7 +3154,7 @@ msgid "Benin" msgstr "Benín" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -3047,6 +3184,14 @@ msgstr "Cabecera RML" msgid "API ID" msgstr "API ID" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3298,6 +3443,12 @@ msgstr "res.usuarios" msgid "Nicaragua" msgstr "Nicaragua" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "¡El método write (escribir) no está implementado en este objeto!" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3584,7 +3735,8 @@ msgid "Bank Type" msgstr "Tipo de banco" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "El nombre del grupo no puede empezar con \"-\"" @@ -3606,7 +3758,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3624,7 +3776,7 @@ msgid "Flow Start" msgstr "Flujo de Inicio" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3656,7 +3808,9 @@ msgid "Guadeloupe (French)" msgstr "Guadalupe (Francesa)" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "Error del usuario" @@ -3734,6 +3888,11 @@ msgstr "" msgid "Cape Verde" msgstr "Cabo Verde" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "Seleccione el Paquete del Módulo de Importación (Archivo zip.):" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3747,6 +3906,14 @@ msgstr "Eventos" msgid "ir.actions.url" msgstr "ir.acciones.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" +"ID erróneo para el registro a mostrar, se ha obtenido %r, se esperaba un " +"entero." + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3780,9 +3947,10 @@ msgid "French / Français" msgstr "French / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Menús creados" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "¡El método create (crear) no está implementado en este objeto!" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -4033,6 +4201,14 @@ msgstr "Advice" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -4074,8 +4250,8 @@ msgid "Project" msgstr "Proyecto" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -4105,12 +4281,9 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Cliente" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "Auditoría" #. module: base #: model:res.country,name:base.lc @@ -4218,6 +4391,18 @@ msgstr "Vietnam" msgid "Signature" msgstr "Firma" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "No implementado" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4239,7 +4424,7 @@ msgid "False means for every user" msgstr "Falso significa para cada usuario" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "El nombre del módulo debe ser único !" @@ -4280,9 +4465,11 @@ msgid "Contacts" msgstr "Contactos" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Islas Feroe" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4311,6 +4498,12 @@ msgstr "República Checa" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4357,15 +4550,9 @@ msgid "Mongolia" msgstr "Mongolia" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Error" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Menús creados" #. module: base #: selection:ir.ui.view,type:0 @@ -4479,11 +4666,6 @@ msgstr "San Vicente y las Granadinas" msgid "Password" msgstr "Contraseña" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4584,7 +4766,7 @@ msgid "Change My Preferences" msgstr "Cambiar mis preferencias" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Nombre de modelo no válido en la definición de acción." @@ -4652,7 +4834,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4735,7 +4917,13 @@ msgid "Client Actions" msgstr "Acciones del cliente" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4810,7 +4998,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.objeto.lineas" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Módulo %s: Certificado de calidad no válido" @@ -4861,6 +5049,11 @@ msgstr "SMS enviado" msgid "Accepted Users" msgstr "Usuarios aceptados" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4978,6 +5171,14 @@ msgstr "" msgid "Nepal" msgstr "Nepal" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -5010,14 +5211,14 @@ msgid "Update Modules List" msgstr "Actualizar lista de módulos" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5036,6 +5237,12 @@ msgstr "Siguiente" msgid "Thai / ภาษาไทย" msgstr "Thai / ภาษาไทย" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5166,6 +5373,13 @@ msgstr "El nombre completo del país." msgid "Iteration" msgstr "Iteración" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "Error de usuario" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5204,7 +5418,12 @@ msgid "Solomon Islands" msgstr "Islas Salomón" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "ErrorAcceso" @@ -5215,7 +5434,7 @@ msgid "Waiting" msgstr "Esperando" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5225,6 +5444,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "¡El método copy (copiar) no está implementado en este objeto!" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5347,7 +5572,7 @@ msgid "ir.actions.todo" msgstr "ir.acciones.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "No se pudo encontrar anteriores ir.actions.todo" @@ -5421,19 +5646,25 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" "¡No se puede eliminar el lenguaje que es preferido por el usuario de la " "Lengua!" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "¡El método get_memory no está implementado!" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5442,7 +5673,7 @@ msgid "Python Code" msgstr "Código Python" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "No se puede crear el archivo de módulo: %s !" @@ -5563,7 +5794,7 @@ msgstr "" "'form' de otras vistas" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5605,7 +5836,7 @@ msgstr "" "Seleccione el objeto sobre el cual la acción actuará (leer, escribir, crear)." #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "Por favor, especifique la opción de servidor --email-from!" @@ -5824,7 +6055,7 @@ msgid "Afghanistan, Islamic State of" msgstr "Estado Islámico de Afganistán" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Error!" @@ -5845,6 +6076,12 @@ msgstr "Unidad de intervalo" msgid "Kind" msgstr "Clase" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "Este método ya no existe" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -6110,6 +6347,14 @@ msgid "To browse official translations, you can start with these links:" msgstr "" "Para ver las traducciones oficiales, puede empezar con estos enlaces:" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -6119,11 +6364,6 @@ msgstr "" msgid "Address" msgstr "Dirección" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6202,7 +6442,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "Antillas San Kitts y Nevis" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6288,7 +6528,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6313,11 +6553,19 @@ msgid "Child IDs" msgstr "IDs hijos" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "¡Problema en configuración `Id registro` en la acción del servidor!" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "Error de validación" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6366,6 +6614,16 @@ msgstr "Email" msgid "Home Action" msgstr "Inicio de acción" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" +"La suma de los datos (2º campo) es nula.\n" +"¡No se puede dibujar un gráfico de sectores!" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6394,10 +6652,9 @@ msgid "Stop All" msgstr "Detener todo" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6450,7 +6707,7 @@ msgid "Start update" msgstr "Iniciar actualización" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6509,7 +6766,7 @@ msgid "HR Manager Dashboard" msgstr "Tablero Director Recursos Humanos" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6561,7 +6818,7 @@ msgid "Module Update" msgstr "Actualización del módulo" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6644,7 +6901,14 @@ msgstr "" "listados" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "Error de Integridad" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "Tamaño del campo nunca puede ser menor que 1 !" @@ -6682,6 +6946,12 @@ msgstr "a" msgid "Arguments" msgstr "Alegaciones" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6692,15 +6962,30 @@ msgstr "GPL Version 2" msgid "GPL Version 3" msgstr "GPL Version 3" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "EAN13 correcto" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" -msgstr "Auditoría" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "El valor \"%s\" para el campo \"%s\" no está en la selección" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Cliente" #. module: base #: selection:base.language.install,lang:0 @@ -6805,7 +7090,7 @@ msgid "Copy Object" msgstr "Copia de objetos" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6856,6 +7141,18 @@ msgstr "Ref. tabla" msgid "Object" msgstr "Objeto" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" +"\n" +"\n" +"[objeto con referencia: %s - %s]" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6893,7 +7190,7 @@ msgid "User Ref." msgstr "Ref. usuario" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "¡Atención!" @@ -7034,7 +7331,7 @@ msgid "workflow.triggers" msgstr "workflow.disparadores" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7092,7 +7389,7 @@ msgid "Action Type" msgstr "Tipo de acción" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7195,11 +7492,23 @@ msgstr "Código de país" msgid "workflow.instance" msgstr "workflow.instancia" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "¡Método get (obtener) no definido!" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7376,6 +7685,11 @@ msgstr "Enviar correo" msgid "Menu Action" msgstr "Menu Action" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Islas Feroe" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7520,7 +7834,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7725,7 +8039,7 @@ msgid "Account No." msgstr "Número de cuenta" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Idiomas base 'en_US' ¡No se puede eliminar!" @@ -7769,6 +8083,14 @@ msgstr "Valor de traducción" msgid "Antigua and Barbuda" msgstr "Antigua y Barbuda" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7827,7 +8149,7 @@ msgid "Auto-Refresh" msgstr "Auto-refrescar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7837,6 +8159,11 @@ msgstr "" msgid "Diagram" msgstr "Diagrama" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Islas Wallis y Futuna" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7893,6 +8220,35 @@ msgstr "Código de identificador bancario" msgid "Turkmenistan" msgstr "Turkmenistán" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Error" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -8022,7 +8378,7 @@ msgid "Internal Header/Footer" msgstr "Cabecera / Pie de página interna" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -8063,6 +8419,14 @@ msgstr "República Dominicana" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -8088,7 +8452,7 @@ msgid "Event Logs" msgstr "Registros de eventos" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "Configuración del sistema terminado" @@ -8135,11 +8499,18 @@ msgid "Low" msgstr "Baja" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "¡Error! Usted no puede crear menús recursivos." +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -8150,7 +8521,7 @@ msgstr "" "combinan con operador lógico OR" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8304,7 +8675,7 @@ msgid "View Auto-Load" msgstr "Vista auto-carga" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "No se puede quitar el campo '%s' !" @@ -8316,6 +8687,11 @@ msgstr "No se puede quitar el campo '%s' !" msgid "Resource" msgstr "Recurso" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8327,7 +8703,7 @@ msgid "View Ordering" msgstr "Ver Pedido" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8341,6 +8717,14 @@ msgstr "" "Formatos de archivo admitidos: *.csv (los valores Comma-separated) o *.po " "(objetos portátiles GetText)" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8465,7 +8849,7 @@ msgid "Azerbaijan" msgstr "Azerbaiyán" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Aviso" @@ -8492,9 +8876,9 @@ msgid "Czech / Čeština" msgstr "Czech / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Islas Wallis y Futuna" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Búsqueda avanzada" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8802,7 +9186,7 @@ msgid "Account Owner" msgstr "Propietario cuenta" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8862,7 +9246,7 @@ msgid "Workflow Instances" msgstr "Instancias del flujo" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Empresas: " @@ -8922,6 +9306,10 @@ msgstr "Sri Lanka" msgid "Russian / русский язык" msgstr "Russian / русский язык" +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "No puede crear este tipo de documento! (%s)" + #~ msgid "%j - Day of the year as a decimal number [001,366]." #~ msgstr "%j - Día del año como un número decimal [001,366]." @@ -9122,6 +9510,10 @@ msgstr "Russian / русский язык" #~ msgid "Simple domain setup" #~ msgstr "Definición dominio simple" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "¡No puede leer este documento! (%s)" + #~ msgid "STOCK_FIND_AND_REPLACE" #~ msgstr "STOCK_FIND_AND_REPLACE" @@ -9203,6 +9595,10 @@ msgstr "Russian / русский язык" #~ msgid "Configure User" #~ msgstr "Configurar usuario" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "¡No puede escribir en este documento! (%s)" + #~ msgid "left" #~ msgstr "izquierda" @@ -9224,6 +9620,10 @@ msgstr "Russian / русский язык" #~ msgid "right" #~ msgstr "derecha" +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "¡No puede eliminar este documento! (%s)" + #~ msgid "%S - Second as a decimal number [00,61]." #~ msgstr "%S - Segundo como un número decimal [00,61]." @@ -10296,10 +10696,6 @@ msgstr "Russian / русский язык" #~ msgid "You can not delete posted movement: \"%s\"!" #~ msgstr "¡No puede eliminar el movimiento validado: \"%s\"!" -#, python-format -#~ msgid "The unlink method is not implemented on this object !" -#~ msgstr "¡El método unlink (eliminar) no está implementado en este objeto!" - #, python-format #~ msgid "" #~ "There is no income account defined ' \\n " @@ -10342,18 +10738,10 @@ msgstr "Russian / русский язык" #~ msgid "Workcenter name" #~ msgstr "Nombre de centro de trabajo" -#, python-format -#~ msgid "The read method is not implemented on this object !" -#~ msgstr "¡El método read (leer) no está implementado en este objeto!" - #, python-format #~ msgid "Product Quantity" #~ msgstr "Cantidad producto" -#, python-format -#~ msgid "Key/value '%s' not found in selection field '%s'" -#~ msgstr "Clave/valor '%s' no encontrado en el campo selección '%s'" - #, python-format #~ msgid "No partner has a VAT Number asociated with him." #~ msgstr "Ninguna empresa tiene un número fiscal asociado." @@ -10441,14 +10829,6 @@ msgstr "Russian / русский язык" #~ msgid "You try to bypass an access rule (Document type: %s)." #~ msgstr "Intenta saltarse una regla de acceso (tipo documento: %s)." -#, python-format -#~ msgid "" -#~ "The sum of the data (2nd field) is null.\n" -#~ "We can't draw a pie chart !" -#~ msgstr "" -#~ "La suma de los datos (2º campo) es nula.\n" -#~ "¡No se puede dibujar un gráfico de sectores!" - #, python-format #~ msgid "invalid mode for test_state" #~ msgstr "modo no válido para test_state" @@ -10540,10 +10920,6 @@ msgstr "Russian / русский язык" #~ msgid "Product Cost Structure" #~ msgstr "Estructura de costes de producto" -#, python-format -#~ msgid "Not implemented search_memory method !" -#~ msgstr "¡El método search_memory no está implementado!" - #, python-format #~ msgid "" #~ "There is no receivable account defined for this journal:'\\n " @@ -10552,10 +10928,6 @@ msgstr "Russian / русский язык" #~ "No hay cuenta de gastos definida para este diario:'\\n ' " #~ "\"%s\" (id:%d)" -#, python-format -#~ msgid "Not implemented set_memory method !" -#~ msgstr "¡El método set_memory no está implementado!" - #, python-format #~ msgid "Error, no partner !" #~ msgstr "¡Error, sin empresa!" @@ -10596,31 +10968,14 @@ msgstr "Russian / русский язык" #~ msgid "You have to provide an account for the write off entry !" #~ msgstr "¡ Debe indicar una cuenta para el asiento de ajuste !" -#, python-format -#~ msgid "The perm_read method is not implemented on this object !" -#~ msgstr "" -#~ "¡El método perm_read (leer permisos) no está implementado en este objeto!" - #, python-format #~ msgid "Message !" #~ msgstr "¡ Mensaje !" -#, python-format -#~ msgid "Please check that all your lines have %d columns." -#~ msgstr "Verifique que todas las líneas tengan %d columnas" - -#, python-format -#~ msgid "Recursivity Detected." -#~ msgstr "Se ha detectado recursividad." - #, python-format #~ msgid "Can not define a column %s. Reserved keyword !" #~ msgstr "No se ha podido definir la columna %s. ¡Palabra reservada!" -#, python-format -#~ msgid "The create method is not implemented on this object !" -#~ msgstr "¡El método create (crear) no está implementado en este objeto!" - #, python-format #~ msgid "" #~ "You try to install a module that depends on the module: %s.\n" @@ -10629,20 +10984,6 @@ msgstr "Russian / русский язык" #~ "Está intentando instalar un módulo que depende del módulo: %s.\n" #~ "Pero este módulo no se encuentra disponible en su sistema." -#, python-format -#~ msgid "Error occurred while validating the field(s) %s: %s" -#~ msgstr "Ha ocurrido un error mientras se validaban los campo(s) %s: %s" - -#, python-format -#~ msgid "The write method is not implemented on this object !" -#~ msgstr "¡El método write (escribir) no está implementado en este objeto!" - -#, python-format -#~ msgid "Wrong ID for the browse record, got %r, expected an integer." -#~ msgstr "" -#~ "ID erróneo para el registro a mostrar, se ha obtenido %r, se esperaba un " -#~ "entero." - #, python-format #~ msgid "Couldn't find tag '%s' in parent view !" #~ msgstr "¡No se puede encontrar la marca '%s' en la vista padre!" @@ -10652,10 +10993,6 @@ msgstr "Russian / русский язык" #~ msgstr "" #~ "¡El método name_get (obtener nombre) no está implementado en este objeto!" -#, python-format -#~ msgid "Not Implemented" -#~ msgstr "No implementado" - #, python-format #~ msgid "Records were modified in the meanwhile" #~ msgstr "Se han modificado registros entretanto" @@ -10671,22 +11008,10 @@ msgstr "Russian / русский язык" #~ msgstr "" #~ "¡Por favor, introduzca la dirección de correo electrónico de la empresa!" -#, python-format -#~ msgid "UserError" -#~ msgstr "Error de usuario" - -#, python-format -#~ msgid "The copy method is not implemented on this object !" -#~ msgstr "¡El método copy (copiar) no está implementado en este objeto!" - #, python-format #~ msgid "You cannot perform this operation." #~ msgstr "No puede realizar esta operación." -#, python-format -#~ msgid "Not implemented get_memory method !" -#~ msgstr "¡El método get_memory no está implementado!" - #, python-format #~ msgid "Bad file format" #~ msgstr "Formato de archivo incorrecto" @@ -10695,26 +11020,10 @@ msgstr "Russian / русский язык" #~ msgid "Number too large '%d', can not translate it" #~ msgstr "Número '%d' demasiado grande, no se puede traducir" -#, python-format -#~ msgid "This method does not exist anymore" -#~ msgstr "Este método ya no existe" - #, python-format #~ msgid "Unknown position in inherited view %s !" #~ msgstr "¡Posición desconocida en vista heredada %s!" -#, python-format -#~ msgid "ValidateError" -#~ msgstr "Error de validación" - -#, python-format -#~ msgid "The value \"%s\" for the field \"%s\" is not in the selection" -#~ msgstr "El valor \"%s\" para el campo \"%s\" no está en la selección" - -#, python-format -#~ msgid "undefined get method !" -#~ msgstr "¡Método get (obtener) no definido!" - #~ msgid "Html from html" #~ msgstr "Html desde html" @@ -10722,10 +11031,6 @@ msgstr "Russian / русский язык" #~ msgid "Bad query." #~ msgstr "Interrogación errónea." -#, python-format -#~ msgid "The search method is not implemented on this object !" -#~ msgstr "¡El método search (buscar) no está implementado en este objeto!" - #~ msgid "Expression, must be True to match" #~ msgstr "Una expresión, debe ser cierta para concordar." @@ -10784,35 +11089,6 @@ msgstr "Russian / русский язык" #~ msgid "The Code of the Partner Function must be unique !" #~ msgstr "El codigo del Título del Partner debe ser único" -#, python-format -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "[object with reference: %s - %s]" -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "[objeto con referencia: %s - %s]" - -#, python-format -#~ msgid "Integrity Error" -#~ msgstr "Error de Integridad" - -#, python-format -#~ msgid "" -#~ "The operation cannot be completed, probably due to the following:\n" -#~ "- deletion: you may be trying to delete a record while other records still " -#~ "reference it\n" -#~ "- creation/update: a mandatory field is not correctly set" -#~ msgstr "" -#~ "La operacion no puede ser completada, probablemente sucedio lo siguiente:\n" -#~ "- borrado: esta tratando de borrar un registro que hacer referencia a otro\n" -#~ "- creacion/actualizacion: un campo requerido no fue llenado correctamente" - -#, python-format -#~ msgid "Constraint Error" -#~ msgstr "Error de restriccion" - #~ msgid "terp-emblem-important" #~ msgstr "terp-emblem-important" diff --git a/bin/addons/base/i18n/et.po b/bin/addons/base/i18n/et.po index 0b136fb33f5..64ffef72388 100644 --- a/bin/addons/base/i18n/et.po +++ b/bin/addons/base/i18n/et.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-11-30 09:51+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:53+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:15+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +60,6 @@ msgstr "Metaandmed" msgid "View Architecture" msgstr "Vaata Ülesehitust" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Sa ei saa luua seda tüüpi dokumenti! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +110,14 @@ msgstr "" msgid "Created Views" msgstr "Loodud vaated" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,11 +134,10 @@ msgid "South Korea" msgstr "Lõuna-Korea" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "Siirded" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -140,13 +149,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Svaasimaa" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -178,13 +194,13 @@ msgid "Search Partner" msgstr "Otsi partnerit" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "uus" @@ -215,7 +231,7 @@ msgid "Contact Name" msgstr "Kontakti nimi" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -239,6 +255,12 @@ msgstr "aktiivne" msgid "Wizard Name" msgstr "Nõustaja nimi" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -271,7 +293,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -322,7 +343,7 @@ msgid "Netherlands Antilles" msgstr "Hollandi Antillid" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -346,11 +367,6 @@ msgstr "Greeka / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "Bosnia / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -360,6 +376,12 @@ msgstr "" "Selle kasti märgistamisel pöördutakse eelmise aruande juurde, kui kasutaja " "prindib olemasoleva manuse nimega" +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -386,6 +408,12 @@ msgstr "Kolumbia" msgid "Schedule Upgrade" msgstr "Planeeri uuendamisele" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -429,7 +457,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Kohandatud väljadel peab olema nimi mis algab 'x_'-ga !" @@ -676,6 +704,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -740,6 +774,14 @@ msgstr "%B - Täispikk kuu nimetus." msgid "Type" msgstr "Tüüp" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -766,6 +808,19 @@ msgstr "Vigane XML vaate arhitektuurile!" msgid "Cayman Islands" msgstr "Kaimani saared" +#. 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 "Siirded" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -872,6 +927,16 @@ msgstr "Haiti" msgid "Search" msgstr "Otsi" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -927,13 +992,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -967,6 +1032,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1014,7 +1085,7 @@ msgid "On Create" msgstr "Loomisel" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1115,12 +1186,6 @@ msgstr "Manustatud ID" msgid "Day: %(day)s" msgstr "Päev: %(day)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Sa ei saa lugeda seda dokumenti! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1162,8 +1227,8 @@ msgstr "" "object.list_price > object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (koopia)" @@ -1243,7 +1308,7 @@ msgid "Formula" msgstr "Valem" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "Ei saa eemaldada root kasutajat!" @@ -1254,7 +1319,8 @@ msgid "Malawi" msgstr "Malawi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1305,7 +1371,6 @@ msgstr "Puu" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "Hoia tühjana, kui sa ei taha, et kasutaja saaks ühenduda süsteemiga." @@ -1332,6 +1397,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1383,7 +1454,7 @@ msgid "Bahamas" msgstr "Bahama saared" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1405,6 +1476,12 @@ msgstr "Iirimaa" msgid "Number of modules updated" msgstr "Uuendatud moodulite arv" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1480,6 +1557,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1552,7 +1635,7 @@ msgid "Madagascar" msgstr "Madagaskar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1640,12 +1723,6 @@ msgstr "E-posti aadress" msgid "French (BE) / Français (BE)" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Sa ei saa kirjutada sellesse dokumenti! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1716,6 +1793,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1726,13 +1809,19 @@ msgstr "" msgid "Slovenia" msgstr "Sloveenia" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1762,6 +1851,14 @@ msgstr "Lõppkuupäev" msgid "New Zealand" msgstr "Uus-Meremaa" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1811,19 +1908,13 @@ msgstr "Viga! Sa ei saa luua rekursiivseid ettevõtteid." msgid "Valid" msgstr "Kehtiv" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Sa ei saa kustutada seda dokumenti! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "Ei saa uuendata moodulit '%s'. See pole paigaldatud" @@ -1934,6 +2025,15 @@ msgstr "Signaal (subflow.*)" msgid "HR sector" msgstr "" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1987,6 +2087,11 @@ msgstr "Sõltuvused" msgid "Main Company" msgstr "Emaettevõte" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2075,8 +2180,9 @@ msgid "Sir" msgstr "Härra" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2175,7 +2281,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "Palun määra toiming, mida alustada!" @@ -2199,6 +2305,12 @@ msgstr "Paremalt vasakule" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2219,7 +2331,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "Rekursiooni viga moodulite sõltuvustes !" @@ -2246,6 +2364,11 @@ msgstr "" "Käibemaksukohuslase number. Märgi see kast, kui partner on " "käibemaksukohuslane. Kasutatakse käibemaksu deklaratsioonis." +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2298,11 +2421,6 @@ msgstr "" msgid "VAT" msgstr "Käibemaks" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2339,7 +2457,7 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2348,13 +2466,21 @@ msgstr "" "Ei saa luua mooduli faili:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Nauru" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2430,6 +2556,12 @@ msgstr "Saada SMS" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2487,7 +2619,7 @@ msgid "Ecuador" msgstr "Ecuador" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2557,7 +2689,7 @@ msgid "Action to Trigger" msgstr "Toiming mida käivitada" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2754,18 +2886,13 @@ msgstr "Autor" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Laiendatud otsing" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Sobiv kuupäeva ja aja esitlus." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2811,7 +2938,7 @@ msgid "Rules" msgstr "Reeglid" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2882,7 +3009,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "Sa ei saa eemaldada mudelit '%s'!" @@ -2912,6 +3039,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2943,7 +3076,7 @@ msgid "Benin" msgstr "Benin" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2973,6 +3106,14 @@ msgstr "RML päis" msgid "API ID" msgstr "API ID" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3223,6 +3364,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "Nicaragua" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3501,7 +3648,8 @@ msgid "Bank Type" msgstr "Panga tüüp" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "Grupi nimi ei tohi alata \"-\" märgiga" @@ -3523,7 +3671,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3541,7 +3689,7 @@ msgid "Flow Start" msgstr "Voo algus" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3573,7 +3721,9 @@ msgid "Guadeloupe (French)" msgstr "Guadeloupe (Prantsuse)" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3648,6 +3798,11 @@ msgstr "" msgid "Cape Verde" msgstr "Roheneemesaared (Cabo Verde)" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3661,6 +3816,12 @@ msgstr "Sündmused" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3694,9 +3855,10 @@ msgid "French / Français" msgstr "Prantsuse keel / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Loodud menüüd" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -3946,6 +4108,14 @@ msgstr "Nõuanne" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3986,8 +4156,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -4017,12 +4187,9 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Klient" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "" #. module: base #: model:res.country,name:base.lc @@ -4130,6 +4297,18 @@ msgstr "Vietnam" msgid "Signature" msgstr "Signatuur" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4151,7 +4330,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4192,9 +4371,11 @@ msgid "Contacts" msgstr "Kontaktid" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Fääri saared" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4223,6 +4404,12 @@ msgstr "Tšehhi" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4267,15 +4454,9 @@ msgid "Mongolia" msgstr "Mongoolia" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Tõrge" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Loodud menüüd" #. module: base #: selection:ir.ui.view,type:0 @@ -4389,11 +4570,6 @@ msgstr "Saint Vincent ja Grenadines" msgid "Password" msgstr "Salasõna" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4493,7 +4669,7 @@ msgid "Change My Preferences" msgstr "Muuda Eelistusi" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Vigane mudeli nimi toimingu definitsioonis." @@ -4561,7 +4737,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4639,7 +4815,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4714,7 +4896,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Moodul %s: Vigane kvaliteedisertifikaat" @@ -4765,6 +4947,11 @@ msgstr "" msgid "Accepted Users" msgstr "Aksepteeritud kasutajad" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4880,6 +5067,14 @@ msgstr "" msgid "Nepal" msgstr "Nepaal" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4909,14 +5104,14 @@ msgid "Update Modules List" msgstr "Uuenda moodulite nimekirja" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4935,6 +5130,12 @@ msgstr "Jätka" msgid "Thai / ภาษาไทย" msgstr "Tai / ภาษาไทย" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5065,6 +5266,13 @@ msgstr "Riigi täisnimi." msgid "Iteration" msgstr "Iteratsioon" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5103,7 +5311,12 @@ msgid "Solomon Islands" msgstr "Saalomoni Saared" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "Ligipääsuviga" @@ -5114,7 +5327,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5124,6 +5337,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5241,7 +5460,7 @@ msgid "ir.actions.todo" msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5315,17 +5534,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5334,7 +5559,7 @@ msgid "Python Code" msgstr "Python kood" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "Ei saa luua mooduli faili: %s !" @@ -5453,7 +5678,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5492,7 +5717,7 @@ msgid "" msgstr "Vali objekt millel toiming rakendub (loe, kirjuta, loo)." #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5704,7 +5929,7 @@ msgid "Afghanistan, Islamic State of" msgstr "Afganistani Islamiosariik" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Viga!" @@ -5725,6 +5950,12 @@ msgstr "Intervalli ühik" msgid "Kind" msgstr "Liik" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5981,6 +6212,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5990,11 +6229,6 @@ msgstr "" msgid "Address" msgstr "Aadress" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6073,7 +6307,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "Saint Kitts ja Nevis Anguilla" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6159,7 +6393,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6180,11 +6414,19 @@ msgid "Child IDs" msgstr "Alam ID-d" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6231,6 +6473,14 @@ msgstr "E-post" msgid "Home Action" msgstr "Kodu toiming" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6259,10 +6509,9 @@ msgid "Stop All" msgstr "Peata kõik" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6313,7 +6562,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6371,7 +6620,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6423,7 +6672,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6504,7 +6753,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6542,6 +6798,12 @@ msgstr "Saaja" msgid "Arguments" msgstr "Argumendid" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6552,16 +6814,31 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" msgstr "" +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Klient" + #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (NI) / Español (NI)" @@ -6665,7 +6942,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6716,6 +6993,15 @@ msgstr "Tabeli viit" msgid "Object" msgstr "Objekt" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6751,7 +7037,7 @@ msgid "User Ref." msgstr "Kasutaja viide" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6892,7 +7178,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6950,7 +7236,7 @@ msgid "Action Type" msgstr "Toimingu tüüp" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7053,11 +7339,23 @@ msgstr "Riigi kood" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7234,6 +7532,11 @@ msgstr "Saada e-kiri" msgid "Menu Action" msgstr "Menüü tegevus" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Fääri saared" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7371,7 +7674,7 @@ msgid "China" msgstr "Hiina" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7569,7 +7872,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7613,6 +7916,14 @@ msgstr "Tõlge" msgid "Antigua and Barbuda" msgstr "Antigua ja Barbuda" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7671,7 +7982,7 @@ msgid "Auto-Refresh" msgstr "Automaatne värskendus" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7681,6 +7992,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis ja Futuna Saared" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7737,6 +8053,35 @@ msgstr "Panga identifitseerimiskood (BIC)" msgid "Turkmenistan" msgstr "Türkmenistan" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Tõrge" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7865,7 +8210,7 @@ msgid "Internal Header/Footer" msgstr "Sisemine päis/jalus" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7904,6 +8249,14 @@ msgstr "Dominikaani Vabariik" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7929,7 +8282,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7976,11 +8329,18 @@ msgid "Low" msgstr "Madal" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7989,7 +8349,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8143,7 +8503,7 @@ msgid "View Auto-Load" msgstr "Vaate automaatlaadimine" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8155,6 +8515,11 @@ msgstr "" msgid "Resource" msgstr "Ressurss" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8166,7 +8531,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8178,6 +8543,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8302,7 +8675,7 @@ msgid "Azerbaijan" msgstr "Aserbaidžaan" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "" @@ -8329,9 +8702,9 @@ msgid "Czech / Čeština" msgstr "Tsehhi keel / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis ja Futuna Saared" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Laiendatud otsing" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8633,7 +9006,7 @@ msgid "Account Owner" msgstr "Konto omanik" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8693,7 +9066,7 @@ msgid "Workflow Instances" msgstr "Töövoo juhtumid" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "" @@ -9981,6 +10354,10 @@ msgstr "Vene keel / русский язык" #~ "Pane tähele, et sa pead väljuma ja uuesti sisenema, kui sa muudad oma " #~ "parooli." +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Sa ei saa luua seda tüüpi dokumenti! (%s)" + #, python-format #~ msgid "This url '%s' must provide an html file with links to zip modules" #~ msgstr "See url '%s' peab andma html faili, mis viitab zip moodulitele" @@ -9989,6 +10366,10 @@ msgstr "Vene keel / русский язык" #~ msgid "Password mismatch !" #~ msgstr "Salasõna ei klapi !" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Sa ei saa lugeda seda dokumenti! (%s)" + #, python-format #~ msgid "" #~ "You try to install the module '%s' that depends on the module:'%s'.\n" @@ -10014,10 +10395,18 @@ msgstr "Vene keel / русский язык" #~ msgid "This user can not connect using this company !" #~ msgstr "See kasutaja ei saa ühendada kasutades seda firmat !" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Sa ei saa kirjutada sellesse dokumenti! (%s)" + #, python-format #~ msgid "Enter at least one field !" #~ msgstr "Sisesta vähemalt üks väli!" +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Sa ei saa kustutada seda dokumenti! (%s)" + #~ msgid "Bank List" #~ msgstr "Bankade nimekiri" diff --git a/bin/addons/base/i18n/eu.po b/bin/addons/base/i18n/eu.po index 071e674dede..cb5baf7af9e 100644 --- a/bin/addons/base/i18n/eu.po +++ b/bin/addons/base/i18n/eu.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2009-12-24 06:47+0000\n" "Last-Translator: Ander Elortondo \n" "Language-Team: Basque \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:52+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:14+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -41,6 +41,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -53,12 +61,6 @@ msgstr "Metadatuak" msgid "View Architecture" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -109,6 +111,14 @@ msgstr "" msgid "Created Views" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -125,10 +135,9 @@ msgid "South Korea" msgstr "Hego Korea" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" msgstr "" #. module: base @@ -141,13 +150,20 @@ msgstr "" msgid "Swaziland" msgstr "" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -176,13 +192,13 @@ msgid "Search Partner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "" @@ -213,7 +229,7 @@ msgid "Contact Name" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -235,6 +251,12 @@ msgstr "" msgid "Wizard Name" msgstr "" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -267,7 +289,6 @@ msgstr "" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -318,7 +339,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -340,11 +361,6 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -352,6 +368,12 @@ msgid "" "name, it returns the previous report." msgstr "" +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -378,6 +400,12 @@ msgstr "" msgid "Schedule Upgrade" msgstr "" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -419,7 +447,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -666,6 +694,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -730,6 +764,14 @@ msgstr "" msgid "Type" msgstr "" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -756,6 +798,19 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -860,6 +915,16 @@ msgstr "" msgid "Search" msgstr "" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -915,13 +980,13 @@ msgid "ir.exports" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -952,6 +1017,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -999,7 +1070,7 @@ msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1100,12 +1171,6 @@ msgstr "" 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 #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1145,8 +1210,8 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr "" @@ -1224,7 +1289,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1235,7 +1300,8 @@ msgid "Malawi" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1284,7 +1350,6 @@ msgstr "" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1311,6 +1376,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1362,7 +1433,7 @@ msgid "Bahamas" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1383,6 +1454,12 @@ msgstr "" msgid "Number of modules updated" msgstr "" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1458,6 +1535,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1527,7 +1610,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1612,12 +1695,6 @@ msgstr "" msgid "French (BE) / Français (BE)" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1688,6 +1765,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1698,13 +1781,19 @@ msgstr "" msgid "Slovenia" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1734,6 +1823,14 @@ msgstr "" msgid "New Zealand" msgstr "" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1783,19 +1880,13 @@ msgstr "" msgid "Valid" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "" @@ -1906,6 +1997,15 @@ msgstr "" msgid "HR sector" msgstr "" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1959,6 +2059,11 @@ msgstr "" msgid "Main Company" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2045,8 +2150,9 @@ msgid "Sir" msgstr "" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2145,7 +2251,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2169,6 +2275,12 @@ msgstr "" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2189,7 +2301,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "" @@ -2214,6 +2332,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2266,11 +2389,6 @@ msgstr "" msgid "VAT" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2307,20 +2425,28 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" " %s" msgstr "" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2396,6 +2522,12 @@ msgstr "" msgid "EAN13" msgstr "" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2453,7 +2585,7 @@ msgid "Ecuador" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2519,7 +2651,7 @@ msgid "Action to Trigger" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2714,18 +2846,13 @@ msgstr "" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2771,7 +2898,7 @@ msgid "Rules" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2839,7 +2966,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -2869,6 +2996,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2900,7 +3033,7 @@ msgid "Benin" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2930,6 +3063,14 @@ msgstr "" msgid "API ID" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3175,6 +3316,12 @@ msgstr "" msgid "Nicaragua" msgstr "" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3453,7 +3600,8 @@ msgid "Bank Type" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "" @@ -3475,7 +3623,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3493,7 +3641,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3525,7 +3673,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3600,6 +3750,11 @@ msgstr "" msgid "Cape Verde" msgstr "" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3613,6 +3768,12 @@ msgstr "" msgid "ir.actions.url" msgstr "" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3646,8 +3807,9 @@ msgid "French / Français" msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" msgstr "" #. module: base @@ -3898,6 +4060,14 @@ msgstr "" msgid "ir.attachment" msgstr "" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3936,8 +4106,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -3967,11 +4137,8 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" msgstr "" #. module: base @@ -4080,6 +4247,18 @@ msgstr "" msgid "Signature" msgstr "" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4101,7 +4280,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4142,8 +4321,10 @@ msgid "Contacts" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" msgstr "" #. module: base @@ -4173,6 +4354,12 @@ msgstr "" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4217,14 +4404,8 @@ msgid "Mongolia" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -4339,11 +4520,6 @@ msgstr "" msgid "Password" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4443,7 +4619,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4511,7 +4687,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4589,7 +4765,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4662,7 +4844,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4710,6 +4892,11 @@ msgstr "" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4824,6 +5011,14 @@ msgstr "" msgid "Nepal" msgstr "" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4853,14 +5048,14 @@ msgid "Update Modules List" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4879,6 +5074,12 @@ msgstr "" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5009,6 +5210,13 @@ msgstr "" msgid "Iteration" msgstr "" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5047,7 +5255,12 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "" @@ -5058,7 +5271,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5068,6 +5281,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5185,7 +5404,7 @@ msgid "ir.actions.todo" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5259,17 +5478,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5278,7 +5503,7 @@ msgid "Python Code" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "" @@ -5397,7 +5622,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5436,7 +5661,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5648,7 +5873,7 @@ msgid "Afghanistan, Islamic State of" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "" @@ -5669,6 +5894,12 @@ msgstr "" msgid "Kind" msgstr "" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5924,6 +6155,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5933,11 +6172,6 @@ msgstr "" msgid "Address" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6016,7 +6250,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6100,7 +6334,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6121,11 +6355,19 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6172,6 +6414,14 @@ msgstr "" msgid "Home Action" msgstr "" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6200,10 +6450,9 @@ msgid "Stop All" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6254,7 +6503,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6312,7 +6561,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6364,7 +6613,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6445,7 +6694,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6483,6 +6739,12 @@ msgstr "" msgid "Arguments" msgstr "" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6493,14 +6755,29 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" msgstr "" #. module: base @@ -6606,7 +6883,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6657,6 +6934,15 @@ msgstr "" msgid "Object" msgstr "" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6692,7 +6978,7 @@ msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6833,7 +7119,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6889,7 +7175,7 @@ msgid "Action Type" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -6992,11 +7278,23 @@ msgstr "" msgid "workflow.instance" msgstr "" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7171,6 +7469,11 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7308,7 +7611,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7506,7 +7809,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7550,6 +7853,14 @@ msgstr "" msgid "Antigua and Barbuda" msgstr "" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7608,7 +7919,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7618,6 +7929,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7674,6 +7990,35 @@ msgstr "" msgid "Turkmenistan" msgstr "" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7802,7 +8147,7 @@ msgid "Internal Header/Footer" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7841,6 +8186,14 @@ msgstr "" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7864,7 +8217,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7911,11 +8264,18 @@ msgid "Low" msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7924,7 +8284,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8078,7 +8438,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8090,6 +8450,11 @@ msgstr "" msgid "Resource" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8101,7 +8466,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8113,6 +8478,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8237,7 +8610,7 @@ msgid "Azerbaijan" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "" @@ -8264,8 +8637,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" msgstr "" #. module: base @@ -8564,7 +8937,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8624,7 +8997,7 @@ msgid "Workflow Instances" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "" diff --git a/bin/addons/base/i18n/fa.po b/bin/addons/base/i18n/fa.po index 23684e5ad01..c84e7b8ef21 100644 --- a/bin/addons/base/i18n/fa.po +++ b/bin/addons/base/i18n/fa.po @@ -2,14 +2,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-16 08:41+0000\n" "Last-Translator: avion \n" "Language-Team: OpenERP Iran \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:56+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:18+0000\n" "X-Generator: Launchpad (build Unknown)\n" "X-Poedit-Country: IRAN, ISLAMIC REPUBLIC OF\n" "X-Poedit-Language: Persian\n" @@ -38,6 +38,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -50,12 +58,6 @@ msgstr "فراداده" msgid "View Architecture" msgstr "ساختمان نما" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "شما نمی‌توانید این نوع از سند را پدید آورید! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -106,6 +108,14 @@ msgstr "" msgid "Created Views" msgstr "نماهای پدیدآمده" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -122,11 +132,10 @@ msgid "South Korea" msgstr "کره جنوبی" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "گذارها" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -138,13 +147,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "سوازیلند" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -175,13 +191,13 @@ msgid "Search Partner" msgstr "جستجوی همکار" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "تازه" @@ -212,7 +228,7 @@ msgid "Contact Name" msgstr "نام تماس" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -236,6 +252,12 @@ msgstr "فعال" msgid "Wizard Name" msgstr "نام تردست" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -268,7 +290,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -319,7 +340,7 @@ msgid "Netherlands Antilles" msgstr "آنتیل هلند" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -344,11 +365,6 @@ msgstr "یونانی / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "بوسنیایی / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -358,6 +374,12 @@ msgstr "" "اگر شما این را تیک بزنید، دومین باری که کاربر پیوستی با همان نام را چاپ " "می‌کند، گزارش پیشین بازگردانده می‌شود." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -384,6 +406,12 @@ msgstr "کلمبیا" msgid "Schedule Upgrade" msgstr "ارتقا زمان‌بندی شده" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -427,7 +455,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "نام فیلدهای دلخواه باید با 'x_' آغاز شوند!" @@ -674,6 +702,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -738,6 +772,14 @@ msgstr "%B - نام کامل ماه." msgid "Type" msgstr "نوع" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -764,6 +806,19 @@ msgstr "XML برای ساختمان نما معتبر نیست!" msgid "Cayman Islands" msgstr "جزایر کِیمَن" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "گذارها" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -871,6 +926,16 @@ msgstr "هاییتی" msgid "Search" msgstr "جستجو" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -926,13 +991,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -966,6 +1031,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1013,7 +1084,7 @@ msgid "On Create" msgstr "در هنگام پدیدن" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1117,12 +1188,6 @@ msgstr "شناسه پیوست" msgid "Day: %(day)s" msgstr "روز: %(day)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "شما نمی‌توانید این سند را بخوانید! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1164,8 +1229,8 @@ msgstr "" "object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " STOCK_COPY" @@ -1245,7 +1310,7 @@ msgid "Formula" msgstr "فرمول" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "نمی‌توانید کاربر ریشه را بردارید!" @@ -1256,7 +1321,8 @@ msgid "Malawi" msgstr "مالاوی" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1308,7 +1374,6 @@ msgstr "درخت" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1337,6 +1402,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1388,7 +1459,7 @@ msgid "Bahamas" msgstr "باهاماس" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1410,6 +1481,12 @@ msgstr "ایرلند" msgid "Number of modules updated" msgstr "تعداد پیمانه‌های بروزرسانده" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1485,6 +1562,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1557,7 +1640,7 @@ msgid "Madagascar" msgstr "ماداگاسکار" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1646,12 +1729,6 @@ msgstr "نشانی ایمیل" msgid "French (BE) / Français (BE)" msgstr "فرانسوی (بلژیک) / Français (BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "شما نمی‌توانید در این سند بنویسید! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1722,6 +1799,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1732,13 +1815,19 @@ msgstr "" msgid "Slovenia" msgstr "اسلوونی" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1768,6 +1857,14 @@ msgstr "تاریخ پایان" msgid "New Zealand" msgstr "زلاند نو" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1817,19 +1914,13 @@ msgstr "خطا! نمی‌توانید شرکت‌های تودرتو بسازی msgid "Valid" msgstr "معتبر" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "نمی‌توانید این سند را بردارید! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "نمی‌توانید پیمانه '%s' را ارتقا دهید زیرا برپاسازی نشده است." @@ -1940,6 +2031,15 @@ msgstr "سیگنال (subflow.*)" msgid "HR sector" msgstr "بخش منابع انسانی" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1993,6 +2093,11 @@ msgstr "وابستگی‌ها" msgid "Main Company" msgstr "شرکت اصلی" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2081,8 +2186,9 @@ msgid "Sir" msgstr "آقا" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2181,7 +2287,7 @@ msgid "Mayotte" msgstr "مایوت" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "لطفا کُنشی را برای اجرا مشخص کنید!" @@ -2205,6 +2311,12 @@ msgstr "راست به چپ" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2225,7 +2337,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "تودرتویی پیدا شده" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "خطای تودرتویی در وابستگی‌های پیمانه‌ها!" @@ -2253,6 +2371,11 @@ msgstr "" "مالیات بر ارزش افزوده است،تیک بزنید. این شماره در احکام قانونی مالیات بر " "ارزش افزوده بکارگرفته می‌شود." +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2305,11 +2428,6 @@ msgstr "" msgid "VAT" msgstr "مالیات بر ارزش افزوده" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2346,7 +2464,7 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2355,13 +2473,21 @@ msgstr "" "نمی‌توان پرونده پیمانه را پدیدآورد:\n" "%s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "نائورو" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2437,6 +2563,12 @@ msgstr "ارسال پیامک" msgid "EAN13" msgstr "بارکد" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2494,7 +2626,7 @@ msgid "Ecuador" msgstr "اکوادور" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2565,7 +2697,7 @@ msgid "Action to Trigger" msgstr "کنش برای رهاساز" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2762,18 +2894,13 @@ msgstr "مولف" msgid "FYROM" msgstr "FYROM" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "جستجوی پیشرفته" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - چگونگی نمایش مناسب تاریخ و ساعت" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2819,7 +2946,7 @@ msgid "Rules" msgstr "قواعد" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2890,7 +3017,7 @@ msgid "Lesotho" msgstr "لسوتو" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "شما نمی‌توانید مدل '%s' را بردارید!" @@ -2920,6 +3047,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2951,7 +3084,7 @@ msgid "Benin" msgstr "بنین" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2981,6 +3114,14 @@ msgstr "آغازه RML" msgid "API ID" msgstr "شناسه API" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3231,6 +3372,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "نیکاراگوئه" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3509,7 +3656,8 @@ msgid "Bank Type" msgstr "نوع بانک" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "نام گروه نمی‌تواند با \"-\" آغاز شود" @@ -3531,7 +3679,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3549,7 +3697,7 @@ msgid "Flow Start" msgstr "آغاز گردش" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3581,7 +3729,9 @@ msgid "Guadeloupe (French)" msgstr "گویان فرانسه" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3656,6 +3806,11 @@ msgstr "" msgid "Cape Verde" msgstr "کیپ ورد" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3669,6 +3824,12 @@ msgstr "رویدادها" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3702,9 +3863,10 @@ msgid "French / Français" msgstr "فرانسوی / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "منوهای پدیدآمده" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -3954,6 +4116,14 @@ msgstr "اندرز" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3994,8 +4164,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -4025,12 +4195,9 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "مشتری" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "" #. module: base #: model:res.country,name:base.lc @@ -4138,6 +4305,18 @@ msgstr "ویتنام" msgid "Signature" msgstr "امضا" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4159,7 +4338,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4200,9 +4379,11 @@ msgid "Contacts" msgstr "تماس‌ها" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "جزایر فارو" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4231,6 +4412,12 @@ msgstr "جمهوری چک" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4275,15 +4462,9 @@ msgid "Mongolia" msgstr "مغولستان" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "خطا" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "منوهای پدیدآمده" #. module: base #: selection:ir.ui.view,type:0 @@ -4397,11 +4578,6 @@ msgstr "امریکا/سنت وینسنت" msgid "Password" msgstr "گذرواژه" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4501,7 +4677,7 @@ msgid "Change My Preferences" msgstr "تغییر ترجیحات من" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "نام مدل در تعریف کنش نامعتبر است." @@ -4569,7 +4745,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4647,7 +4823,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4723,7 +4905,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "پیمانه %s: گواهینامه کیفیت نامعتبر" @@ -4774,6 +4956,11 @@ msgstr "" msgid "Accepted Users" msgstr "کاربران پذیرفته" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4889,6 +5076,14 @@ msgstr "" msgid "Nepal" msgstr "نپال" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4918,14 +5113,14 @@ msgid "Update Modules List" msgstr "بروزرسانی فهرست پیمانه‌ها" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4944,6 +5139,12 @@ msgstr "ادامه" msgid "Thai / ภาษาไทย" msgstr "تایلندی / ภาษาไทย" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5074,6 +5275,13 @@ msgstr "نام کامل کشور." msgid "Iteration" msgstr "تکرار" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5112,7 +5320,12 @@ msgid "Solomon Islands" msgstr "جزایر سلیمان" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "خطای دسترسی" @@ -5123,7 +5336,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5133,6 +5346,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5250,7 +5469,7 @@ msgid "ir.actions.todo" msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5324,17 +5543,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5343,7 +5568,7 @@ msgid "Python Code" msgstr "کد پایتون" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "ناتوانی در پدیدن پرونده پیمانه: %s!" @@ -5462,7 +5687,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5501,7 +5726,7 @@ msgid "" msgstr "شیی را که کُنش روی آن کار خواهد کرد برگزینید (خواندن،‌نوشتن، پدیدن)." #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5713,7 +5938,7 @@ msgid "Afghanistan, Islamic State of" msgstr "افغانستان (ولایت اسلامی)" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "خطا!" @@ -5734,6 +5959,12 @@ msgstr "یکای بازه" msgid "Kind" msgstr "گونه" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5991,6 +6222,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -6000,11 +6239,6 @@ msgstr "" msgid "Address" msgstr "نشانی" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6083,7 +6317,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "سنت کیتس و نویس انگیلا" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6169,7 +6403,7 @@ msgid "Samoa" msgstr "ساموا" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6190,11 +6424,19 @@ msgid "Child IDs" msgstr "شناسه‌های فرزند" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "ایراد در پیکربندی 'شناسه رکورد' در کُنش سمت کارپذیر!" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6241,6 +6483,14 @@ msgstr "ایمیل" msgid "Home Action" msgstr "کنش خانه" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6269,10 +6519,9 @@ msgid "Stop All" msgstr "توقف همه" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6323,7 +6572,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6381,7 +6630,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6433,7 +6682,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6514,7 +6763,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6552,6 +6808,12 @@ msgstr "به" msgid "Arguments" msgstr "نشانوندها" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6562,16 +6824,31 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" msgstr "" +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "مشتری" + #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (NI) / Español (NI)" @@ -6675,7 +6952,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6726,6 +7003,15 @@ msgstr "مرجع جدول" msgid "Object" msgstr "شی" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6761,7 +7047,7 @@ msgid "User Ref." msgstr "مرجع کاربر" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6902,7 +7188,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6960,7 +7246,7 @@ msgid "Action Type" msgstr "نوع واکنش" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7063,11 +7349,23 @@ msgstr "کد کشور" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7244,6 +7542,11 @@ msgstr "ارسال ایمیل" msgid "Menu Action" msgstr "منوی کنش" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "جزایر فارو" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7381,7 +7684,7 @@ msgid "China" msgstr "چین" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7579,7 +7882,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7623,6 +7926,14 @@ msgstr "مقدار برگردان" msgid "Antigua and Barbuda" msgstr "اَنتیگا و باربودا" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7681,7 +7992,7 @@ msgid "Auto-Refresh" msgstr "نوسازی خودکار" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7691,6 +8002,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "جزایر والیس و فوتونا" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7747,6 +8063,35 @@ msgstr "کد شناسه بانک" msgid "Turkmenistan" msgstr "ترکمنستان" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "خطا" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7876,7 +8221,7 @@ msgid "Internal Header/Footer" msgstr "سرنویس/پانویس داخلی" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7917,6 +8262,14 @@ msgstr "جمهوری دومنیکن" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7943,7 +8296,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7990,11 +8343,18 @@ msgid "Low" msgstr "پایین" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -8003,7 +8363,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8157,7 +8517,7 @@ msgid "View Auto-Load" msgstr "نمایش بارگذاری خودکار" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8169,6 +8529,11 @@ msgstr "" msgid "Resource" msgstr "منبع" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8180,7 +8545,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8192,6 +8557,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8316,7 +8689,7 @@ msgid "Azerbaijan" msgstr "آذربایجان" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "هشدار" @@ -8343,9 +8716,9 @@ msgid "Czech / Čeština" msgstr "چک / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "جزایر والیس و فوتونا" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "جستجوی پیشرفته" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8648,7 +9021,7 @@ msgid "Account Owner" msgstr "دارنده حساب" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8708,7 +9081,7 @@ msgid "Workflow Instances" msgstr "وهله‌های کارگردش" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "همکاران: " @@ -9103,10 +9476,6 @@ msgstr "روسی / русский язык" #~ msgid "Import language" #~ msgstr "درونش زبان" -#, python-format -#~ msgid "Recursivity Detected." -#~ msgstr "تودرتویی پیدا شده" - #~ msgid "terp-account" #~ msgstr "terp-account" @@ -10023,6 +10392,10 @@ msgstr "روسی / русский язык" #~ msgid "Choose a language to install:" #~ msgstr "زبانی را برای برپاسازی برگزینید:" +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "شما نمی‌توانید این نوع از سند را پدید آورید! (%s)" + #, python-format #~ msgid "Password mismatch !" #~ msgstr "گذرواژه جور نیست!" @@ -10046,6 +10419,10 @@ msgstr "روسی / русский язык" #~ msgid "Model %s Does not Exist !" #~ msgstr "مدل %s پیدا نشد!" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "شما نمی‌توانید این سند را بخوانید! (%s)" + #~ msgid "" #~ "Would your payment have been carried out after this mail was sent, please " #~ "consider the present one as void. Do not hesitate to contact our accounting " @@ -10077,9 +10454,17 @@ msgstr "روسی / русский язык" #~ msgid "Enter at least one field !" #~ msgstr "دست‌کم یک فیلد را وارد کنید!" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "شما نمی‌توانید در این سند بنویسید! (%s)" + #~ msgid "My Closed Requests" #~ msgstr "درخواست‌های بسته من" +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "نمی‌توانید این سند را بردارید! (%s)" + #~ msgid "Bank List" #~ msgstr "فهرست بانک" diff --git a/bin/addons/base/i18n/fi.po b/bin/addons/base/i18n/fi.po index 8efa9748e3b..40588db43c9 100644 --- a/bin/addons/base/i18n/fi.po +++ b/bin/addons/base/i18n/fi.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-08 07:41+0000\n" "Last-Translator: Sami Haahtinen \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:53+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:15+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +60,6 @@ msgstr "Metadata" msgid "View Architecture" msgstr "Näkymäarkkitehtuuri" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Tällaista dokumenttia ei voida luoda! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +110,14 @@ msgstr "" msgid "Created Views" msgstr "Luodut näkymät" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,11 +134,10 @@ msgid "South Korea" msgstr "Etelä-Korea" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "Siirtymät" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -140,13 +149,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Swazimaa" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -177,13 +193,13 @@ msgid "Search Partner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "uusi" @@ -214,7 +230,7 @@ msgid "Contact Name" msgstr "Kontaktin nimi" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -238,6 +254,12 @@ msgstr "aktiivinen" msgid "Wizard Name" msgstr "Wizardin nimi" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -270,7 +292,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -321,7 +342,7 @@ msgid "Netherlands Antilles" msgstr "Alankomaiden Antillit" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -345,11 +366,6 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "Bosnia / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -359,6 +375,12 @@ msgstr "" "Jos valitset tämän, toisella kerralla kun käyttäjä tulostaa saman nimisen " "liitteen, palautetaan edellinen raportti." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "Lukumenetelmä ei ole käytössä tässä objektissa!" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -385,6 +407,12 @@ msgstr "Kolumbia" msgid "Schedule Upgrade" msgstr "Aikatauluta päivitys" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "Avainta/arvoa '%s' ei löytynyt valintakentästä '%s'" + #. module: base #: help:res.country,code:0 msgid "" @@ -428,7 +456,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Kustomoidun kentän nimen täytyy alkaa 'x_' !" @@ -675,6 +703,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "Unlink-menetelmä ei ole käytössä tässä objektissa!" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -739,6 +773,16 @@ msgstr "%B - Kuukauden koko nimi." msgid "Type" msgstr "Tyyppi" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" +"Kieltä, jonka koodi on \"%s\" ei ole määritetty järjestelmääsi !\n" +"Määritä se järjestelmänhallinta valikosta." + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -765,6 +809,19 @@ msgstr "Virheellinen XML näkymäarkkitehtuurille!" msgid "Cayman Islands" msgstr "Caymansaaret" +#. 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 "Siirtymät" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -872,6 +929,16 @@ msgstr "Haiti" msgid "Search" msgstr "" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -927,13 +994,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -967,6 +1034,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "Hakumenetelmä ei ole käytössä tässä objektissa!" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1014,7 +1087,7 @@ msgid "On Create" msgstr "Luo" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1118,12 +1191,6 @@ msgstr "Liitetty ID" msgid "Day: %(day)s" msgstr "Päivä: %(day)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Dokumenttia ei voida lukea! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1165,8 +1232,8 @@ msgstr "" "object.cost_price." #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr "" @@ -1246,7 +1313,7 @@ msgid "Formula" msgstr "Kaava" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "Root-käyttäjää ei voi poistaa!" @@ -1257,7 +1324,8 @@ msgid "Malawi" msgstr "Malawi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1309,7 +1377,6 @@ msgstr "Puu" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "Jätä tyhjäksi jos haluat ettei käyttäjä voi yhdistyä järjestelmään." @@ -1336,6 +1403,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "Search_memory-menetelmä ei käytössä!" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1387,7 +1460,7 @@ msgid "Bahamas" msgstr "Bahama" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1410,6 +1483,12 @@ msgstr "Irlanti" msgid "Number of modules updated" msgstr "Päivitettyjen moduulien määrä" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "Set_memory-menetelmä ei ole käytössä!" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1485,6 +1564,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1557,7 +1642,7 @@ msgid "Madagascar" msgstr "Madagaskar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1646,12 +1731,6 @@ msgstr "Sähköpostiosoite" msgid "French (BE) / Français (BE)" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Et voi kirjoittaa tähän asiakirjaan! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1722,6 +1801,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "Perm_read-menetelmä ei ole käytössä tässä objektissa!" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1732,13 +1817,19 @@ msgstr "" msgid "Slovenia" msgstr "Slovenia" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "Virhe!" @@ -1768,6 +1859,14 @@ msgstr "Loppu päiväys" msgid "New Zealand" msgstr "Uusi-Seelanti" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1817,19 +1916,13 @@ msgstr "Virhe! Rekursiivisiä yrityksiä ei voi luoda." msgid "Valid" msgstr "Voimassa oleva" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Et voi poistaa tätä asiakirjaa (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "Moduulia \"%s\" ei voi päivittää, koska sitä ei ole asennettu." @@ -1940,6 +2033,15 @@ msgstr "Signaali (subflow.*)" msgid "HR sector" msgstr "Henkilöstösektori" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1993,6 +2095,11 @@ msgstr "Riippuvuudet" msgid "Main Company" msgstr "Pääyritys" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2081,8 +2188,9 @@ msgid "Sir" msgstr "Herra" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2181,7 +2289,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "Määrittele toiminto joka käynnistetään!" @@ -2205,6 +2313,12 @@ msgstr "Oikealta vasemmalle" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "Tarkista että kaikissa riveissä on %d saraketta." + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2225,7 +2339,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "Rekursiivisyys havaittu." + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "Rekursiivisyysvirhe moduulien riippuvuuksissa!" @@ -2252,6 +2372,11 @@ msgstr "" "Arvonlisäverotunnus. Valitse tämä jos kumppaniin sovelletaan ALV:a. " "Käytetään lainmukaisessa ALV-ilmoituksessa." +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2304,11 +2429,6 @@ msgstr "" msgid "VAT" msgstr "ALV" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2345,7 +2465,7 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2354,13 +2474,21 @@ msgstr "" "Moduulitiedostoa ei voi luoda:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Nauru" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2436,6 +2564,12 @@ msgstr "Lähetä SMS-viesti" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2493,7 +2627,7 @@ msgid "Ecuador" msgstr "Ecuador" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2565,7 +2699,7 @@ msgid "Action to Trigger" msgstr "Liipaiseva toiminto" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2762,18 +2896,13 @@ msgstr "Laatija" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Tarkennettu haku" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Sopiva päivämäärän ja kellonajan esitysmuoto." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2819,7 +2948,7 @@ msgid "Rules" msgstr "Säännöt" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "Yrität poistaa moduulia joka on asennettu tai tullaan asentamaan" @@ -2889,7 +3018,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "Mallia '%s' ei voida poistaa!" @@ -2919,6 +3048,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "Virhe tarkistettaessa kenttiä %s: %s" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2950,7 +3085,7 @@ msgid "Benin" msgstr "Benin" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2980,6 +3115,14 @@ msgstr "RML-ylätunniste" msgid "API ID" msgstr "API tunnus" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3230,6 +3373,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "Nicaragua" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "Kirjoitusmenetelmä ei ole käytössä tässä objektissa!" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3509,7 +3658,8 @@ msgid "Bank Type" msgstr "Pankin tyyppi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "Ryhmän nimi ei voi alkaa \"-\"" @@ -3531,7 +3681,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3549,7 +3699,7 @@ msgid "Flow Start" msgstr "Kulun aloitus" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3581,7 +3731,9 @@ msgid "Guadeloupe (French)" msgstr "Guadeloupe (Ranska)" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "Käyttäjä virhe" @@ -3656,6 +3808,11 @@ msgstr "" msgid "Cape Verde" msgstr "Kap Verde" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3669,6 +3826,13 @@ msgstr "Tapahtumat" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" +"Väärä tunnus selaustietueeseen: saatiin %r, odotettiin kokonaislukua." + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3702,9 +3866,10 @@ msgid "French / Français" msgstr "Ranska / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Luodut valikot" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "Luomismenetelmä ei ole käytössä tässä objektissa!" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -3955,6 +4120,14 @@ msgstr "Neuvo" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3995,8 +4168,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -4026,12 +4199,9 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Asiakas" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "" #. module: base #: model:res.country,name:base.lc @@ -4139,6 +4309,18 @@ msgstr "Vietnam" msgid "Signature" msgstr "Allekirjoitus" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "Ei toteutettu" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4160,7 +4342,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4201,9 +4383,11 @@ msgid "Contacts" msgstr "Yhteyshenkilöt" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Färsaaret" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "Ei voi poistaa tätä dokumenttia koska sitä käytetään oletuksena" #. module: base #: view:res.widget.wizard:0 @@ -4232,6 +4416,12 @@ msgstr "Tšekki" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4276,15 +4466,9 @@ msgid "Mongolia" msgstr "Mongolia" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Virhe" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Luodut valikot" #. module: base #: selection:ir.ui.view,type:0 @@ -4398,11 +4582,6 @@ msgstr "Saint Vincent ja Grenadiinit" msgid "Password" msgstr "Salasana" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4502,7 +4681,7 @@ msgid "Change My Preferences" msgstr "Muuta asetuksiani" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Virheellinen mallin nimi toimenpiteen määrittelyssä." @@ -4570,7 +4749,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4648,7 +4827,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "Käytettävää metodia ei ole toteutettu tälle objektille !" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4723,7 +4908,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Moduuli %s: virheellinen laatusertifikaatti" @@ -4774,6 +4959,11 @@ msgstr "" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4890,6 +5080,14 @@ msgstr "" msgid "Nepal" msgstr "Nepal" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4919,14 +5117,14 @@ msgid "Update Modules List" msgstr "Päivitä lista moduuleista" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4945,6 +5143,12 @@ msgstr "Jatka" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "Objektia %s ei ole olemassa" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5075,6 +5279,13 @@ msgstr "Täydellinen maan nimi." msgid "Iteration" msgstr "Iteraatio" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "UserError" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5113,7 +5324,12 @@ msgid "Solomon Islands" msgstr "Salomonsaaret" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "AccessError" @@ -5124,7 +5340,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5134,6 +5350,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p = 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "Menetelmä \"copy\" ei ole käytössä tässä objektissa!" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5251,7 +5473,7 @@ msgid "ir.actions.todo" msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5325,17 +5547,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "Menetelmä \"get_memory\" ei käytössä!" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5344,7 +5572,7 @@ msgid "Python Code" msgstr "Python-koodi" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "Ei voitu luoda moduulitiedostoa: %s !" @@ -5463,7 +5691,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5503,7 +5731,7 @@ msgstr "" "Valitse objekti jossa toiminto suoritetaan (luku, kirjoitus, luonti)." #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5715,7 +5943,7 @@ msgid "Afghanistan, Islamic State of" msgstr "Afganistan" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Virhe !" @@ -5736,6 +5964,12 @@ msgstr "Väliyksikkö" msgid "Kind" msgstr "Tyyppi" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "Tätä menetelmää ei ole enää olemassa" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5993,6 +6227,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -6002,11 +6244,6 @@ msgstr "" msgid "Address" msgstr "Osoite" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6085,7 +6322,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "Saint Kitts ja Nevis" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6171,7 +6408,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6192,11 +6429,19 @@ msgid "Child IDs" msgstr "Alatunnukset" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Ongelma palvelintoiminnon konfiguraatiossa \"Talletustunnus\"." +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "ValidateError" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6243,6 +6488,16 @@ msgstr "Sähköposti" msgid "Home Action" msgstr "Kotitoiminto" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" +"Datan summa (2. kenttä) on nolla.\n" +"Piirakkadiagrammia ei voida piirtää!" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6271,10 +6526,9 @@ msgid "Stop All" msgstr "Pysäytä kaikki" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6325,7 +6579,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6383,7 +6637,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6435,7 +6689,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6516,7 +6770,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6554,6 +6815,12 @@ msgstr "Vastaanottaja" msgid "Arguments" msgstr "Argumentit" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "Tietokanta ID:tä ei ole: %s : %s" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6564,15 +6831,30 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "avainta '%s' ei löytynyt valintakentästä '%s'" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" -msgstr "" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "Arvo \"%s\" kentälle \"%s\" ei ole valinnassa" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Asiakas" #. module: base #: selection:base.language.install,lang:0 @@ -6677,7 +6959,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6728,6 +7010,15 @@ msgstr "Taulukon viite" msgid "Object" msgstr "Objekti" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6763,7 +7054,7 @@ msgid "User Ref." msgstr "Käyttäjän viite" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "Varoitus !" @@ -6904,7 +7195,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6962,7 +7253,7 @@ msgid "Action Type" msgstr "Toiminnon tyyppi" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7065,11 +7356,23 @@ msgstr "Maatunnus" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S = 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "Määrittelemätön \"get\" menetelmä!" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7246,6 +7549,11 @@ msgstr "Lähetä sähköposti" msgid "Menu Action" msgstr "Valikkotoiminto" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Färsaaret" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7383,7 +7691,7 @@ msgid "China" msgstr "Kiina" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7581,7 +7889,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7625,6 +7933,14 @@ msgstr "Käännös" msgid "Antigua and Barbuda" msgstr "Antigua ja Barbuda" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7683,7 +7999,7 @@ msgid "Auto-Refresh" msgstr "Automaattinen päivitys" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7693,6 +8009,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis- ja Futunasaaret" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7749,6 +8070,35 @@ msgstr "BIC / SWIFT-koodi" msgid "Turkmenistan" msgstr "Turkmenistan" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Virhe" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7877,7 +8227,7 @@ msgid "Internal Header/Footer" msgstr "Sisäinen ylä- / alatunniste" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7918,6 +8268,14 @@ msgstr "Dominikaaninen tasavalta" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7943,7 +8301,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7990,11 +8348,18 @@ msgid "Low" msgstr "Matala" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -8003,7 +8368,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8157,7 +8522,7 @@ msgid "View Auto-Load" msgstr "Näkymän automaattinen lataus" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8169,6 +8534,11 @@ msgstr "" msgid "Resource" msgstr "Resurssi" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8180,7 +8550,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8192,6 +8562,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8316,7 +8694,7 @@ msgid "Azerbaijan" msgstr "Azerbaidžan" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Varoitus" @@ -8343,9 +8721,9 @@ msgid "Czech / Čeština" msgstr "Tšekki / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis- ja Futunasaaret" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Tarkennettu haku" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8649,7 +9027,7 @@ msgid "Account Owner" msgstr "Tilin omistaja" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8709,7 +9087,7 @@ msgid "Workflow Instances" msgstr "Työnkulun instanssit" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Kumppanit: " @@ -9971,6 +10349,10 @@ msgstr "Venäjä / русский язык" #~ msgid "Product quantity" #~ msgstr "Tuotemäärä" +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Tällaista dokumenttia ei voida luoda! (%s)" + #, python-format #~ msgid "" #~ "\"\"\n" @@ -9986,10 +10368,6 @@ msgstr "Venäjä / русский язык" #~ msgid "Result (/10)" #~ msgstr "Tulos (/10)" -#, python-format -#~ msgid "The unlink method is not implemented on this object !" -#~ msgstr "Unlink-menetelmä ei ole käytössä tässä objektissa!" - #, python-format #~ msgid "" #~ "There is no income account defined ' \\n " @@ -10024,10 +10402,6 @@ msgstr "Venäjä / русский язык" #~ msgid "Feed back About Workflow of Module" #~ msgstr "Anna palautetta Moduulin toiminnasta" -#, python-format -#~ msgid "The read method is not implemented on this object !" -#~ msgstr "Lukumenetelmä ei ole käytössä tässä objektissa!" - #, python-format #~ msgid "Product Quantity" #~ msgstr "Tuotemäärä" @@ -10051,10 +10425,6 @@ msgstr "Venäjä / русский язык" #~ "\n" #~ "(c) 2003-Tähän päivään, Fabien Pinckaers - Tiny sprl\"" -#, python-format -#~ msgid "Key/value '%s' not found in selection field '%s'" -#~ msgstr "Avainta/arvoa '%s' ei löytynyt valintakentästä '%s'" - #, python-format #~ msgid "" #~ "You must assign a partner to this lead before converting to opportunity.\n" @@ -10136,14 +10506,6 @@ msgstr "Venäjä / русский язык" #~ msgid "You try to bypass an access rule (Document type: %s)." #~ msgstr "Yritit ohittaa käyttöoikeusrajoituksen (Dokumentin tyyppi: %s)." -#, python-format -#~ msgid "" -#~ "The sum of the data (2nd field) is null.\n" -#~ "We can't draw a pie chart !" -#~ msgstr "" -#~ "Datan summa (2. kenttä) on nolla.\n" -#~ "Piirakkadiagrammia ei voida piirtää!" - #, python-format #~ msgid "September" #~ msgstr "Syyskuu" @@ -10251,6 +10613,10 @@ msgstr "Venäjä / русский язык" #~ msgid "You can not modify/delete a journal with entries for this period !" #~ msgstr "Et voi muokata/poistaa lokikirjaa jossa merkintöjä tälle kaudelle" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Dokumenttia ei voida lukea! (%s)" + #, python-format #~ msgid "UnknownError" #~ msgstr "Tuntematon virhe" @@ -10275,10 +10641,6 @@ msgstr "Venäjä / русский язык" #~ msgid "No production sequence defined" #~ msgstr "Ei määritettyä tuotantosekvenssiä" -#, python-format -#~ msgid "Not implemented search_memory method !" -#~ msgstr "Search_memory-menetelmä ei käytössä!" - #, python-format #~ msgid "Unable to create your control center user" #~ msgstr "Ei voinut luoda käyttäjää ohjauskeskukselle" @@ -10289,10 +10651,6 @@ msgstr "Venäjä / русский язык" #~ msgid "Year without century: %(y)s" #~ msgstr "Vuosi ilman vuosisataa: %(y)-luku" -#, python-format -#~ msgid "Not implemented set_memory method !" -#~ msgstr "Set_memory-menetelmä ei ole käytössä!" - #, python-format #~ msgid "A sign-out must be right after a sign-in !" #~ msgstr "Uloskirjautumisen täytyy olla heti sisäänkirjautumisen jälkeen !" @@ -10320,6 +10678,10 @@ msgstr "Venäjä / русский язык" #~ msgid "Enter at least one field !" #~ msgstr "Syötä vähintään yksi kenttä !" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Et voi kirjoittaa tähän asiakirjaan! (%s)" + #, python-format #~ msgid "The account is not defined to be reconciled !" #~ msgstr "Tiliä ei ole määritetty soviteltavaksi !" @@ -10336,10 +10698,6 @@ msgstr "Venäjä / русский язык" #~ msgid "CHECK: " #~ msgstr "TARKISTA: " -#, python-format -#~ msgid "The perm_read method is not implemented on this object !" -#~ msgstr "Perm_read-menetelmä ei ole käytössä tässä objektissa!" - #, python-format #~ msgid "Message !" #~ msgstr "Viesti !" @@ -10379,6 +10737,10 @@ msgstr "Venäjä / русский язык" #~ "Ennakkoa ei voi tehdä myyntitilauksesta johon on määritelty \"Automaattinen " #~ "lasku toimituksen jälkeen\"." +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Et voi poistaa tätä asiakirjaa (%s)" + #, python-format #~ msgid "Missing info: Test Instance" #~ msgstr "Puuttuva tieto: Testaa instanssi" @@ -10453,10 +10815,6 @@ msgstr "Venäjä / русский язык" #~ msgid "Open" #~ msgstr "Avaa" -#, python-format -#~ msgid "Please check that all your lines have %d columns." -#~ msgstr "Tarkista että kaikissa riveissä on %d saraketta." - #, python-format #~ msgid "No partner !" #~ msgstr "Ei kumppania!" @@ -10465,10 +10823,6 @@ msgstr "Venäjä / русский язык" #~ msgid "Production Order Cannot start in [%s] state" #~ msgstr "Tuotantotilaus ei voi alkaa [%s] -tilassa" -#, python-format -#~ msgid "Recursivity Detected." -#~ msgstr "Rekursiivisyys havaittu." - #~ msgid "Ukrainian / украї́нська мо́ва" #~ msgstr "Ukraina / украї́нська мо́ва" @@ -10550,10 +10904,6 @@ msgstr "Venäjä / русский язык" #~ msgid "Subscribed" #~ msgstr "Tilattu" -#, python-format -#~ msgid "The create method is not implemented on this object !" -#~ msgstr "Luomismenetelmä ei ole käytössä tässä objektissa!" - #, python-format #~ msgid "Invalid operation" #~ msgstr "Virheellinen toiminto" @@ -10566,14 +10916,6 @@ msgstr "Venäjä / русский язык" #~ "Asennettava moduuli on riippuvainen moduulista %s,\n" #~ "mutta tämä moduuli ei ole saatavilla järjestelmässä." -#, python-format -#~ msgid "" -#~ "Language with code \"%s\" is not defined in your system !\n" -#~ "Define it through the Administration menu." -#~ msgstr "" -#~ "Kieltä, jonka koodi on \"%s\" ei ole määritetty järjestelmääsi !\n" -#~ "Määritä se järjestelmänhallinta valikosta." - #, python-format #~ msgid "" #~ "Couldn't send mail because the contact for this task (%s) has no email " @@ -10612,10 +10954,6 @@ msgstr "Venäjä / русский язык" #~ msgstr "" #~ "Ei ole määritettyä menotiliä ' \\n ' tälle tuotteelle: \"%s\" (id:%d)" -#, python-format -#~ msgid "Error occurred while validating the field(s) %s: %s" -#~ msgstr "Virhe tarkistettaessa kenttiä %s: %s" - #, python-format #~ msgid "Cannot delete an order line which is %s !" #~ msgstr "Ei voi poistaa tilausriviä joka on %s !" @@ -10709,10 +11047,6 @@ msgstr "Venäjä / русский язык" #~ "Kaikki sähköpostit on onnistuneesti lähetetty kumppaneille:.\n" #~ "\n" -#, python-format -#~ msgid "The write method is not implemented on this object !" -#~ msgstr "Kirjoitusmenetelmä ei ole käytössä tässä objektissa!" - #, python-format #~ msgid "Unable to change tax !" #~ msgstr "Veroa ei voida muuttaa!" @@ -10829,11 +11163,6 @@ msgstr "Venäjä / русский язык" #~ "Laskulla ei ole määritelty pankkia:\n" #~ "%s" -#, python-format -#~ msgid "Wrong ID for the browse record, got %r, expected an integer." -#~ msgstr "" -#~ "Väärä tunnus selaustietueeseen: saatiin %r, odotettiin kokonaislukua." - #, python-format #~ msgid "There is no expense account defined for this product: \"%s\" (id:%d)" #~ msgstr "Tälle tuotteelle ei ole määritetty menotiliä \"%s\" (id:%d)" @@ -10933,10 +11262,6 @@ msgstr "Venäjä / русский язык" #~ "Tarkista laskun loppusumma !\n" #~ "Loppusumma ei täsmää laskennalliseen loppusummaan." -#, python-format -#~ msgid "Not Implemented" -#~ msgstr "Ei toteutettu" - #, python-format #~ msgid "Invoices" #~ msgstr "Laskutus" @@ -11053,10 +11378,6 @@ msgstr "Venäjä / русский язык" #~ msgid "Please select at least two inventories." #~ msgstr "Valitse vähintään kaksi varastoa." -#, python-format -#~ msgid "The exists method is not implemented on this object !" -#~ msgstr "Käytettävää metodia ei ole toteutettu tälle objektille !" - #, python-format #~ msgid "The name_search method is not implemented on this object !" #~ msgstr "Menetelmä \"name_search\" ei ole käytössä tässä objektissa!" @@ -11149,10 +11470,6 @@ msgstr "Venäjä / русский язык" #~ msgid "This version of the module is already exist on the server" #~ msgstr "Tämä versio moduuleista on jo olemassa palvelimella" -#, python-format -#~ msgid "Object %s does not exists" -#~ msgstr "Objektia %s ei ole olemassa" - #~ msgid "Default Properties" #~ msgstr "Oletus ominaisuudet" @@ -11200,10 +11517,6 @@ msgstr "Venäjä / русский язык" #~ msgid "You could not publish a module that is not installed!" #~ msgstr "Et voi julkaista moduulia, jota ei ole asennettu" -#, python-format -#~ msgid "UserError" -#~ msgstr "UserError" - #, python-format #~ msgid "You can not use an inactive account!" #~ msgstr "Et voi käyttää käytöstä poistettua tiliä!" @@ -11214,10 +11527,6 @@ msgstr "Venäjä / русский язык" #~ "Sinun täytyy ensiksi perua kaikki pakkaukset jotka ovat liitetty tähän " #~ "myyntitilaukseen." -#, python-format -#~ msgid "The copy method is not implemented on this object !" -#~ msgstr "Menetelmä \"copy\" ei ole käytössä tässä objektissa!" - #, python-format #~ msgid "Integrity Error !" #~ msgstr "Eheysvirhe!" @@ -11261,10 +11570,6 @@ msgstr "Venäjä / русский язык" #~ msgid "You cannot Pause the Operation other then Start/Resume state !" #~ msgstr "Et voi keskeyttää toimintoa muutoin kuin Start/Resume -tilasta !" -#, python-format -#~ msgid "Not implemented get_memory method !" -#~ msgstr "Menetelmä \"get_memory\" ei käytössä!" - #, python-format #~ msgid "Please specify server option --smtp-from !" #~ msgstr "Määritä palvelinoptio \"--smtp-from\"!" @@ -11317,10 +11622,6 @@ msgstr "Venäjä / русский язык" #~ msgid "Number too large '%d', can not translate it" #~ msgstr "Numero on liian suuri \"%d\", sitä ei voida kääntää" -#, python-format -#~ msgid "This method does not exist anymore" -#~ msgstr "Tätä menetelmää ei ole enää olemassa" - #, python-format #~ msgid "" #~ "This test checks where object has workflow or not on it if there is a state " @@ -11421,10 +11722,6 @@ msgstr "Venäjä / русский язык" #~ msgstr "" #~ "Sinun täytyy ensin peruuttaa kaikki myyntitilaukseen liittyvät laskut" -#, python-format -#~ msgid "ValidateError" -#~ msgstr "ValidateError" - #, python-format #~ msgid "This error occurs on database %s" #~ msgstr "Virhe ilmenee tietokannassa %s" @@ -11550,22 +11847,10 @@ msgstr "Venäjä / русский язык" #~ msgid "Could not cancel this purchase order !" #~ msgstr "Ei voitu perua tätä hankintatilausta" -#, python-format -#~ msgid "Database ID doesn't exist: %s : %s" -#~ msgstr "Tietokanta ID:tä ei ole: %s : %s" - #, python-format #~ msgid "May" #~ msgstr "Toukokuu" -#, python-format -#~ msgid "key '%s' not found in selection field '%s'" -#~ msgstr "avainta '%s' ei löytynyt valintakentästä '%s'" - -#, python-format -#~ msgid "The value \"%s\" for the field \"%s\" is not in the selection" -#~ msgstr "Arvo \"%s\" kentälle \"%s\" ei ole valinnassa" - #, python-format #~ msgid "" #~ "These is/are model(s) (%s) in selection which is/are not related to any " @@ -11683,10 +11968,6 @@ msgstr "Venäjä / русский язык" #~ "saadaksesi lisätietoa.\n" #~ " \"\"" -#, python-format -#~ msgid "undefined get method !" -#~ msgstr "Määrittelemätön \"get\" menetelmä!" - #, python-format #~ msgid "You can not validate a non-balanced entry !" #~ msgstr "Et voi hyväksyä merkintää joka ei ole tasan !" @@ -11739,11 +12020,6 @@ msgstr "Venäjä / русский язык" #~ msgid "Entries: " #~ msgstr "Merkinnät: " -#, python-format -#~ msgid "" -#~ "Unable to delete this document because it is used as a default property" -#~ msgstr "Ei voi poistaa tätä dokumenttia koska sitä käytetään oletuksena" - #, python-format #~ msgid "Purchase Journal" #~ msgstr "Ostoloki" @@ -12031,10 +12307,6 @@ msgstr "Venäjä / русский язык" #~ msgid "Vietnam / Cộng hòa xã hội chủ nghĩa Việt Nam" #~ msgstr "Vietnam / Vietnam" -#, python-format -#~ msgid "The search method is not implemented on this object !" -#~ msgstr "Hakumenetelmä ei ole käytössä tässä objektissa!" - #, python-format #~ msgid "The Sign-in date must be in the past" #~ msgstr "Sisäänkirjautumis päivämäärän täytyy olla menneisyydessä" diff --git a/bin/addons/base/i18n/fr.po b/bin/addons/base/i18n/fr.po index 09c829bb96a..d83406bc6e8 100644 --- a/bin/addons/base/i18n/fr.po +++ b/bin/addons/base/i18n/fr.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-24 07:56+0000\n" -"Last-Translator: Quentin THEURET \n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" +"PO-Revision-Date: 2011-01-01 07:04+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-25 04:49+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 04:59+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,16 @@ msgstr "Autre configuration" msgid "DateTime" msgstr "Horodatage" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" +"Le deuxième argument du champ many2many %s doit être une table SQL ! Vous " +"utilisez %s, qui n'est pas ule nom d'une table SQL valide." + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +62,6 @@ msgstr "Méta-données" msgid "View Architecture" msgstr "Architecture de la vue" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Vous ne pouvez pas créer ce type de document! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +112,16 @@ msgstr "Afficher les astuces" msgid "Created Views" msgstr "Vues créées" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" +"Vous ne pouvez pas écrire dans ce document (%s) ! Êtes-vous sûr que votre " +"utilisateur fait partie d'un de ces groupes : %s." + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,11 +138,10 @@ msgid "South Korea" msgstr "Corée du Sud" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "Transitions" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "Erreur de contrainte" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -140,13 +153,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Souaziland" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "créé." + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "Fournisseurs de bois" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -178,7 +198,7 @@ msgid "Search Partner" msgstr "Rechercher un partenaire" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" @@ -186,7 +206,7 @@ msgstr "" "utilisateurs" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "Nouveau" @@ -217,7 +237,7 @@ msgid "Contact Name" msgstr "Nom du contact" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -241,6 +261,12 @@ msgstr "Actif" msgid "Wizard Name" msgstr "Nom de l'assistant" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "group_by invalide" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -273,7 +299,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "Widget" @@ -324,7 +349,7 @@ msgid "Netherlands Antilles" msgstr "Antilles Néerlandaises" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -349,11 +374,6 @@ msgstr "Grec / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "Bosniaque / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "Icones de la version web" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -363,6 +383,12 @@ msgstr "" "Si vous cochez ceci, la seconde fois que l'utilisateur imprime avec la même " "pièce jointe, cela retourne la version précédente du rapport." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "La méthode \"read\" n'est pas implémentée dans cet objet !" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -389,6 +415,12 @@ msgstr "Colombie" msgid "Schedule Upgrade" msgstr "Planifier la mise à jour" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "Clé/Valeur '%s' non trouvé dans le champ sélection '%s'" + #. module: base #: help:res.country,code:0 msgid "" @@ -434,7 +466,7 @@ msgid "Miscellaneous Suppliers" msgstr "Fournisseurs divers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Les champs personnalisés doivent avoir un nom commençant par 'x_' !" @@ -695,6 +727,12 @@ msgstr "" "Mettre la langue de l'utilisateur dans les interfaces, lorsque les " "traductions sont disponibles" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "La méthode \"unlink\" n'est pas implémentée dans cet objet !" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -759,6 +797,16 @@ msgstr "%B - Nom complet du mois." msgid "Type" msgstr "Type" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" +"La langue ayant le code \"%s\" n'est pas définie dans votre système !\n" +"Définissez-la à partir du menu Administration." + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -785,6 +833,19 @@ msgstr "XML non valide pour l'architecture de la vue" msgid "Cayman Islands" msgstr "Îles Caïmans" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "Transitions" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "Enregistrement #%d de %s non trouvé, vous ne pouvez pas le copier !" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -896,6 +957,20 @@ msgstr "Haïti" msgid "Search" msgstr "Rechercher" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" +"L'opération n'a pas pu être terminée, probablement à la suite d'une :\n" +"- suppression : vous avez essayer de supprimer un enregistrement auquel " +"d'autres enregistrements font référence\n" +"- création/modification : un champ requis n'a pas été correctement rempli" + #. module: base #: view:ir.rule:0 msgid "" @@ -951,13 +1026,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "Aucune langue n'a le code \"%s\"" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -996,6 +1071,12 @@ msgstr "" "système OpenERP. Après que le contrat ait été enregistré, vous pourrez " "envoyer des rapports d'erreur directement à OpenERP." +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "La méthode \"search\" n'est pas implémentée dans cet objet !" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1045,7 +1126,7 @@ msgid "On Create" msgstr "Lors de la création" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1166,12 +1247,6 @@ msgstr "ID lié" msgid "Day: %(day)s" msgstr "Jour: %(day)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Vous ne pouvez pas lire ce document ! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1220,8 +1295,8 @@ msgstr "" "object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (copie)" @@ -1241,7 +1316,7 @@ msgstr "Partenaires" #. module: base #: field:res.partner.category,parent_left:0 msgid "Left parent" -msgstr "" +msgstr "Parenté de gauche" #. module: base #: model:ir.actions.act_window,name:base.res_widget_act_window @@ -1301,7 +1376,7 @@ msgid "Formula" msgstr "Formule" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "Impossible de supprimer l'utilisateur root" @@ -1312,7 +1387,8 @@ msgid "Malawi" msgstr "Malawi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "%s (copie)" @@ -1364,7 +1440,6 @@ msgstr "Arbre" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1394,6 +1469,12 @@ msgstr "" "Lors de l'utilisation du format CSV, assurez-vous que la première ligne de " "votre fichier respecte une des formes suivantes :" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "Méthode search_memory non implémentée !" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1447,7 +1528,7 @@ msgid "Bahamas" msgstr "Bahamas" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1470,6 +1551,12 @@ msgstr "Irlande" msgid "Number of modules updated" msgstr "Nombre de modules mis à jour" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "Méthode 'set_memory' pas implémentée !" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1556,6 +1643,13 @@ msgstr "" "Liste des types de vues autorisées, séparées par des virgules : 'form', " "'tree', 'calendar', etc. (Par défault : tree,form)" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" +"Un document a été modifié depuis la dernière fois que vous l'avez vu (%s:%d)" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1628,7 +1722,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1719,12 +1813,6 @@ msgstr "Adresse électronique" msgid "French (BE) / Français (BE)" msgstr "French (BE) / Français (BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Vous ne pouvez pas écrire dans ce document ! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1797,6 +1885,12 @@ msgstr "" "Nom de l'objet dont la fonction sera appelée lorsque le planificateur " "s'exécutera. Ex : 'res.partner'" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "La méthode perm_read n'est pas implémentée sur cet objet !" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1807,13 +1901,19 @@ msgstr "%y - Année sans le siècle (00 à 99)." msgid "Slovenia" msgstr "Slovénie" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "Architecture de l'objet invalide" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "Messages" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "Erreur!" @@ -1843,6 +1943,16 @@ msgstr "Date de fin" msgid "New Zealand" msgstr "Nouvelle-Zélande" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" +"Un des enregistrements que vous essayez de modifier a déjà été supprimé " +"(Type de document : %s)." + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1895,19 +2005,13 @@ msgstr "Erreur ! Vous ne pouvez pas créer de sociétés récursives" msgid "Valid" msgstr "Valide" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Vous ne pouvez pas supprimer ce document ! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "Impossible de mettre à jour le module '%s'. Il n'est pas installé." @@ -2018,6 +2122,18 @@ msgstr "Signal (subflow.*)" msgid "HR sector" msgstr "Secteur RH" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" +"\"order\" spécifié non valide, une \"ordre\" de spécification est une liste " +"de nom de champs séparé par des virgules (optionnel suivi par le sens " +"croissant/décroissant)" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -2074,6 +2190,11 @@ msgstr "Dépendances" msgid "Main Company" msgstr "Société mère" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "Fichier de l'icone web (au survol)" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2164,9 +2285,10 @@ msgid "Sir" msgstr "Monsieur" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" -msgstr "Sélectionner un module à importer (fichier .zip):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" +msgstr "Il n'y a pas de vue de type '%s' définie pour la structure!" #. module: base #: field:ir.default,ref_id:0 @@ -2264,7 +2386,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "Veuillez spécifier une action à lancer !" @@ -2288,6 +2410,12 @@ msgstr "De droite à gauche" msgid "Filters" msgstr "Filtres" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "Merci de vérifier que toutes vos lignes ont %d colonnes" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2310,7 +2438,13 @@ msgstr "" "ressources" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "Récursivité détectée" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "Erreur de récursion dans les dépendances des modules !" @@ -2340,6 +2474,11 @@ msgstr "" "Numéro de la Taxe sur la Valeur Ajoutée. Cochez cette case si le partenaire " "est assujetti à la TVA. Utilisé dans la déclaration légale de la TVA." +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "maintenance.contract" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2392,11 +2531,6 @@ msgstr "Vérification EAN" msgid "VAT" msgstr "TVA" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "Icône web au survol de la souris" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2433,7 +2567,7 @@ msgid "M." msgstr "M." #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2442,13 +2576,23 @@ msgstr "" "Impossible de créer le fichier du module:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" +"Opération interdite par les règles d'accès, ou effectué sur un document déjà " +"supprimé (Opération : lecture, Type de document: %s)." + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Nauru" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "L'ID du certificat pour un module doit être unique !" @@ -2527,6 +2671,12 @@ msgstr "Envoyer un SMS" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "Architecture invalide !" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2586,7 +2736,7 @@ msgid "Ecuador" msgstr "Équateur" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2658,7 +2808,7 @@ msgid "Action to Trigger" msgstr "Action à déclencher" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2862,18 +3012,13 @@ msgstr "Auteur" msgid "FYROM" msgstr "FYROM" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Recherche avancée" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Représentation appropriées d'une date et d'une heure" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2922,7 +3067,7 @@ msgid "Rules" msgstr "Règles" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2994,7 +3139,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "Vous ne pouvez pas supprimer le model '%s' !" @@ -3024,6 +3169,12 @@ msgstr "Abkhazian / аҧсуа" msgid "System Configuration Done" msgstr "Configuration du système terminée" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "Une erreur est apparue lors de la validation du/des champ(s) %s: %s" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -3055,7 +3206,7 @@ msgid "Benin" msgstr "Bénin" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "Ce contrat est déjà enregistré dans le système." @@ -3085,6 +3236,16 @@ msgstr "En-tête RML" msgid "API ID" msgstr "API ID" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" +"Vous ne pouvez pas créer ce document (%s) ! Assurez-vous que votre " +"utilisateur fait partie de l'un de ces groupes : %s." + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3316,6 +3477,12 @@ msgid "" "Would your payment have been carried out after this mail was sent, please " "consider the present one as void." msgstr "" +"Veuiller noter que les paiements ci dessous sont maintenant dus. Si votre " +"paiement a été envoyé, nous recevrons rapidement le détail de votre " +"paiements. Si votre paiement est décallé, merci de nous contacter pour en " +"discuter. \n" +"Si votre paiement a déjà réglé après que ce courriel soit parti, veuillez ne " +"pas tenir compte de cet envoi." #. module: base #: model:res.country,name:base.mx @@ -3342,6 +3509,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "Nicaragua" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "La méthode 'write' n'est pas implémentée dans cet objet !" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3409,7 +3582,7 @@ msgstr "Kazakhstan" #. module: base #: view:res.lang:0 msgid "%w - Weekday number [0(Sunday),6]." -msgstr "" +msgstr "%w - Numéro de semaine [0(Dimanche),6]." #. module: base #: field:ir.actions.report.xml,name:0 @@ -3520,7 +3693,7 @@ msgstr "Anglais (CA)" #. module: base #: model:ir.model,name:base.model_publisher_warranty_contract msgid "publisher_warranty.contract" -msgstr "" +msgstr "publisher_warranty.contract" #. module: base #: model:res.country,name:base.et @@ -3627,7 +3800,8 @@ msgid "Bank Type" msgstr "Type de banque" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "Le nom du groupe ne peut pas commencer par \"-\"" @@ -3649,7 +3823,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "Gujarati / ગુજરાતી" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3660,7 +3834,7 @@ msgstr "" #. module: base #: view:publisher_warranty.contract.wizard:0 msgid "Please enter the serial key provided in your contract document:" -msgstr "" +msgstr "Veuillez saisir le numéro de série fournit dans votre contrat :" #. module: base #: view:workflow.activity:0 @@ -3669,7 +3843,7 @@ msgid "Flow Start" msgstr "Flux de départ" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "le module ne peut être charger! (astuce: vérifier addons-path)" @@ -3701,7 +3875,9 @@ msgid "Guadeloupe (French)" msgstr "Gouadeloupe (Française)" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "Erreur Utilisateur" @@ -3772,13 +3948,18 @@ msgstr "Carnet d'adresses" #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." -msgstr "" +msgstr "%S - Secondes [00 à 61]." #. module: base #: model:res.country,name:base.cv msgid "Cape Verde" msgstr "Cap-Vert" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "Sélectionner un module à importer (fichier .zip):" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3792,6 +3973,14 @@ msgstr "Évènements" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" +"Mauvais ID pour le parcours de l'enregistrement : %r reçu alors qu'on attend " +"un entier." + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3825,9 +4014,10 @@ msgid "French / Français" msgstr "Français / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Menus créés" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "La méthode 'create' n'est pas implémentée dans cet objet !" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -4078,6 +4268,16 @@ msgstr "Conseil" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" +"Vous ne pouvez pas effectuer cette opération. Un nouvel enregistrement n'est " +"pas autorisé sur cet objet puisque cet objet est réservé au reporting" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -4119,9 +4319,9 @@ msgid "Project" msgstr "Projet" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" -msgstr "" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" +msgstr "Image de l'icone web (au survol)" #. module: base #: view:base.module.import:0 @@ -4136,7 +4336,7 @@ msgstr "Annulée" #. module: base #: view:res.config.users:0 msgid "Create User" -msgstr "" +msgstr "Créer un utilisateur" #. module: base #: view:partner.clear.ids:0 @@ -4147,15 +4347,12 @@ msgstr "Voulez-vous effacer les \"Ids\" ? " #: field:publisher_warranty.contract,name:0 #: field:publisher_warranty.contract.wizard,name:0 msgid "Serial Key" -msgstr "" +msgstr "Numéro de série" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Client" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "Audit" #. module: base #: model:res.country,name:base.lc @@ -4222,7 +4419,7 @@ msgstr "Correspondance de champ" #. module: base #: view:publisher_warranty.contract:0 msgid "Refresh Validation Dates" -msgstr "" +msgstr "Actualiser les dates de validation" #. module: base #: view:ir.model:0 @@ -4263,6 +4460,18 @@ msgstr "Vietnam" msgid "Signature" msgstr "Signature" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "Non implémenté" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4284,7 +4493,7 @@ msgid "False means for every user" msgstr "Faux signiffie : pour tous les utilisateurs" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "Le nom d'un module doit être unique !" @@ -4325,9 +4534,13 @@ msgid "Contacts" msgstr "Contacts" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Îles Féroé" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" +"Impossible de supprimer ce document, parce qu'il est utilisé dans une " +"propriété par défaut" #. module: base #: view:res.widget.wizard:0 @@ -4354,7 +4567,13 @@ msgstr "République tchèque" #. module: base #: view:res.widget.wizard:0 msgid "Widget Wizard" -msgstr "" +msgstr "Composant Assistant" + +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "Champs insufisant pour la visualisation du calendrier!" #. module: base #: selection:ir.property,type:0 @@ -4402,15 +4621,9 @@ msgid "Mongolia" msgstr "Mongolie" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Erreur" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Menus créés" #. module: base #: selection:ir.ui.view,type:0 @@ -4466,7 +4679,7 @@ msgstr "Cette fenêtre" #. module: base #: view:publisher_warranty.contract:0 msgid "Publisher Warranty Contracts" -msgstr "" +msgstr "Contrats de garantie de l'éditeur" #. module: base #: help:res.log,name:0 @@ -4526,11 +4739,6 @@ msgstr "Saint Vincent & Grenadines" msgid "Password" msgstr "Mot de passe" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "Fichier d'icône" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4576,6 +4784,9 @@ msgid "" "channels that will be maintained at the creation of a document in the " "system. Some examples of channels can be: Website, Phone Call, Reseller, etc." msgstr "" +"Tracer d'où viennent vos opportunités en créant des canaux dédiés et " +"renseignés lors de la création d'un document dans le système. Exemples de " +"canaux : Site Web, Contact téléphonique, Revendeur, etc." #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field @@ -4631,7 +4842,7 @@ msgid "Change My Preferences" msgstr "Changer mes préférences" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Modèle non valide dans la définition de l'action." @@ -4699,7 +4910,7 @@ msgid "Raphaël Valyi's tweets" msgstr "Tweets de Raphaël Valyi" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4782,7 +4993,13 @@ msgid "Client Actions" msgstr "Les Actions du Client" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "La methode exists n'est pas implémenté sur cet objet" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4857,7 +5074,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Module %s: Certificat de qualité non valide" @@ -4909,6 +5126,11 @@ msgstr "Envoi de SMS" msgid "Accepted Users" msgstr "Utilisateurs acceptés" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "Image de l'icone web" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4941,6 +5163,15 @@ msgid "" "installed the CRM, with the history tab, you can track all the interactions " "with a partner such as opportunities, emails, or sales orders issued." msgstr "" +"Le module Clients (aussi appelés Partenaires dans les autres parties du " +"système) vous aide à gérer votre carnet d'adresses d'entreprises si vous " +"avez des prospects, des clients et/ou des fournisseurs. Le formulaire de " +"saisie d'un partenaire vous permet de tracer et d'enregistrer toutes les " +"informations nécessaires pour intéragir avec les partenaires depuis " +"l'adresse de l'entreprise jusqu'aux contacts ainsi que les listes de prix " +"associées. Vous pouvez encore en avoir plus si vous installez la CRM, avec " +"l'onglet 'Historique', vous pouvez tracer toutes les intéractions avec un " +"partenaire comme les opportunités, les courriels, ou les commandes de vente." #. module: base #: model:res.country,name:base.ph @@ -5003,6 +5234,7 @@ msgstr "Dominique" msgid "" "Your publisher warranty contract is already subscribed in the system !" msgstr "" +"Votre contrat de garantie éditeur est déjà référencé dans le système!" #. module: base #: help:ir.cron,nextcall:0 @@ -5025,6 +5257,16 @@ msgstr "Tweets d'Oliver Dony" msgid "Nepal" msgstr "Népal" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" +"Valeur non valide pour le champ référence \"%s\" (la dernière partie doit " +"être un entier différent de 0): \"%s\"" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -5057,7 +5299,7 @@ msgid "Update Modules List" msgstr "Mettre à jour la liste des modules" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" @@ -5066,7 +5308,7 @@ msgstr "" "externe non présente: %s" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5074,6 +5316,11 @@ msgid "" "sure to save and close all forms before switching to a different company. " "(You can click on Cancel in the User Preferences now)" msgstr "" +"Gardez à l'esprit que les documents actuellement affichés peuvent ne plus " +"être pertinents après le changement vers une autre entreprise. Si vous avez " +"des changements non enregistrés, veuillez vérifier que vous avez sauvegardé " +"et enregistré tous les formulaires avant de changer d'entreprise. (Vous " +"pouvez maintenant cliquer sur Annuler dans les Préférences Utilisateur)" #. module: base #: view:ir.actions.configuration.wizard:0 @@ -5085,6 +5332,12 @@ msgstr "Continuer" msgid "Thai / ภาษาไทย" msgstr "Thai / ภาษาไทย" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "L'objet %s n'existe pas" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5215,6 +5468,13 @@ msgstr "Le nom complet du pays." msgid "Iteration" msgstr "Itération" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "Erreur utilisateur" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5255,7 +5515,12 @@ msgid "Solomon Islands" msgstr "Îles Salomon" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "Erreur d'accès" @@ -5266,7 +5531,7 @@ msgid "Waiting" msgstr "En attente" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "Impossible de charger le module base" @@ -5276,10 +5541,16 @@ msgstr "Impossible de charger le module base" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "La méthode 'copy' n'est pas implémentée dans cet objet !" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" -msgstr "" +msgstr "Date de création" #. module: base #: view:ir.translation:0 @@ -5398,7 +5669,7 @@ msgid "ir.actions.todo" msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "Impossible de trouver le précédent ir.actions.todo" @@ -5464,7 +5735,7 @@ msgstr "Sociétés" #. module: base #: view:res.lang:0 msgid "%H - Hour (24-hour clock) [00,23]." -msgstr "" +msgstr "%H - Heure (Affichage 24h) [00,23]." #. module: base #: model:ir.model,name:base.model_res_widget @@ -5472,19 +5743,25 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "Le modèle %s n'existe pas!" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" "Vous ne pouvez pas supprimer une langue qui est utilisée par un des " "utilisateurs !" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "Méthode get_memory n'est pas implémenté" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5493,7 +5770,7 @@ msgid "Python Code" msgstr "Code Python" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "Impossible de créer le fichier du module: %s !" @@ -5572,12 +5849,12 @@ msgstr "Actions de la fênetre" #. module: base #: view:res.lang:0 msgid "%I - Hour (12-hour clock) [01,12]." -msgstr "" +msgstr "%I - Heure (Affichage 12h) [01,12]." #. module: base #: selection:publisher_warranty.contract.wizard,state:0 msgid "Finished" -msgstr "" +msgstr "Terminé" #. module: base #: model:res.country,name:base.de @@ -5614,10 +5891,10 @@ msgstr "" "autres vues" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." -msgstr "" +msgstr "Cliquer sur 'Continuer' pour configurer le prochain module..." #. module: base #: field:ir.actions.server,record_id:0 @@ -5657,7 +5934,7 @@ msgstr "" "création)" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "Spécifier, SVP, l'option du serveur --email-from !" @@ -5875,7 +6152,7 @@ msgid "Afghanistan, Islamic State of" msgstr "République Islamique d'Afghanistan" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Erreur !" @@ -5896,6 +6173,12 @@ msgstr "Unité de l'intervale" msgid "Kind" msgstr "Genre" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "La méthode n'existe plus" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -6087,7 +6370,7 @@ msgstr "Accès en écriture" #. module: base #: view:res.lang:0 msgid "%m - Month number [01,12]." -msgstr "" +msgstr "%m - Numéro de mois [01,12]." #. module: base #: field:res.bank,city:0 @@ -6164,6 +6447,16 @@ msgstr "" "Pour parcourir les traductions officielles, vous pouvez commencer avec ces " "liens :" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" +"Vous ne pouvez pas lire ce document (%s) ! Assurez-vous que votre " +"utilisateur fait partie de l'un de ces groupes : %s." + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -6173,11 +6466,6 @@ msgstr "" msgid "Address" msgstr "Adresse" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6256,7 +6544,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "Saint Christophe et Niévès" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6345,7 +6633,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6370,11 +6658,19 @@ msgid "Child IDs" msgstr "ID enfants" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problème dans la configuration `Record Id`dans le Server Action!" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "Erreur de validation" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6424,6 +6720,16 @@ msgstr "Courriel" msgid "Home Action" msgstr "Action page d'accueil" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" +"La somme des données (2ème champ) est nulle.\n" +"Impossible de dessiner un graphique en camembert !" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6452,11 +6758,10 @@ msgid "Stop All" msgstr "Tout arrêter" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" -msgstr "" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" +msgstr "La méthode read_group n'est pas implémenté sur cet objet !" #. module: base #: view:ir.model.data:0 @@ -6508,10 +6813,10 @@ msgid "Start update" msgstr "Démarrage de la mise à jour" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" -msgstr "" +msgstr "Erreur de validation du contrat" #. module: base #: field:res.country.state,name:0 @@ -6568,7 +6873,7 @@ msgid "HR Manager Dashboard" msgstr "Tableau de bord du directeur des ressources humaines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6604,6 +6909,11 @@ msgid "" "not connect to the system. You can assign them groups in order to give them " "specific access to the applications they need to use in the system." msgstr "" +"Créez et gérez les utilisateurs qui se connecteront au système. Les " +"utilisateurs peuvent être désactivés un certain temps pendant lequel ils ne " +"pourront/devront pas se connecter au système. Vous pouvez leur assigner un " +"groupe pour leur fournir des accès spécifiques aux applications qu'ils ont " +"besoin d'utiliser dans le système." #. module: base #: selection:res.request,priority:0 @@ -6622,7 +6932,7 @@ msgid "Module Update" msgstr "Mise à jour de module" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "Les modules suivants ne sont pas installés ou inconnus: %s" @@ -6705,7 +7015,14 @@ msgstr "" "des listings" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "Erreur d'intégrité" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "La taille du champ ne doit jamais être inférieure à 1 !" @@ -6718,7 +7035,7 @@ msgstr "Somalie" #. module: base #: selection:publisher_warranty.contract,state:0 msgid "Terminated" -msgstr "" +msgstr "Terminé" #. module: base #: model:res.partner.category,name:base.res_partner_category_13 @@ -6743,6 +7060,12 @@ msgstr "Vers" msgid "Arguments" msgstr "Arguments" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "ID de base de données n'existe pas: %s : %s" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6753,15 +7076,30 @@ msgstr "GPL Version 2" msgid "GPL Version 3" msgstr "GPL Version 3" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "La clé '%s' n'a pas été trouvé dans le champ sélection '%s'" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "EAN 13 Correcte" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" -msgstr "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "La valeur \"%s\" pour le champ \"%s\" n'est pas dans la sélection" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Client" #. module: base #: selection:base.language.install,lang:0 @@ -6853,7 +7191,7 @@ msgstr "Annuler l'installation" #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" -msgstr "" +msgstr "Parent de droite" #. module: base #: view:res.lang:0 @@ -6866,7 +7204,7 @@ msgid "Copy Object" msgstr "Copier l'objet" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6919,6 +7257,18 @@ msgstr "Réf. table" msgid "Object" msgstr "Objet" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" +"\n" +"\n" +"[objet ayant pour référence : %s - %s]" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6956,7 +7306,7 @@ msgid "User Ref." msgstr "Réf. utilisateur" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "Avertissement !" @@ -6975,7 +7325,7 @@ msgstr "Configuration" #. module: base #: model:ir.model,name:base.model_publisher_warranty_contract_wizard msgid "publisher_warranty.contract.wizard" -msgstr "" +msgstr "publisher_warranty.contract.wizard" #. module: base #: field:ir.actions.server,expression:0 @@ -7097,10 +7447,10 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" -msgstr "Critères de recherche non valide" +msgstr "Critères de recherche non valides" #. module: base #: view:ir.attachment:0 @@ -7155,7 +7505,7 @@ msgid "Action Type" msgstr "Type d'action" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7246,7 +7596,7 @@ msgstr "Désélectionnez le champ 'actif' pour cacher ce contact." #. module: base #: model:ir.model,name:base.model_res_widget_wizard msgid "Add a widget for User" -msgstr "" +msgstr "Ajoute un composant pour l'utilisateur" #. module: base #: model:res.country,name:base.dk @@ -7263,11 +7613,23 @@ msgstr "Code du pays" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "Attribut %s inconnu dans %s " + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "Méthode 'get' non définie !" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7445,6 +7807,11 @@ msgstr "Envoyer un courriel" msgid "Menu Action" msgstr "Action du menu" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Îles Féroé" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7475,7 +7842,7 @@ msgstr "Fournisseurs" #. module: base #: view:publisher_warranty.contract.wizard:0 msgid "Register" -msgstr "" +msgstr "S'enregistrer" #. module: base #: field:res.request,ref_doc2:0 @@ -7589,7 +7956,7 @@ msgid "China" msgstr "Chine" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7651,7 +8018,7 @@ msgstr "Bulgarie" #. module: base #: view:publisher_warranty.contract.wizard:0 msgid "Publisher warranty contract successfully registered!" -msgstr "" +msgstr "Le contrat de grarantie a été enregistrer avec succès" #. module: base #: model:res.country,name:base.ao @@ -7797,7 +8164,7 @@ msgid "Account No." msgstr "Compte n°." #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Langue de base 'en_US' ne peut pas être supprimée !" @@ -7825,6 +8192,11 @@ msgid "" "account, etc.). With the history tab, you can follow all moves transactions " "related to a customer, like sales order, claims." msgstr "" +"Le carnet d'adresses gère la liste des clients. Le formulaire pour les " +"clients vous permet d'enregistrer les détails à propos de ces derniers " +"(adresses, contacts, liste de prix, compte comptable, etc.). Avec l'onglet " +"'Historique', vous pouvez suivre les différentes transactions en rapport " +"avec ce client, comme les ordres d'achat ou les réclamations." #. module: base #: model:res.country,name:base.dj @@ -7841,6 +8213,16 @@ msgstr "Valeur de la traduction" msgid "Antigua and Barbuda" msgstr "Antigua et Barbuda" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" +"Opération non autorisé par une règle d'accès, ou réalisé sur un document " +"déjà effacé (Opération: %s, Type de document: %s)." + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7899,7 +8281,7 @@ msgid "Auto-Refresh" msgstr "Rafraîchissement automatique" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7910,6 +8292,11 @@ msgstr "" msgid "Diagram" msgstr "Diagramme" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis et Futuna" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7966,6 +8353,35 @@ msgstr "Code d'indentification bancaire" msgid "Turkmenistan" msgstr "Turkménistan" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Erreur" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -8095,7 +8511,7 @@ msgid "Internal Header/Footer" msgstr "En-tête / pied de page Interne" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -8136,6 +8552,16 @@ msgstr "République Dominicaine" msgid "Serbian (Cyrillic) / српски" msgstr "Serbe (Cyrilique) / српски" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" +"Spécification du group_by non valide: \"%s\".\n" +"Une spécification de group_by doit être une liste de champ valide." + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -8162,7 +8588,7 @@ msgid "Event Logs" msgstr "Journaux d'évènements" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "Configuration du système terminée" @@ -8209,11 +8635,18 @@ msgid "Low" msgstr "Faible" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Erreur ! Vous ne pouvez pas créer de menu récursif." +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "Enregister un contrat" + #. module: base #: view:ir.rule:0 msgid "" @@ -8224,10 +8657,10 @@ msgstr "" "l'étape 2 sont combinés avec un opérateur OU" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." -msgstr "" +msgstr "Veuillez vérifier votre nom de contrat de garantie et sa validité." #. module: base #: model:res.country,name:base.sv @@ -8282,7 +8715,7 @@ msgstr "Romanie / română" #. module: base #: view:res.log:0 msgid "System Logs" -msgstr "" +msgstr "Journaux système" #. module: base #: selection:workflow.activity,join_mode:0 @@ -8383,7 +8816,7 @@ msgid "View Auto-Load" msgstr "Auto-chargement de la vue" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Vous ne pouvez pas supprimer le champ '%s' !" @@ -8395,6 +8828,11 @@ msgstr "Vous ne pouvez pas supprimer le champ '%s' !" msgid "Resource" msgstr "Ressource" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "Fichier de l'icone web" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8403,10 +8841,10 @@ msgstr "Perse / فارس" #. module: base #: view:ir.actions.act_window:0 msgid "View Ordering" -msgstr "" +msgstr "Tri des vues" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "Dépendance non trouvé !" @@ -8420,6 +8858,16 @@ msgstr "" "Formats de fichier supportés: *.csv (Valeur séparé par des virgules) ou *.po " "(Objet portable GetText)" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" +"Vous ne pouvez pas supprimer ce document (%s) ! Veuillez vérifier que votre " +"utilisteur appartienne a l'un des ces groupes: %s." + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8445,7 +8893,7 @@ msgstr "République Slovaque" #. module: base #: model:ir.ui.menu,name:base.publisher_warranty msgid "Publisher Warranty" -msgstr "" +msgstr "Garantie éditeur" #. module: base #: model:res.country,name:base.aw @@ -8497,7 +8945,7 @@ msgstr "Couriel & Signature" #. module: base #: view:publisher_warranty.contract:0 msgid "Publisher Warranty Contract" -msgstr "" +msgstr "Contrat de garantie éditeur" #. module: base #: selection:base.language.install,lang:0 @@ -8537,6 +8985,11 @@ msgid "" "categories have a hierarchy structure: a partner belonging to a category " "also belong to his parent category." msgstr "" +"Gère les catégories de partenaires dans le but de ranger au mieux ces " +"dernières, de les suivre et d'en faire des statistiques. Un partenaire peut " +"avoir plusieurs catégories et les catégories ont une structure hiérarchique " +"entre elle : un partenaire appartenant à une catégorie appartient de fait à " +"sa catégorie parente." #. module: base #: model:res.country,name:base.az @@ -8544,7 +8997,7 @@ msgid "Azerbaijan" msgstr "Azerbaïdjan" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Avertissement" @@ -8571,9 +9024,9 @@ msgid "Czech / Čeština" msgstr "Tchèque / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis et Futuna" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Recherche avancée" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8627,6 +9080,10 @@ msgid "" "simplified interface, which has less features but is easier. You can always " "switch later from the user preferences." msgstr "" +"Si vous utilisez OpenERP pour la première fois, nous vous encourageons a " +"utiliser l'interface simplifiée, qui a moins de fonctionnalité mais qui est " +"plus facile. Vous pourrez basculer plus tard via les préférences de " +"l'utilisateur." #. module: base #: model:ir.model,name:base.model_res_country @@ -8812,7 +9269,7 @@ msgstr "" #. module: base #: view:res.lang:0 msgid "%j - Day of the year [001,366]." -msgstr "" +msgstr "%j - Jour dans l'année [001,366]." #. module: base #: field:ir.actions.server,mobile:0 @@ -8851,7 +9308,7 @@ msgstr "Seychelles" #. module: base #: model:res.widget,title:base.nhomar_twitter_widget msgid "Nhomar Hernandez's tweets" -msgstr "" +msgstr "Tweets de Nhomar Hernandez's" #. module: base #: model:ir.model,name:base.model_res_partner_bank @@ -8881,7 +9338,7 @@ msgid "Account Owner" msgstr "Titulaire du compte" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "Avertissement lors du changement de société" @@ -8889,7 +9346,7 @@ msgstr "Avertissement lors du changement de société" #. module: base #: model:ir.actions.act_window,name:base.action_res_widget_wizard msgid "Homepage Widgets Management" -msgstr "" +msgstr "Gestion des composants de la page d'accueil" #. module: base #: field:workflow,osv:0 @@ -8941,7 +9398,7 @@ msgid "Workflow Instances" msgstr "Instances du processus" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Partenaires " @@ -9991,6 +10448,10 @@ msgstr "Russie / русский язык" #~ msgid "Choose a language to install:" #~ msgstr "Choisir une langue à installer" +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Vous ne pouvez pas créer ce type de document! (%s)" + #, python-format #~ msgid "Password mismatch !" #~ msgstr "Le mot de passe ne correspond pas !" @@ -9998,14 +10459,6 @@ msgstr "Russie / русский язык" #~ msgid "Outgoing transitions" #~ msgstr "Transitions sortantes" -#, python-format -#~ msgid "The unlink method is not implemented on this object !" -#~ msgstr "La méthode \"unlink\" n'est pas implémentée dans cet objet !" - -#, python-format -#~ msgid "The read method is not implemented on this object !" -#~ msgstr "La méthode \"read\" n'est pas implémentée dans cet objet !" - #~ msgid "Bar Chart" #~ msgstr "Graphique en barres" @@ -10063,10 +10516,6 @@ msgstr "Russie / русский язык" #~ "Vous essayez d'installer un module qui dépend du module: %s\n" #~ "Mais ce module n'est pas disponible sur votre système." -#, python-format -#~ msgid "Error occurred while validating the field(s) %s: %s" -#~ msgstr "Une erreur est apparue lors de la validation du/des champ(s) %s: %s" - #~ msgid "Module Repository" #~ msgstr "Dépot de modules" @@ -10093,12 +10542,6 @@ msgstr "Russie / русский язык" #~ msgid "Roles Structure" #~ msgstr "Structure des rôles" -#, python-format -#~ msgid "Wrong ID for the browse record, got %r, expected an integer." -#~ msgstr "" -#~ "Mauvais ID pour le parcours de l'enregistrement : %r reçu alors qu'on attend " -#~ "un entier." - #~ msgid "Role Required" #~ msgstr "Rôle nécessaire" @@ -10128,10 +10571,6 @@ msgstr "Russie / русский язык" #~ msgid "Export a Translation File" #~ msgstr "Exporter un fichier de traduction" -#, python-format -#~ msgid "UserError" -#~ msgstr "Erreur utilisateur" - #~ msgid "Partner Functions" #~ msgstr "Fonctions de partenaire" @@ -10170,10 +10609,6 @@ msgstr "Russie / русский язык" #~ msgid "Workflow Definitions" #~ msgstr "Définitions du processus" -#, python-format -#~ msgid "ValidateError" -#~ msgstr "Erreur de validation" - #~ msgid "System upgrade done" #~ msgstr "Mise à jour du système terminée" @@ -10258,10 +10693,6 @@ msgstr "Russie / русский язык" #~ "les droits d'accès de chaque utilisateur aux différents objets du système.\n" #~ " " -#, python-format -#~ msgid "The search method is not implemented on this object !" -#~ msgstr "La méthode \"search\" n'est pas implémentée dans cet objet !" - #~ msgid "Unsubscribed" #~ msgstr "Non inscrit" @@ -10287,24 +10718,8 @@ msgstr "Russie / русский язык" #~ "au format zip" #, python-format -#~ msgid "" -#~ "The sum of the data (2nd field) is null.\n" -#~ "We can't draw a pie chart !" -#~ msgstr "" -#~ "La somme des données (2ème champ) est nulle.\n" -#~ "Impossible de dessiner un graphique en camembert !" - -#, python-format -#~ msgid "Not implemented set_memory method !" -#~ msgstr "Méthode 'set_memory' pas implémentée !" - -#, python-format -#~ msgid "Please check that all your lines have %d columns." -#~ msgstr "Merci de vérifier que toutes vos lignes ont %d colonnes" - -#, python-format -#~ msgid "Recursivity Detected." -#~ msgstr "Récursivité détectée" +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Vous ne pouvez pas supprimer ce document ! (%s)" #, python-format #~ msgid "Invalid operation" @@ -10318,10 +10733,6 @@ msgstr "Russie / русский язык" #~ msgid "The name_get method is not implemented on this object !" #~ msgstr "La méthode 'name_get' n'est pas implémentée sur cet objet !" -#, python-format -#~ msgid "Not Implemented" -#~ msgstr "Non implémenté" - #, python-format #~ msgid "Unknown position in inherited view %s !" #~ msgstr "Position inconnue dans la vue héritée %s !" @@ -10330,24 +10741,24 @@ msgstr "Russie / русский язык" #~ msgid "Field %d should be a figure" #~ msgstr "Le champ %d doit être un nombre" -#, python-format -#~ msgid "The value \"%s\" for the field \"%s\" is not in the selection" -#~ msgstr "La valeur \"%s\" pour le champ \"%s\" n'est pas dans la sélection" - -#, python-format -#~ msgid "undefined get method !" -#~ msgstr "Méthode 'get' non définie !" - #~ msgid "Delete Permission" #~ msgstr "Accès en suppression" #~ msgid "txt" #~ msgstr "txt" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Vous ne pouvez pas lire ce document ! (%s)" + #, python-format #~ msgid "Pie charts need exactly two fields" #~ msgstr "Les graphiques en camembert ont besoin d'exactement deux champs" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Vous ne pouvez pas écrire dans ce document ! (%s)" + #, python-format #~ msgid "Enter at least one field !" #~ msgstr "Entrez au moins un champ !" @@ -10528,36 +10939,6 @@ msgstr "Russie / русский язык" #~ msgid "The Code of the Partner Function must be unique !" #~ msgstr "Le Code de la Fonction du Partenaire doit être unique !" -#, python-format -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "[object with reference: %s - %s]" -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "[objet ayant pour référence : %s - %s]" - -#, python-format -#~ msgid "Integrity Error" -#~ msgstr "Erreur d'intégrité" - -#, python-format -#~ msgid "" -#~ "The operation cannot be completed, probably due to the following:\n" -#~ "- deletion: you may be trying to delete a record while other records still " -#~ "reference it\n" -#~ "- creation/update: a mandatory field is not correctly set" -#~ msgstr "" -#~ "L'opération n'a pas pu être terminée, probablement à la suite d'une :\n" -#~ "- suppression : vous avez essayer de supprimer un enregistrement auquel " -#~ "d'autres enregistrements font référence\n" -#~ "- création/modification : un champ requis n'a pas été correctement rempli" - -#, python-format -#~ msgid "Constraint Error" -#~ msgstr "Erreur de contrainte" - #~ msgid "Serbian / Serbia" #~ msgstr "Serbe / Serbie" @@ -10720,6 +11101,12 @@ msgstr "Russie / русский язык" #~ msgid "Ltd." #~ msgstr "Ltd." +#~ msgid "Web Icons" +#~ msgstr "Icones de la version web" + +#~ msgid "Icon File" +#~ msgstr "Fichier d'icône" + #~ msgid "Sr." #~ msgstr "Mr." @@ -10734,3 +11121,6 @@ msgstr "Russie / русский язык" #~ "Si votre paiement a été effectué depuis l'envoi de ce courrier électronique, " #~ "veuillez considérer ce dernier comme nul et non avenu. N'hésitez pas à " #~ "prendre contact avec notre service comptabilité." + +#~ msgid "Web Icons Hover" +#~ msgstr "Icône web au survol de la souris" diff --git a/bin/addons/base/i18n/gl.po b/bin/addons/base/i18n/gl.po index 23ac7918781..43dd8050133 100644 --- a/bin/addons/base/i18n/gl.po +++ b/bin/addons/base/i18n/gl.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-14 08:43+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Galician \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:54+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:16+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -41,6 +41,14 @@ msgstr "Outras opcións" msgid "DateTime" msgstr "Datetime" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -53,12 +61,6 @@ msgstr "Metadatos" msgid "View Architecture" msgstr "Arquitectura de Vistas" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "¡Non pode crear esta clase de documento! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -109,6 +111,14 @@ msgstr "Mostrar Menú de Consellos" msgid "Created Views" msgstr "Vistas creadas" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -125,11 +135,10 @@ msgid "South Korea" msgstr "Corea do Sur" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "Transicións" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -141,13 +150,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Suacilandia" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "Provedores de Madeira" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -178,14 +194,14 @@ msgid "Search Partner" msgstr "Procurar Empresas" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" "\"smtp_server \" ten que ser configurado para enviar correo para os usuarios" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "novo" @@ -216,7 +232,7 @@ msgid "Contact Name" msgstr "Nome de contacto" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -240,6 +256,12 @@ msgstr "activo" msgid "Wizard Name" msgstr "Nome do asistente" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -272,7 +294,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "Widget" @@ -323,7 +344,7 @@ msgid "Netherlands Antilles" msgstr "Antillas Holandesas" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -347,11 +368,6 @@ msgstr "Grego / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "Bosnio / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -359,6 +375,12 @@ msgid "" "name, it returns the previous report." msgstr "" +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -385,6 +407,12 @@ msgstr "Colombia" msgid "Schedule Upgrade" msgstr "Axenda de Actualización" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -430,7 +458,7 @@ msgid "Miscellaneous Suppliers" msgstr "Diversos provedores" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Os campos personalizados deben ter un nome que comeza con 'x_' !" @@ -680,6 +708,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -744,6 +778,14 @@ msgstr "%B - nome do mes enteiro." msgid "Type" msgstr "Tipo" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -770,6 +812,19 @@ msgstr "XML válido para Arquitectura de Vistas!" msgid "Cayman Islands" msgstr "Illas Caymans" +#. 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 "Transicións" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -874,6 +929,16 @@ msgstr "Haití" msgid "Search" msgstr "Búsqueda" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -929,13 +994,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "Non existe ningunha linguaxe con código \"%s\"" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -966,6 +1031,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1015,7 +1086,7 @@ msgid "On Create" msgstr "Ó Crear" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1118,12 +1189,6 @@ msgstr "ID do Adxunto" msgid "Day: %(day)s" msgstr "Día: %(day)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Non podes ler este documento! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1163,8 +1228,8 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (Copia)" @@ -1242,7 +1307,7 @@ msgid "Formula" msgstr "Fórmula" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "Non se pode eliminar o usuario root!" @@ -1253,7 +1318,8 @@ msgid "Malawi" msgstr "Malawi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "%s (copia)" @@ -1302,7 +1368,6 @@ msgstr "Árbore" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1329,6 +1394,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1380,7 +1451,7 @@ msgid "Bahamas" msgstr "Bahamas" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1401,6 +1472,12 @@ msgstr "Irlanda" msgid "Number of modules updated" msgstr "Número de módulos actualizados" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1476,6 +1553,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1545,7 +1628,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1631,12 +1714,6 @@ msgstr "E-mail" msgid "French (BE) / Français (BE)" msgstr "Francés (BE) / Francés (BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Non podes escribir neste documento! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1707,6 +1784,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1717,13 +1800,19 @@ msgstr "" msgid "Slovenia" msgstr "Eslovenia" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1753,6 +1842,14 @@ msgstr "Data de clausura" msgid "New Zealand" msgstr "Nova Celandia" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1802,19 +1899,13 @@ msgstr "Erro! Non podes crear compañías recursivamente." msgid "Valid" msgstr "Válido" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Non podes eliminar este documento! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "Non se pode actualizar o módulo '%s' . Non está instalado." @@ -1925,6 +2016,15 @@ msgstr "Sinal (subflow. *)" msgid "HR sector" msgstr "sector de RH" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1978,6 +2078,11 @@ msgstr "Dependencias" msgid "Main Company" msgstr "Compañía Principal" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2064,9 +2169,10 @@ msgid "Sir" msgstr "Sir" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" -msgstr "Seleccione o módulo a importar (arquivo zip.)" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" +msgstr "" #. module: base #: field:ir.default,ref_id:0 @@ -2164,7 +2270,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "Por favor, especifique unha acción para lanzar!" @@ -2188,6 +2294,12 @@ msgstr "Dereita a esquerda" msgid "Filters" msgstr "Filtros" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2209,7 +2321,13 @@ msgstr "" "Se non se define, actúa como un valor por defecto para novas características" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "Erro de recursión nas dependencias dos módulos!" @@ -2234,6 +2352,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2286,11 +2409,6 @@ msgstr "comprobar EAN" msgid "VAT" msgstr "IVE" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2327,20 +2445,28 @@ msgid "M." msgstr "M." #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" " %s" msgstr "" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Nauru" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2416,6 +2542,12 @@ msgstr "Enviar SMS" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2473,7 +2605,7 @@ msgid "Ecuador" msgstr "Ecuador" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2539,7 +2671,7 @@ msgid "Action to Trigger" msgstr "Acción a disparar" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2734,18 +2866,13 @@ msgstr "Autor" msgid "FYROM" msgstr "FYROM" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Búsqueda Avanzada" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - representación da data e hora axeitadas." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2791,7 +2918,7 @@ msgid "Rules" msgstr "Regras" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "Intenta eliminar un módulo que está instalado ou será instalado" @@ -2859,7 +2986,7 @@ msgid "Lesotho" msgstr "Lesoto" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "Non se pode eliminar o modelo '%s' !" @@ -2889,6 +3016,12 @@ msgstr "" msgid "System Configuration Done" msgstr "Configuración do Sistema Feita" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2920,7 +3053,7 @@ msgid "Benin" msgstr "Benin" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2950,6 +3083,14 @@ msgstr "Cabeceira RML" msgid "API ID" msgstr "API ID" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3195,6 +3336,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "Nicaragua" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3473,7 +3620,8 @@ msgid "Bank Type" msgstr "Tipo de Banco" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "O nome do grupo non pode comezar por \"-\"" @@ -3495,7 +3643,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3513,7 +3661,7 @@ msgid "Flow Start" msgstr "Inicio do Fluxo" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3545,7 +3693,9 @@ msgid "Guadeloupe (French)" msgstr "Guadalupe (en francés)" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "Erro de Usuario" @@ -3620,6 +3770,11 @@ msgstr "" msgid "Cape Verde" msgstr "Cabo Verde" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "Seleccione o módulo a importar (arquivo zip.)" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3633,6 +3788,12 @@ msgstr "Eventos" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3666,9 +3827,10 @@ msgid "French / Français" msgstr "Francés / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Menús creados" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -3918,6 +4080,14 @@ msgstr "Asesoramento" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3956,8 +4126,8 @@ msgid "Project" msgstr "Proxecto" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -3987,12 +4157,9 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Cliente" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "Auditoría" #. module: base #: model:res.country,name:base.lc @@ -4100,6 +4267,18 @@ msgstr "Vietnam" msgid "Signature" msgstr "Sinatura" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4121,7 +4300,7 @@ msgid "False means for every user" msgstr "False significa para cada usuario" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4162,9 +4341,11 @@ msgid "Contacts" msgstr "Contactos" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Illas Feroe" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4193,6 +4374,12 @@ msgstr "República Checa" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4237,15 +4424,9 @@ msgid "Mongolia" msgstr "Mongolia" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Erro" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Menús creados" #. module: base #: selection:ir.ui.view,type:0 @@ -4359,11 +4540,6 @@ msgstr "San Vicente e Granadinas" msgid "Password" msgstr "Contrasinal" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4463,7 +4639,7 @@ msgid "Change My Preferences" msgstr "Cambiar as Miñas Preferencias" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Nome inválido do modelo na definición da acción." @@ -4531,7 +4707,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4609,7 +4785,13 @@ msgid "Client Actions" msgstr "Accións de Cliente" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4682,7 +4864,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Módulo %s: Certificado de Calidade Inválido" @@ -4730,6 +4912,11 @@ msgstr "Enviar SMS" msgid "Accepted Users" msgstr "Usuarios aceptados" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4846,6 +5033,14 @@ msgstr "" msgid "Nepal" msgstr "Nepal" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4875,14 +5070,14 @@ msgid "Update Modules List" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4901,6 +5096,12 @@ msgstr "Continúe" msgid "Thai / ภาษาไทย" msgstr "Tailandés / ภาษา ไทย" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5031,6 +5232,13 @@ msgstr "O nome completo do país." msgid "Iteration" msgstr "Iteración" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5070,7 +5278,12 @@ msgid "Solomon Islands" msgstr "Illas Salomón" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "AccessError" @@ -5081,7 +5294,7 @@ msgid "Waiting" msgstr "Esperando" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5091,6 +5304,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5208,7 +5427,7 @@ msgid "ir.actions.todo" msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "Non se atopou a anterior ir.actions.todo" @@ -5282,17 +5501,23 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "Non podes eliminar a linguaxe que é a preferida do usuario!" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5301,7 +5526,7 @@ msgid "Python Code" msgstr "Código Python" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "Non se pode crear o arquivo do módulo: %s!" @@ -5420,7 +5645,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5459,7 +5684,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "Indique a opción do servidor --email-from !" @@ -5671,7 +5896,7 @@ msgid "Afghanistan, Islamic State of" msgstr "Afganistán, Estado Islámico de" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Erro!" @@ -5692,6 +5917,12 @@ msgstr "Rango de Unidade" msgid "Kind" msgstr "Tipo" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5947,6 +6178,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "Para ver traducións oficiais, pode comezar con estes enlaces:" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5956,11 +6195,6 @@ msgstr "Para ver traducións oficiais, pode comezar con estes enlaces:" msgid "Address" msgstr "Enderezo" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6039,7 +6273,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "Saint Kitts e Nevis Anguilla" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6123,7 +6357,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6144,11 +6378,19 @@ msgid "Child IDs" msgstr "IDs Fillas" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problema na configuración `Record Id` na Acción de Servidor!" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6195,6 +6437,14 @@ msgstr "E-mail" msgid "Home Action" msgstr "Home Action" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6223,10 +6473,9 @@ msgid "Stop All" msgstr "Parar todo" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6277,7 +6526,7 @@ msgid "Start update" msgstr "Inicio actualización" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6335,7 +6584,7 @@ msgid "HR Manager Dashboard" msgstr "HR Manager Dashboard" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6387,7 +6636,7 @@ msgid "Module Update" msgstr "Actualización de Módulo" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6468,7 +6717,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "O novo nome do usuario, usado para buscar e máis listas" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6506,6 +6762,12 @@ msgstr "Para" msgid "Arguments" msgstr "Argumentos" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6516,15 +6778,30 @@ msgstr "GPL versión 2" msgid "GPL Version 3" msgstr "GPL versión 3" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "Corrixir EAN13" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" -msgstr "Auditoría" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Cliente" #. module: base #: selection:base.language.install,lang:0 @@ -6629,7 +6906,7 @@ msgid "Copy Object" msgstr "Objeto de Copia" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6680,6 +6957,15 @@ msgstr "Táboa Ref." msgid "Object" msgstr "Obxecto" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6715,7 +7001,7 @@ msgid "User Ref." msgstr "Usuario Ref." #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "Atención!" @@ -6856,7 +7142,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6912,7 +7198,7 @@ msgid "Action Type" msgstr "Tipo de Acción" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7015,11 +7301,23 @@ msgstr "Código do país" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7195,6 +7493,11 @@ msgstr "Enviar email" msgid "Menu Action" msgstr "Menú Acción" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Illas Feroe" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7332,7 +7635,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7530,7 +7833,7 @@ msgid "Account No." msgstr "Conta nº" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "A Lingua Base 'gl_ES' non se pode borrar!" @@ -7574,6 +7877,14 @@ msgstr "Valor da Tradución" msgid "Antigua and Barbuda" msgstr "Antiga e Barbuda" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7632,7 +7943,7 @@ msgid "Auto-Refresh" msgstr "Auto-refresh" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7642,6 +7953,11 @@ msgstr "" msgid "Diagram" msgstr "Diagrama" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Illas Wallis e Futuna" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7698,6 +8014,35 @@ msgstr "Código de Identificación Bancaria" msgid "Turkmenistan" msgstr "Turcomenistán" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Erro" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7827,7 +8172,7 @@ msgid "Internal Header/Footer" msgstr "Cabeceira/Pé Interno" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7866,6 +8211,14 @@ msgstr "República Dominicana" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7889,7 +8242,7 @@ msgid "Event Logs" msgstr "Rexistros de eventos" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "Configuración do Sistema feita" @@ -7936,11 +8289,18 @@ msgid "Low" msgstr "Baixa" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Erro! Non podes crear Menú recursivamente." +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7949,7 +8309,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8103,7 +8463,7 @@ msgid "View Auto-Load" msgstr "Ver Auto-Load" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Non pode eliminar o campo '%s' !" @@ -8115,6 +8475,11 @@ msgstr "Non pode eliminar o campo '%s' !" msgid "Resource" msgstr "Recursos" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8126,7 +8491,7 @@ msgid "View Ordering" msgstr "Ver pedido" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8138,6 +8503,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8262,7 +8635,7 @@ msgid "Azerbaijan" msgstr "Acerbaixán" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Aviso" @@ -8289,9 +8662,9 @@ msgid "Czech / Čeština" msgstr "Checa / čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Illas Wallis e Futuna" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Búsqueda Avanzada" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8589,7 +8962,7 @@ msgid "Account Owner" msgstr "Propietario da Conta" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8649,7 +9022,7 @@ msgid "Workflow Instances" msgstr "Instancias do Fluxo de Traballo" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Empresas: " @@ -8809,6 +9182,10 @@ msgstr "Rusia / русский язык" #~ msgid "STOCK_COPY" #~ msgstr "STOCK_COPY" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Non podes ler este documento! (%s)" + #~ msgid "STOCK_FIND_AND_REPLACE" #~ msgstr "STOCK_FIND_AND_REPLACE" @@ -8849,6 +9226,10 @@ msgstr "Rusia / русский язык" #~ msgid "Make sure you have no users linked with the group(s)!" #~ msgstr "Asegúrese de que non ten usuarios no grupo(s)!" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Non podes escribir neste documento! (%s)" + #~ msgid "STOCK_PRINT_PREVIEW" #~ msgstr "STOCK_PRINT_PREVIEW" @@ -8864,6 +9245,10 @@ msgstr "Rusia / русский язык" #~ msgid "terp-go-home" #~ msgstr "terp-go-home" +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Non podes eliminar este documento! (%s)" + #~ msgid "%S - Second as a decimal number [00,61]." #~ msgstr "%s - Segundo como un número decimal [00,61]." @@ -9360,3 +9745,7 @@ msgstr "Rusia / русский язык" #~ msgstr "" #~ "Intenta instalar el módulo '%s' que depende del módulo: '%s',\n" #~ "pero este módulo no está disponible en su sistema." + +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "¡Non pode crear esta clase de documento! (%s)" diff --git a/bin/addons/base/i18n/he.po b/bin/addons/base/i18n/he.po index 8f4053abec1..43e46c6b080 100644 --- a/bin/addons/base/i18n/he.po +++ b/bin/addons/base/i18n/he.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-10 07:42+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Hebrew \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:54+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:16+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -41,6 +41,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -53,12 +61,6 @@ msgstr "נתוני מטא" msgid "View Architecture" msgstr "הצג ארכיטקטורה" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "אינך יכול לצור מסמך מסוג זה (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -109,6 +111,14 @@ msgstr "" msgid "Created Views" msgstr "צפיה בנוצרו" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -125,11 +135,10 @@ msgid "South Korea" msgstr "South Korea" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "העברות" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -141,13 +150,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Swaziland" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -176,13 +192,13 @@ msgid "Search Partner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "חדש" @@ -213,7 +229,7 @@ msgid "Contact Name" msgstr "שם להתקשרות" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -237,6 +253,12 @@ msgstr "פעיל" msgid "Wizard Name" msgstr "שם מומחה" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -269,7 +291,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -320,7 +341,7 @@ msgid "Netherlands Antilles" msgstr "Netherlands Antilles" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -344,11 +365,6 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "בוסניה/bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -358,6 +374,12 @@ msgstr "" "אם תסמן זאת, בפעם השניה בה המשתמש ידפיס עם שם מצורף זהה,זה יחזיר את הדווח " "הקודם." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "שיטת הקריאה אינה מיושמת על אובייקט זה!" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -384,6 +406,12 @@ msgstr "Colombia" msgid "Schedule Upgrade" msgstr "שדרוג מתוזמן" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -427,7 +455,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "שדות מותאמים אישית חייבים להתחיל ב 'x_' !" @@ -674,6 +702,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "השיטה הלא מקושרת לא הוטמעה באובייקט!" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -738,6 +772,14 @@ msgstr "%B - שם חודש מלא." msgid "Type" msgstr "סוג" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -764,6 +806,19 @@ msgstr "XML לא בתוקף להצגת ארכיטקטורה" msgid "Cayman Islands" msgstr "Cayman Islands" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "העברות" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -870,6 +925,16 @@ msgstr "Haiti" msgid "Search" msgstr "" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -925,13 +990,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -964,6 +1029,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "שיטת החיפוש אינה מיושמת על אובייקט זה." + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1011,7 +1082,7 @@ msgid "On Create" msgstr "בהפקה" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1112,12 +1183,6 @@ msgstr "מזהה קובץ מצורף" 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 "אתה לא יכול לקרוא מסמך זה! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1158,8 +1223,8 @@ msgstr "" "תנאים לבדיקה לפני ביצוע הפעולה. למשל object.list_price > object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr "" @@ -1239,7 +1304,7 @@ msgid "Formula" msgstr "נוסחה" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "לא ניתן להסיר משתמש מקור!" @@ -1250,7 +1315,8 @@ msgid "Malawi" msgstr "Malawi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1301,7 +1367,6 @@ msgstr "עץ" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "השאר ריק אם אינך רוצה שהמשתמש יוכל להתחבק למערכת." @@ -1328,6 +1393,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "לא יושמה שיטת חיפוש_זכרון" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1379,7 +1450,7 @@ msgid "Bahamas" msgstr "Bahamas" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1400,6 +1471,12 @@ msgstr "Ireland" msgid "Number of modules updated" msgstr "מספר מודולים עודכנו." +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "לא יושמה שיטת קבוע_זיכרון" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1475,6 +1552,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1546,7 +1629,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1633,12 +1716,6 @@ msgstr "כתובות דוא\"ל" msgid "French (BE) / Français (BE)" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "אינך יכול לכתוב במסמך זה! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1709,6 +1786,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "שיטת הקריאה_קבועה אינה מישמת באובייקט זה" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1719,13 +1802,19 @@ msgstr "" msgid "Slovenia" msgstr "Slovenia" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1755,6 +1844,14 @@ msgstr "סיום תאריך" msgid "New Zealand" msgstr "New Zealand" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1804,19 +1901,13 @@ msgstr "שגיאה! אינך יכול ליצור חברות נסוגות." msgid "Valid" msgstr "בתוקף" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "אינך יכול למחוק מסמך זה! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "לא ניתן לשדרג מודול '%s'. הוא לא מותקן." @@ -1927,6 +2018,15 @@ msgstr "סימן (subflow.*)" msgid "HR sector" msgstr "מגזר HR" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1980,6 +2080,11 @@ msgstr "תלותיות" msgid "Main Company" msgstr "חברה מרכזית" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2066,8 +2171,9 @@ msgid "Sir" msgstr "אדון" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2166,7 +2272,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "אנא ציין פעולה לביצוע!" @@ -2190,6 +2296,12 @@ msgstr "ימין לשמאל" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "אנא בדוק כי כל השורות בעלות עמודות %d" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2210,7 +2322,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "שגיאה רקורסיה בהתניות המודולים" @@ -2237,6 +2355,11 @@ msgstr "" "מספר מע\"מ. סמן את התיבה אם השותף נתון למע\"מ. משומש ע\"פ הצהרת חוקיות של " "מע\"מ." +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2289,11 +2412,6 @@ msgstr "" msgid "VAT" msgstr "מע\"מ" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2330,7 +2448,7 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2339,13 +2457,21 @@ msgstr "" "לא ניתן ליצור את קובץ המודול\n" "%s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Nauru" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2421,6 +2547,12 @@ msgstr "שלח SMS" msgid "EAN13" msgstr "בר קוד בשיטת EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2478,7 +2610,7 @@ msgid "Ecuador" msgstr "Ecuador" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2548,7 +2680,7 @@ msgid "Action to Trigger" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2745,18 +2877,13 @@ msgstr "מחבר" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "חיפוש מתקדם" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - ייצוג תאריך וזמן מתאים." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2802,7 +2929,7 @@ msgid "Rules" msgstr "כללים" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "אתה מנסה להסיר מודול מותקן או שיותקן." @@ -2872,7 +2999,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "אתה לא יכול להסיר את המודל '%s' !" @@ -2902,6 +3029,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "שגיאה הופיעה בזמן נתינת תוקף לשדה(ות) %s: %s" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2933,7 +3066,7 @@ msgid "Benin" msgstr "Benin" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2963,6 +3096,14 @@ msgstr "כותרת RML" msgid "API ID" msgstr "מזהה API (ממשק לתכנות מחשבים)" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3210,6 +3351,12 @@ msgstr "" msgid "Nicaragua" msgstr "Nicaragua" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "שיטת הכתיבת אינה מיושמת באובייקט זה." + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3488,7 +3635,8 @@ msgid "Bank Type" msgstr "סוג בנק" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "שם הקבוצה אינו יכול להתחיל ב \"-\"" @@ -3510,7 +3658,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3528,7 +3676,7 @@ msgid "Flow Start" msgstr "זרם התחלתי" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3560,7 +3708,9 @@ msgid "Guadeloupe (French)" msgstr "Guadeloupe (French)" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3635,6 +3785,11 @@ msgstr "" msgid "Cape Verde" msgstr "Cape Verde" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3648,6 +3803,12 @@ msgstr "ארועים" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "מזהה שגוי לחיפוש רשומה, התקבל %r, מצופה מספר שלם." + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3681,9 +3842,10 @@ msgid "French / Français" msgstr "צרפתית/ Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "תפריטים שנוצרו" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "השיטה הקיימת אינה מיושמת באובייקט זה!" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -3933,6 +4095,14 @@ msgstr "עצה" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3973,8 +4143,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -4004,12 +4174,9 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "לקוח" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "" #. module: base #: model:res.country,name:base.lc @@ -4117,6 +4284,18 @@ msgstr "Vietnam" msgid "Signature" msgstr "חתימה" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "לא יושם" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4138,7 +4317,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4179,9 +4358,11 @@ msgid "Contacts" msgstr "אנשי קשר" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4210,6 +4391,12 @@ msgstr "Czech Republic" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4254,15 +4441,9 @@ msgid "Mongolia" msgstr "Mongolia" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "שגיאה" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "תפריטים שנוצרו" #. module: base #: selection:ir.ui.view,type:0 @@ -4376,11 +4557,6 @@ msgstr "Saint Vincent & Grenadines" msgid "Password" msgstr "סיסמא" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4480,7 +4656,7 @@ msgid "Change My Preferences" msgstr "שנה את העדפות שלי" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4548,7 +4724,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4626,7 +4802,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4701,7 +4883,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "מודול %s: ללא אישו איכות בתוקף" @@ -4751,6 +4933,11 @@ msgstr "" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4865,6 +5052,14 @@ msgstr "" msgid "Nepal" msgstr "Nepal" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4894,14 +5089,14 @@ msgid "Update Modules List" msgstr "עדכן רשימת מודולים" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4920,6 +5115,12 @@ msgstr "המשך" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5050,6 +5251,13 @@ msgstr "שם המדינה המלא." msgid "Iteration" msgstr "איטרציה" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "משתמש שגוי" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5088,7 +5296,12 @@ msgid "Solomon Islands" msgstr "Solomon Islands" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "שגיאת גישה" @@ -5099,7 +5312,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5109,6 +5322,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "שיטת העתקה אינה מיושמת באובייקט" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5226,7 +5445,7 @@ msgid "ir.actions.todo" msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5300,17 +5519,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "לא מיושמת שיטת השג_זיכרון!" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5319,7 +5544,7 @@ msgid "Python Code" msgstr "קוד Python" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "לא ניתן ליצור את קובץ המודול : %s !" @@ -5438,7 +5663,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5477,7 +5702,7 @@ msgid "" msgstr "בחר את האובייקט אשר עליו הפעולה תעבוד (קריאה,כתיבה,יצירה)." #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5689,7 +5914,7 @@ msgid "Afghanistan, Islamic State of" msgstr "Afghanistan, Islamic State of" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "שגיאה!" @@ -5710,6 +5935,12 @@ msgstr "יחידת מרוח /פער" msgid "Kind" msgstr "סוג" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "שיטה זו אינה קיימת יותר" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5965,6 +6196,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5974,11 +6213,6 @@ msgstr "" msgid "Address" msgstr "כתובות" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6057,7 +6291,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "Saint Kitts & Nevis Anguilla" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6142,7 +6376,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6163,11 +6397,19 @@ msgid "Child IDs" msgstr "מזהי ילד" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "בעיה בקביעת תצורה 'מזהה רשומה' בפעולת שרת!" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6214,6 +6456,16 @@ msgstr "דוא\"ל" msgid "Home Action" msgstr "" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" +"המידע (בשדה ה-2) אינו תקף.\n" +"לא ניתן לסרטט תרשים." + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6242,10 +6494,9 @@ msgid "Stop All" msgstr "עצור הכל" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6296,7 +6547,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6354,7 +6605,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6406,7 +6657,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6487,7 +6738,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6525,6 +6783,12 @@ msgstr "אל" msgid "Arguments" msgstr "טיעונים" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6535,15 +6799,30 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" -msgstr "" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "הערך \"%s\" לשדה \"%s\" אינו בבחירה." + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "לקוח" #. module: base #: selection:base.language.install,lang:0 @@ -6648,7 +6927,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6699,6 +6978,15 @@ msgstr "" msgid "Object" msgstr "אובייקט" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6734,7 +7022,7 @@ msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6875,7 +7163,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6931,7 +7219,7 @@ msgid "Action Type" msgstr "סוג פעולה" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7034,11 +7322,23 @@ msgstr "קוד מדינה" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7215,6 +7515,11 @@ msgstr "שלח דוא\"ל" msgid "Menu Action" msgstr "פעולת תפריט" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Faroe Islands" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7352,7 +7657,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7550,7 +7855,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7594,6 +7899,14 @@ msgstr "ערך תרגום" msgid "Antigua and Barbuda" msgstr "Antigua and Barbuda" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7652,7 +7965,7 @@ msgid "Auto-Refresh" msgstr "רענן- אוטומטית" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7662,6 +7975,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis and Futuna Islands" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7718,6 +8036,35 @@ msgstr "קוד מזהה בנק" msgid "Turkmenistan" msgstr "Turkmenistan" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "שגיאה" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7846,7 +8193,7 @@ msgid "Internal Header/Footer" msgstr "כותרת עליונה/ תחתונה פנימית" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7887,6 +8234,14 @@ msgstr "Dominican Republic" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7912,7 +8267,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7959,11 +8314,18 @@ msgid "Low" msgstr "נמוך" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7972,7 +8334,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8126,7 +8488,7 @@ msgid "View Auto-Load" msgstr "הצג טעינה אוטומטית" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8138,6 +8500,11 @@ msgstr "" msgid "Resource" msgstr "משאב" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8149,7 +8516,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8161,6 +8528,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8285,7 +8660,7 @@ msgid "Azerbaijan" msgstr "Azerbaijan" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "אזהרה" @@ -8312,9 +8687,9 @@ msgid "Czech / Čeština" msgstr "צ'כית / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis and Futuna Islands" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "חיפוש מתקדם" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8616,7 +8991,7 @@ msgid "Account Owner" msgstr "בעל החשבון" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8676,7 +9051,7 @@ msgid "Workflow Instances" msgstr "שלב ברצף העבודה" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "שותפים: " @@ -8738,16 +9113,16 @@ msgstr "רוסית / русский язык" #~ msgid "%j - Day of the year as a decimal number [001,366]." #~ msgstr "%j - יום בשנה בשלושה ספרות [001,366]." +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "אינך יכול לצור מסמך מסוג זה (%s)" + #~ msgid "Outgoing transitions" #~ msgstr "העברה יוצאת" #~ msgid "Yearly" #~ msgstr "שנתי" -#, python-format -#~ msgid "The unlink method is not implemented on this object !" -#~ msgstr "השיטה הלא מקושרת לא הוטמעה באובייקט!" - #~ 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 " @@ -8813,10 +9188,6 @@ msgstr "רוסית / русский язык" #~ msgid "Configure" #~ msgstr "תצורה" -#, python-format -#~ msgid "The read method is not implemented on this object !" -#~ msgstr "שיטת הקריאה אינה מיושמת על אובייקט זה!" - #~ msgid "STOCK_MEDIA_REWIND" #~ msgstr "STOCK_MEDIA_REWIND" @@ -8869,14 +9240,6 @@ msgstr "רוסית / русский язык" #~ msgid "You try to bypass an access rule (Document type: %s)." #~ msgstr "אתה מנסה לעקוף הוראת גישה (מסוג מסמך: %s)" -#, python-format -#~ msgid "" -#~ "The sum of the data (2nd field) is null.\n" -#~ "We can't draw a pie chart !" -#~ msgstr "" -#~ "המידע (בשדה ה-2) אינו תקף.\n" -#~ "לא ניתן לסרטט תרשים." - #~ msgid "Sequence Name" #~ msgstr "שם רצף" @@ -8950,6 +9313,10 @@ msgstr "רוסית / русский язык" #~ msgid "Simple domain setup" #~ msgstr "התקנת דומיין פשוט" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "אתה לא יכול לקרוא מסמך זה! (%s)" + #~ msgid "STOCK_FIND_AND_REPLACE" #~ msgstr "STOCK_FIND_AND_REPLACE" @@ -8980,10 +9347,6 @@ msgstr "רוסית / русский язык" #~ msgid "STOCK_CLEAR" #~ msgstr "STOCK_CLEAR" -#, python-format -#~ msgid "Not implemented search_memory method !" -#~ msgstr "לא יושמה שיטת חיפוש_זכרון" - #~ msgid "STOCK_PROPERTIES" #~ msgstr "STOCK_PROPERTIES" @@ -8993,10 +9356,6 @@ msgstr "רוסית / русский язык" #~ msgid "Year without century: %(y)s" #~ msgstr "שנה בשני ספרות: %(y)" -#, python-format -#~ msgid "Not implemented set_memory method !" -#~ msgstr "לא יושמה שיטת קבוע_זיכרון" - #~ msgid "Maintenance contract added !" #~ msgstr "חוזה אחזקה הוסף!" @@ -9024,16 +9383,16 @@ msgstr "רוסית / русский язык" #~ msgid "Configure User" #~ msgstr "קבע תצורת משתמש" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "אינך יכול לכתוב במסמך זה! (%s)" + #~ msgid "left" #~ msgstr "שמאל" #~ msgid "STOCK_PRINT_PREVIEW" #~ msgstr "STOCK_PRINT_PREVIEW" -#, python-format -#~ msgid "The perm_read method is not implemented on this object !" -#~ msgstr "שיטת הקריאה_קבועה אינה מישמת באובייקט זה" - #~ msgid "STOCK_MEDIA_PLAY" #~ msgstr "STOCK_MEDIA_PLAY" @@ -9049,6 +9408,10 @@ msgstr "רוסית / русский язык" #~ msgid "right" #~ msgstr "ימין" +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "אינך יכול למחוק מסמך זה! (%s)" + #~ msgid "Others Partners" #~ msgstr "שותפים אחרים" @@ -9101,10 +9464,6 @@ msgstr "רוסית / русский язык" #~ msgid "Report Footer" #~ msgstr "כותרת תחתונה של הדו\"ח" -#, python-format -#~ msgid "Please check that all your lines have %d columns." -#~ msgstr "אנא בדוק כי כל השורות בעלות עמודות %d" - #~ msgid "Import language" #~ msgstr "שפת ייצוא" @@ -9151,10 +9510,6 @@ msgstr "רוסית / русский язык" #~ msgid "System Upgrade" #~ msgstr "מערכת שודרגה" -#, python-format -#~ msgid "The create method is not implemented on this object !" -#~ msgstr "השיטה הקיימת אינה מיושמת באובייקט זה!" - #~ msgid "Partner Address" #~ msgstr "כתובת שותף" @@ -9193,10 +9548,6 @@ msgstr "רוסית / русский язык" #~ "בחר בממשק הפשוט אם אתה מנסה את openERP בפעם הראשונה. אופציות ושדות בהם " #~ "משתמשים פחות מוסתרות. בעתיד ניתן לשנות הגדרה זו דרך תפריט מנהל." -#, python-format -#~ msgid "Error occurred while validating the field(s) %s: %s" -#~ msgstr "שגיאה הופיעה בזמן נתינת תוקף לשדה(ות) %s: %s" - #~ msgid "The rule is satisfied if all test are True (AND)" #~ msgstr "ההוראה מיושמת אם כל הבדיקות הם TRUE (וגם)" @@ -9231,10 +9582,6 @@ msgstr "רוסית / русский язык" #~ msgid "Groups are used to defined access rights on each screen and menu." #~ msgstr "קבוצות אשר משמשות להגדרת אפשרויות גישה למסכים ותפריטים." -#, python-format -#~ msgid "The write method is not implemented on this object !" -#~ msgstr "שיטת הכתיבת אינה מיושמת באובייקט זה." - #~ msgid "Sale Opportunity" #~ msgstr "הזדמנויות מכירה" @@ -9300,10 +9647,6 @@ msgstr "רוסית / русский язык" #~ msgid "STOCK_MEDIA_STOP" #~ msgstr "STOCK_MEDIA_STOP" -#, python-format -#~ msgid "Wrong ID for the browse record, got %r, expected an integer." -#~ msgstr "מזהה שגוי לחיפוש רשומה, התקבל %r, מצופה מספר שלם." - #~ msgid "STOCK_DND_MULTIPLE" #~ msgstr "STOCK_DND_MULTIPLE" @@ -9375,10 +9718,6 @@ msgstr "רוסית / русский язык" #~ msgid "Calculate Count" #~ msgstr "חשב סכום" -#, python-format -#~ msgid "Not Implemented" -#~ msgstr "לא יושם" - #~ msgid "Maintenance" #~ msgstr "תחזוקה" @@ -9488,17 +9827,9 @@ msgstr "רוסית / русский язык" #~ msgid "html" #~ msgstr "html" -#, python-format -#~ msgid "UserError" -#~ msgstr "משתמש שגוי" - #~ msgid "STOCK_MEDIA_RECORD" #~ msgstr "STOCK_MEDIA_RECORD" -#, python-format -#~ msgid "The copy method is not implemented on this object !" -#~ msgstr "שיטת העתקה אינה מיושמת באובייקט" - #~ msgid "STOCK_UNINDENT" #~ msgstr "STOCK_UNINDENT" @@ -9529,10 +9860,6 @@ msgstr "רוסית / русский язык" #~ msgid "You cannot perform this operation." #~ msgstr "אתה לא יכול לבצע פעולה זו." -#, python-format -#~ msgid "Not implemented get_memory method !" -#~ msgstr "לא מיושמת שיטת השג_זיכרון!" - #~ msgid "Customers Partners" #~ msgstr "שותפים לקוחות" @@ -9589,10 +9916,6 @@ msgstr "רוסית / русский язык" #~ msgid "Number too large '%d', can not translate it" #~ msgstr "מספר גדול מידי '%d', לא ניתן לתרגם אותו." -#, python-format -#~ msgid "This method does not exist anymore" -#~ msgstr "שיטה זו אינה קיימת יותר" - #~ msgid "Manual" #~ msgstr "ידני" @@ -9710,10 +10033,6 @@ msgstr "רוסית / русский язык" #~ msgid "sxw" #~ msgstr "sxw" -#, python-format -#~ msgid "The value \"%s\" for the field \"%s\" is not in the selection" -#~ msgstr "הערך \"%s\" לשדה \"%s\" אינו בבחירה." - #~ msgid "Automatic XSL:RML" #~ msgstr "אוטומטי XSL:RML" @@ -9991,10 +10310,6 @@ msgstr "רוסית / русский язык" #~ msgid "Add Maintenance Contract" #~ msgstr "הוסף חוזה אחזקה" -#, python-format -#~ msgid "The search method is not implemented on this object !" -#~ msgstr "שיטת החיפוש אינה מיושמת על אובייקט זה." - #~ msgid "Unsubscribed" #~ msgstr "לא תומך" diff --git a/bin/addons/base/i18n/hr.po b/bin/addons/base/i18n/hr.po index 8f7bdb847fa..f223d8a5551 100644 --- a/bin/addons/base/i18n/hr.po +++ b/bin/addons/base/i18n/hr.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-16 08:53+0000\n" "Last-Translator: nafterburner \n" "Language-Team: openerp-translators\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:57+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:19+0000\n" "X-Generator: Launchpad (build Unknown)\n" "Language: hr\n" @@ -41,6 +41,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -53,12 +61,6 @@ msgstr "Meta podaci" msgid "View Architecture" msgstr "Arhitektura za pregledne ekrane" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Ne možete izraditi ovu vrstu dokumenta! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -109,6 +111,14 @@ msgstr "" msgid "Created Views" msgstr "Stvoreni ekrani za pregled" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -125,11 +135,10 @@ msgid "South Korea" msgstr "Republika Korea" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "Poveznice" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -141,13 +150,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Swaziland" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -176,13 +192,13 @@ msgid "Search Partner" msgstr "Pronađi partnera" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "novi" @@ -213,7 +229,7 @@ msgid "Contact Name" msgstr "Naziv kontakta" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -237,6 +253,12 @@ msgstr "aktivno" msgid "Wizard Name" msgstr "Naziv čarobnjaka" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -269,7 +291,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -320,7 +341,7 @@ msgid "Netherlands Antilles" msgstr "Nizozemski Antili" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -344,11 +365,6 @@ msgstr "Grčka / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "Bosnian / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -358,6 +374,12 @@ msgstr "" "Ukoliko je označeno, prilikom sljedećeg ispisa s jednakim nazivom datoteke, " "biti će vraćen prethodni izvještaj." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -384,6 +406,12 @@ msgstr "Kolumbija" msgid "Schedule Upgrade" msgstr "Postavi za nadogradnju" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -427,7 +455,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Imena dodatnih polja moraju počinjati s 'x_' !" @@ -674,6 +702,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -738,6 +772,14 @@ msgstr "%B - Puni naziv za mjesec." msgid "Type" msgstr "Tip" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -764,6 +806,19 @@ msgstr "Neispravan XML za izgradnju preglednog ekrana!" msgid "Cayman Islands" msgstr "Kajmanski otoci" +#. 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 "Poveznice" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -871,6 +926,16 @@ msgstr "Haiti" msgid "Search" msgstr "Pronađi" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -926,13 +991,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -965,6 +1030,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1012,7 +1083,7 @@ msgid "On Create" msgstr "Pri stvaranju" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1113,12 +1184,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "Dan: %(day)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Ne možete pristupiti ovoj vrsti dokumenta! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1158,8 +1223,8 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (kopija)" @@ -1237,7 +1302,7 @@ msgid "Formula" msgstr "Formula" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "Nije moguće obrisati root korisnika!" @@ -1248,7 +1313,8 @@ msgid "Malawi" msgstr "Malavi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1299,7 +1365,6 @@ msgstr "Stablo" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1327,6 +1392,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1378,7 +1449,7 @@ msgid "Bahamas" msgstr "BAhami" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1399,6 +1470,12 @@ msgstr "Irska" msgid "Number of modules updated" msgstr "Broj nadograđenih modula" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1474,6 +1551,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1546,7 +1629,7 @@ msgid "Madagascar" msgstr "Madagaskar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1632,12 +1715,6 @@ msgstr "Adresa e-pošte" msgid "French (BE) / Français (BE)" msgstr "Francuski (BE) / Français (BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Ne možete pisati u ovaj dokument! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1708,6 +1785,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1718,13 +1801,19 @@ msgstr "" msgid "Slovenia" msgstr "Slovenija" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1754,6 +1843,14 @@ msgstr "Datum završetka" msgid "New Zealand" msgstr "Novi Zeland" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1803,19 +1900,13 @@ msgstr "Graška! Ne može se stvoriti tvrtka s rekurzijom." msgid "Valid" msgstr "Vrijedi" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Ne možete brisati u ovaj dokument! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "Nije moguće nadograditi modul '%s'. Nije instaliran." @@ -1926,6 +2017,15 @@ msgstr "Signal (subflow.*)" msgid "HR sector" msgstr "" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1979,6 +2079,11 @@ msgstr "Međuzavisnosti" msgid "Main Company" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2065,8 +2170,9 @@ msgid "Sir" msgstr "G." #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2165,7 +2271,7 @@ msgid "Mayotte" msgstr "Majote" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "Navedite radnju za pokretanje !" @@ -2189,6 +2295,12 @@ msgstr "S desna na lijevo" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2209,7 +2321,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "Otkrivena je rekurzivnost" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "Rekurzivna greška u zavisnosti modula !" @@ -2234,6 +2352,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2286,11 +2409,6 @@ msgstr "" msgid "VAT" msgstr "VAT" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2327,20 +2445,28 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" " %s" msgstr "" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Naurujski" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2416,6 +2542,12 @@ msgstr "Pošalji SMS" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2473,7 +2605,7 @@ msgid "Ecuador" msgstr "Ekvador" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2544,7 +2676,7 @@ msgid "Action to Trigger" msgstr "Pokrenuti akciju" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2741,18 +2873,13 @@ msgstr "Autor" msgid "FYROM" msgstr "Makedonia" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Odgovarajući oblik datuma i vremena" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2798,7 +2925,7 @@ msgid "Rules" msgstr "Pravila" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2869,7 +2996,7 @@ msgid "Lesotho" msgstr "Lesoto" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "Nije moguće obrisati model '%s' !" @@ -2899,6 +3026,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "Dogodila se greška pri provjeri polja %s: %s" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2930,7 +3063,7 @@ msgid "Benin" msgstr "Benin" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2960,6 +3093,14 @@ msgstr "RML zaglavlje" msgid "API ID" msgstr "API Oznaka" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3205,6 +3346,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "Nikaragva" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3483,7 +3630,8 @@ msgid "Bank Type" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "" @@ -3505,7 +3653,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3523,7 +3671,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3555,7 +3703,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3630,6 +3780,11 @@ msgstr "" msgid "Cape Verde" msgstr "" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3643,6 +3798,12 @@ msgstr "" msgid "ir.actions.url" msgstr "" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3676,8 +3837,9 @@ msgid "French / Français" msgstr "Francuski / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" msgstr "" #. module: base @@ -3928,6 +4090,14 @@ msgstr "" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3966,8 +4136,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -3997,11 +4167,8 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" msgstr "" #. module: base @@ -4110,6 +4277,18 @@ msgstr "" msgid "Signature" msgstr "" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4131,7 +4310,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4172,8 +4351,10 @@ msgid "Contacts" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" msgstr "" #. module: base @@ -4203,6 +4384,12 @@ msgstr "" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4247,14 +4434,8 @@ msgid "Mongolia" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -4369,11 +4550,6 @@ msgstr "" msgid "Password" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4473,7 +4649,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4541,7 +4717,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4619,7 +4795,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4694,7 +4876,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4742,6 +4924,11 @@ msgstr "" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4856,6 +5043,14 @@ msgstr "" msgid "Nepal" msgstr "" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4885,14 +5080,14 @@ msgid "Update Modules List" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4911,6 +5106,12 @@ msgstr "" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5041,6 +5242,13 @@ msgstr "" msgid "Iteration" msgstr "" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5079,7 +5287,12 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "" @@ -5090,7 +5303,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5100,6 +5313,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5217,7 +5436,7 @@ msgid "ir.actions.todo" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5291,17 +5510,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5310,7 +5535,7 @@ msgid "Python Code" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "" @@ -5429,7 +5654,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5468,7 +5693,7 @@ msgid "" msgstr "Odaberite objekt na koje će akcija raditi (read, write, create)." #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5680,7 +5905,7 @@ msgid "Afghanistan, Islamic State of" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "" @@ -5701,6 +5926,12 @@ msgstr "" msgid "Kind" msgstr "" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5956,6 +6187,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5965,11 +6204,6 @@ msgstr "" msgid "Address" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6048,7 +6282,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6132,7 +6366,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6153,11 +6387,19 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6204,6 +6446,14 @@ msgstr "" msgid "Home Action" msgstr "Početna radnja" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6232,10 +6482,9 @@ msgid "Stop All" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6286,7 +6535,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6344,7 +6593,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6396,7 +6645,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6477,7 +6726,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6515,6 +6771,12 @@ msgstr "" msgid "Arguments" msgstr "" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6525,14 +6787,29 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" msgstr "" #. module: base @@ -6638,7 +6915,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6689,6 +6966,15 @@ msgstr "" msgid "Object" msgstr "" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6724,7 +7010,7 @@ msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6865,7 +7151,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6921,7 +7207,7 @@ msgid "Action Type" msgstr "Vrsta akcije" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7024,11 +7310,23 @@ msgstr "" msgid "workflow.instance" msgstr "" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7203,6 +7501,11 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7340,7 +7643,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7538,7 +7841,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7582,6 +7885,14 @@ msgstr "" msgid "Antigua and Barbuda" msgstr "" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7640,7 +7951,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7650,6 +7961,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7706,6 +8022,35 @@ msgstr "" msgid "Turkmenistan" msgstr "" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7834,7 +8179,7 @@ msgid "Internal Header/Footer" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7873,6 +8218,14 @@ msgstr "" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7896,7 +8249,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7943,11 +8296,18 @@ msgid "Low" msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7956,7 +8316,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8110,7 +8470,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8122,6 +8482,11 @@ msgstr "" msgid "Resource" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8133,7 +8498,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8145,6 +8510,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8269,7 +8642,7 @@ msgid "Azerbaijan" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "" @@ -8296,8 +8669,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" msgstr "" #. module: base @@ -8596,7 +8969,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8656,7 +9029,7 @@ msgid "Workflow Instances" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "" @@ -8727,17 +9100,9 @@ msgstr "Ruski / русский язык" #~ msgid "Unable to find a valid contract" #~ msgstr "Ne postoji valjani ugovor" -#, python-format -#~ msgid "Recursivity Detected." -#~ msgstr "Otkrivena je rekurzivnost" - #~ msgid "Unvalid" #~ msgstr "Nije valjan" -#, python-format -#~ msgid "Error occurred while validating the field(s) %s: %s" -#~ msgstr "Dogodila se greška pri provjeri polja %s: %s" - #~ msgid "Full" #~ msgstr "Pun" @@ -8824,6 +9189,10 @@ msgstr "Ruski / русский язык" #~ msgid "txt" #~ msgstr "txt" +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Ne možete izraditi ovu vrstu dokumenta! (%s)" + #~ msgid "Outgoing transitions" #~ msgstr "Izlazne poveznice" @@ -8969,6 +9338,10 @@ msgstr "Ruski / русский язык" #~ msgid "Simple domain setup" #~ msgstr "Pojednostavljene postavke domene" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Ne možete pristupiti ovoj vrsti dokumenta! (%s)" + #~ msgid "STOCK_FIND_AND_REPLACE" #~ msgstr "STOCK_FIND_AND_REPLACE" @@ -9052,6 +9425,10 @@ msgstr "Ruski / русский язык" #~ msgid "Configure User" #~ msgstr "Podešavanje korisnika" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Ne možete pisati u ovaj dokument! (%s)" + #~ msgid "My Closed Requests" #~ msgstr "Moji zatvoreni zahtjevi" @@ -9076,6 +9453,10 @@ msgstr "Ruski / русский язык" #~ msgid "right" #~ msgstr "desno" +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Ne možete brisati u ovaj dokument! (%s)" + #~ msgid "%S - Second as a decimal number [00,61]." #~ msgstr "%S - sekunda kao decimalni broj [00,61]." diff --git a/bin/addons/base/i18n/hu.po b/bin/addons/base/i18n/hu.po index dca70ff6b0c..3be1410e4f4 100644 --- a/bin/addons/base/i18n/hu.po +++ b/bin/addons/base/i18n/hu.po @@ -1,19 +1,19 @@ # Translation of OpenERP Server. # This file contains the translation of the following modules: -# * base -# +# * base +# Tamás Dénes , 2010. msgid "" msgstr "" -"Project-Id-Version: OpenERP Server 5.0.0\n" +"Project-Id-Version: OpenERP Server 6.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-28 07:26+0000\n" -"Last-Translator: NOVOTRADE SYSTEMHOUSE \n" -"Language-Team: \n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" +"PO-Revision-Date: 2011-01-01 23:14+0000\n" +"Last-Translator: Tamás Dénes \n" +"Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-29 04:39+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:00+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -23,7 +23,7 @@ msgstr "" #: field:ir.rule,domain_force:0 #: field:res.partner.title,domain:0 msgid "Domain" -msgstr "Domain" +msgstr "Tartomány" #. module: base #: model:res.country,name:base.sh @@ -38,7 +38,17 @@ msgstr "Egyéb beállítások" #. module: base #: selection:ir.property,type:0 msgid "DateTime" -msgstr "Dátum Idő" +msgstr "Dátum/Idő" + +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." #. module: base #: view:ir.values:0 @@ -52,16 +62,10 @@ msgstr "Metaadat" msgid "View Architecture" msgstr "Architektúra nézet" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Nem tudsz ilyen fájlt létrehozni! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" -msgstr "Kódolás (pl:en_US)" +msgstr "Kód (pl: hu_HU)" #. module: base #: view:workflow:0 @@ -76,12 +80,12 @@ msgstr "Munkafolyamat" #. module: base #: view:partner.sms.send:0 msgid "SMS - Gateway: clickatell" -msgstr "" +msgstr "SMS - Gateway: clickatell" #. module: base #: selection:base.language.install,lang:0 msgid "Hungarian / Magyar" -msgstr "Hungarian / Magyar" +msgstr "Magyar" #. module: base #: selection:ir.model.fields,select_level:0 @@ -91,23 +95,33 @@ msgstr "Nem kereshető" #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (VE) / Español (VE)" -msgstr "" +msgstr "Spanyol (VE)" #. module: base #: field:ir.actions.server,wkf_model_id:0 msgid "Workflow On" -msgstr "" +msgstr "Workflow On" #. module: base #: field:ir.actions.act_window,display_menu_tip:0 msgid "Display Menu Tips" -msgstr "" +msgstr "Display Menu Tips" #. module: base #: view:ir.module.module:0 msgid "Created Views" msgstr "Létrehozott nézetek" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,11 +138,10 @@ msgid "South Korea" msgstr "Dél-Korea" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "Fordítások" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "Constraint Error" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -138,7 +151,14 @@ msgstr "ir.ui.view.custom" #. module: base #: model:res.country,name:base.sz msgid "Swaziland" -msgstr "" +msgstr "Szváziföld" + +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "created." #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 @@ -146,17 +166,19 @@ msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" " %s" msgstr "" +"Néhány modul függ az eltávolítaní kívánt modultól: \n" +"%s" #. module: base #: field:ir.sequence,number_increment:0 msgid "Increment Number" -msgstr "" +msgstr "Increment Number" #. module: base #: model:ir.actions.act_window,name:base.action_res_company_tree @@ -167,21 +189,21 @@ msgstr "Cég struktúra" #. module: base #: selection:base.language.install,lang:0 msgid "Inuktitut / ᐃᓄᒃᑎᑐᑦ" -msgstr "" +msgstr "Inuktitut / ᐃᓄᒃᑎᑐᑦ" #. module: base #: view:res.partner:0 msgid "Search Partner" -msgstr "" +msgstr "Partner keresés" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" -msgstr "" +msgstr "email küldés lehetőségéhez \"SMTP szerver\"-t szükséges beállítani" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "új" @@ -189,50 +211,58 @@ msgstr "új" #. module: base #: field:ir.actions.report.xml,multi:0 msgid "On multiple doc." -msgstr "" +msgstr "Több dokumentumon" #. module: base #: field:ir.module.category,module_nr:0 msgid "Number of Modules" -msgstr "" +msgstr "Modulok száma" #. module: base #: help:multi_company.default,company_dest_id:0 msgid "Company to store the current record" -msgstr "" +msgstr "Company to store the current record" #. module: base #: field:res.partner.bank.type.field,size:0 msgid "Max. Size" -msgstr "" +msgstr "Max. méret" #. module: base #: field:res.partner.address,name:0 msgid "Contact Name" -msgstr "Kapcsolat neve" +msgstr "Kapcsolattartó neve" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " "text editor. The file encoding is UTF-8." msgstr "" +"Save this document to a %s file and edit it with a specific software or a " +"text editor. The file encoding is UTF-8." #. module: base #: sql_constraint:res.lang:0 msgid "The name of the language must be unique !" -msgstr "" +msgstr "A nyelv megnevezésnek egyedinek kell lennie!" #. module: base #: selection:res.request,state:0 msgid "active" -msgstr "" +msgstr "aktív" #. module: base #: field:ir.actions.wizard,wiz_name:0 msgid "Wizard Name" -msgstr "" +msgstr "Varázsló neve" + +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "Invalid group_by" #. module: base #: field:res.partner,credit_limit:0 @@ -242,107 +272,103 @@ msgstr "Hitelkeret" #. module: base #: field:ir.model.data,date_update:0 msgid "Update Date" -msgstr "" +msgstr "Módosítás dátuma" #. module: base #: view:ir.attachment:0 msgid "Owner" -msgstr "" +msgstr "Tulajdonos" #. module: base #: field:ir.actions.act_window,src_model:0 msgid "Source Object" -msgstr "" +msgstr "Forrás objektum" #. module: base #: view:ir.actions.todo:0 msgid "Config Wizard Steps" -msgstr "" +msgstr "Konfigurációs varázsló lépés" #. 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:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" -msgstr "" +msgstr "Widget" #. module: base #: view:ir.model.access:0 #: field:ir.model.access,group_id:0 #: view:res.config.users:0 msgid "Group" -msgstr "" +msgstr "Csoport" #. module: base #: field:ir.exports.line,name:0 #: field:ir.translation,name:0 #: field:res.partner.bank.type.field,name:0 msgid "Field Name" -msgstr "" +msgstr "Mező név" #. module: base #: wizard_view:server.action.create,init:0 #: wizard_field:server.action.create,init,type:0 msgid "Select Action Type" -msgstr "" +msgstr "Select Action Type" #. module: base #: model:res.country,name:base.tv msgid "Tuvalu" -msgstr "" +msgstr "Tuvalu" #. module: base #: selection:ir.model,state:0 msgid "Custom Object" -msgstr "" +msgstr "Egyedi objektum" #. module: base #: field:res.lang,date_format:0 msgid "Date Format" -msgstr "" +msgstr "Dátum formátum" #. module: base #: field:res.bank,email:0 #: field:res.partner.address,email:0 msgid "E-Mail" -msgstr "" +msgstr "E-Mail" #. module: base #: model:res.country,name:base.an msgid "Netherlands Antilles" -msgstr "" +msgstr "Holland Antillák" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " "created by OpenERP (updates, module installation, ...)" msgstr "" +"Az admin felhasználót nem lehet törölni, mivel a szoftver több funkciója ezt " +"használja (frissítések, modul telepítés, stb.)" #. module: base #: model:res.country,name:base.gf msgid "French Guyana" -msgstr "" +msgstr "Francia Guinea" #. module: base #: selection:base.language.install,lang:0 msgid "Greek / Ελληνικά" -msgstr "" +msgstr "Görög" #. module: base #: selection:base.language.install,lang:0 msgid "Bosnian / bosanski jezik" -msgstr "" - -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" +msgstr "Bosnyák" #. module: base #: help:ir.actions.report.xml,attachment_use:0 @@ -350,32 +376,46 @@ msgid "" "If you check this, then the second time the user prints with same attachment " "name, it returns the previous report." msgstr "" +"If you check this, then the second time the user prints with same attachment " +"name, it returns the previous report." + +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "The read method is not implemented on this object !" #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" -msgstr "" +msgstr "Az ISO kód a fordításokhoz használatos po file-ok neve" #. module: base #: field:ir.actions.todo,note:0 #: selection:ir.property,type:0 msgid "Text" -msgstr "" +msgstr "Text" #. module: base #: field:res.country,name:0 msgid "Country Name" -msgstr "Ország" +msgstr "Ország név" #. module: base #: model:res.country,name:base.co msgid "Colombia" -msgstr "" +msgstr "Kolumbia" #. module: base #: view:ir.module.module:0 msgid "Schedule Upgrade" -msgstr "" +msgstr "Schedule Upgrade" + +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "Key/value '%s' not found in selection field '%s'" #. module: base #: help:res.country,code:0 @@ -383,34 +423,37 @@ msgid "" "The ISO country code in two chars.\n" "You can use this field for quick search." msgstr "" +"Két betűs ISO kód.\n" +"Gyorskereséshez használható." #. module: base #: model:res.country,name:base.pw msgid "Palau" -msgstr "" +msgstr "Palau" #. module: base #: view:res.partner:0 msgid "Sales & Purchases" -msgstr "" +msgstr "Beszerzés, Értékesítés" #. module: base #: view:ir.translation:0 msgid "Untranslated" -msgstr "" +msgstr "Lefordítatlan" #. module: base #: help:ir.actions.act_window,context:0 msgid "" "Context dictionary as Python expression, empty by default (Default: {})" msgstr "" +"Context dictionary as Python expression, empty by default (Default: {})" #. module: base #: model:ir.actions.act_window,name:base.ir_action_wizard #: view:ir.actions.wizard:0 #: model:ir.ui.menu,name:base.menu_ir_action_wizard msgid "Wizards" -msgstr "" +msgstr "Varázslók" #. module: base #: model:res.partner.category,name:base.res_partner_category_miscellaneoussuppliers0 @@ -418,62 +461,63 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" -msgstr "" +msgstr "Egyedi mező nevének 'x_'-el kell kezdődnie!" #. module: base #: help:ir.actions.server,action_id:0 msgid "Select the Action Window, Report, Wizard to be executed." -msgstr "" +msgstr "Select the Action Window, Report, Wizard to be executed." #. module: base #: view:res.config.users:0 msgid "New User" -msgstr "" +msgstr "Új felhasználó" #. module: base #: view:base.language.export:0 msgid "Export done" -msgstr "" +msgstr "Exportálás kész." #. module: base #: view:ir.model:0 msgid "Model Description" -msgstr "" +msgstr "Model leírás" #. module: base #: help:ir.actions.act_window,src_model:0 msgid "" "Optional model name of the objects on which this action should be visible" msgstr "" +"Optional model name of the objects on which this action should be visible" #. module: base #: field:workflow.transition,trigger_expr_id:0 msgid "Trigger Expression" -msgstr "" +msgstr "Trigger Expression" #. module: base #: model:res.country,name:base.jo msgid "Jordan" -msgstr "" +msgstr "Jordánia" #. module: base #: view:ir.module.module:0 msgid "Certified" -msgstr "" +msgstr "Minősített" #. module: base #: model:res.country,name:base.er msgid "Eritrea" -msgstr "" +msgstr "Eritrea" #. module: base #: view:res.config:0 #: view:res.config.installer:0 msgid "description" -msgstr "" +msgstr "leírás" #. module: base #: model:ir.ui.menu,name:base.menu_base_action_rule @@ -483,17 +527,17 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_ir_actions_actions msgid "ir.actions.actions" -msgstr "" +msgstr "ir.actions.actions" #. module: base #: view:partner.wizard.ean.check:0 msgid "Want to check Ean ? " -msgstr "" +msgstr "Akarja az EAN-t ellenőrizni? " #. module: base #: field:ir.values,key2:0 msgid "Event Type" -msgstr "" +msgstr "Eseménytípus" #. module: base #: view:base.language.export:0 @@ -502,31 +546,34 @@ msgid "" "Launchpad.net, our open source project management facility. We use their " "online interface to synchronize all translations efforts." msgstr "" +"OpenERP translations (core, modules, clients) are managed through " +"Launchpad.net, our open source project management facility. We use their " +"online interface to synchronize all translations efforts." #. module: base #: field:res.partner,title:0 msgid "Partner Form" -msgstr "" +msgstr "Cégforma" #. module: base #: selection:base.language.install,lang:0 msgid "Swedish / svenska" -msgstr "" +msgstr "Svéd" #. module: base #: model:res.country,name:base.rs msgid "Serbia" -msgstr "" +msgstr "Szerbia" #. module: base #: selection:ir.translation,type:0 msgid "Wizard View" -msgstr "" +msgstr "Varázsló nézet" #. module: base #: model:res.country,name:base.kh msgid "Cambodia, Kingdom of" -msgstr "" +msgstr "Kambodzsai Királyság" #. module: base #: model:ir.actions.act_window,name:base.ir_sequence_form @@ -534,22 +581,22 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_ir_sequence_form #: model:ir.ui.menu,name:base.next_id_5 msgid "Sequences" -msgstr "" +msgstr "Sequences" #. module: base #: model:ir.model,name:base.model_base_language_import msgid "Language Import" -msgstr "" +msgstr "Language Import" #. module: base #: model:ir.model,name:base.model_res_config_users msgid "res.config.users" -msgstr "" +msgstr "res.config.users" #. module: base #: selection:base.language.install,lang:0 msgid "Albanian / Shqip" -msgstr "" +msgstr "Albánia" #. module: base #: model:ir.ui.menu,name:base.menu_crm_config_opportunity @@ -559,17 +606,18 @@ msgstr "" #. module: base #: model:ir.model,name:base.model_base_language_export msgid "base.language.export" -msgstr "" +msgstr "base.language.export" #. module: base #: model:res.country,name:base.pg msgid "Papua New Guinea" -msgstr "" +msgstr "Pápua Új-Guinea" #. module: base #: help:ir.actions.report.xml,report_type:0 msgid "Report Type, e.g. pdf, html, raw, sxw, odt, html2html, mako2html, ..." msgstr "" +"Jelentés tipu, pl. pdf, html, raw, sxw, odt, html2html, mako2html, ..." #. module: base #: model:res.partner.category,name:base.res_partner_category_4 @@ -579,39 +627,40 @@ msgstr "" #. module: base #: report:ir.module.reference.graph:0 msgid "," -msgstr "" +msgstr "," #. module: base #: view:res.partner:0 msgid "My Partners" -msgstr "" +msgstr "Partnereim" #. module: base #: view:ir.actions.report.xml:0 msgid "XML Report" -msgstr "" +msgstr "XML jelentés" #. module: base #: model:res.country,name:base.es msgid "Spain" -msgstr "" +msgstr "Spanyolország" #. module: base #: model:ir.ui.menu,name:base.menu_translation_export msgid "Import / Export" -msgstr "" +msgstr "Import / Export" #. module: base #: help:ir.actions.act_window,domain:0 msgid "" "Optional domain filtering of the destination data, as a Python expression" msgstr "" +"Optional domain filtering of the destination data, as a Python expression" #. module: base #: model:ir.actions.act_window,name:base.action_view_base_module_upgrade #: model:ir.model,name:base.model_base_module_upgrade msgid "Module Upgrade" -msgstr "" +msgstr "Module Upgrade" #. module: base #: view:res.config.users:0 @@ -619,11 +668,13 @@ msgid "" "Groups are used to define access rights on objects and the visibility of " "screens and menus" msgstr "" +"Groups are used to define access rights on objects and the visibility of " +"screens and menus" #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (UY) / Español (UY)" -msgstr "" +msgstr "Spanyol (UY)" #. module: base #: field:res.partner,mobile:0 @@ -634,28 +685,28 @@ msgstr "Mobil" #. module: base #: model:res.country,name:base.om msgid "Oman" -msgstr "" +msgstr "Omán" #. module: base #: model:ir.actions.act_window,name:base.action_payterm_form #: model:ir.model,name:base.model_res_payterm msgid "Payment term" -msgstr "" +msgstr "Fizetési feltétel" #. module: base #: model:res.country,name:base.nu msgid "Niue" -msgstr "" +msgstr "Niue" #. module: base #: selection:ir.cron,interval_type:0 msgid "Work Days" -msgstr "" +msgstr "Munkanapok" #. module: base #: selection:ir.module.module,license:0 msgid "Other OSI Approved Licence" -msgstr "" +msgstr "Other OSI Approved Licence" #. module: base #: help:res.config.users,context_lang:0 @@ -664,54 +715,62 @@ msgid "" "Sets the language for the user's user interface, when UI translations are " "available" msgstr "" +"A felhasználói felület nyelvét állítja be, amennyiben az adott nyelv " +"rendelkezésre áll." + +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "The unlink method is not implemented on this object !" #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 msgid "Create Menu" -msgstr "" +msgstr "Menü létrehozás" #. module: base #: model:res.country,name:base.in msgid "India" -msgstr "" +msgstr "India" #. module: base #: model:ir.actions.act_window,name:base.res_request_link-act #: model:ir.ui.menu,name:base.menu_res_request_link_act msgid "Request Reference Types" -msgstr "" +msgstr "Üzenet hivatkozás típusok" #. module: base #: view:ir.values:0 msgid "client_action_multi, client_action_relate" -msgstr "" +msgstr "client_action_multi, client_action_relate" #. module: base #: model:res.country,name:base.ad msgid "Andorra, Principality of" -msgstr "" +msgstr "Andorra" #. module: base #: field:ir.module.category,child_ids:0 #: field:res.partner.category,child_ids:0 msgid "Child Categories" -msgstr "" +msgstr "Child Categories" #. module: base #: model:ir.model,name:base.model_ir_config_parameter msgid "ir.config_parameter" -msgstr "" +msgstr "ir.config_parameter" #. module: base #: selection:base.language.export,format:0 msgid "TGZ Archive" -msgstr "" +msgstr "TGZ Archive" #. module: base #: view:res.lang:0 msgid "%B - Full month name." -msgstr "" +msgstr "%B - Hónap hosszú neve." #. module: base #: view:ir.attachment:0 @@ -727,12 +786,22 @@ msgstr "" #: view:res.partner:0 #: view:res.partner.address:0 msgid "Type" +msgstr "Típus" + +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." msgstr "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" -msgstr "" +msgstr "Guam (USA)" #. module: base #: model:ir.ui.menu,name:base.menu_hr_project @@ -743,63 +812,76 @@ msgstr "" #: selection:ir.actions.server,state:0 #: selection:workflow.activity,kind:0 msgid "Dummy" -msgstr "" +msgstr "Dummy" #. module: base #: constraint:ir.ui.view:0 msgid "Invalid XML for View Architecture!" -msgstr "" +msgstr "Invalid XML for View Architecture!" #. module: base #: model:res.country,name:base.ky msgid "Cayman Islands" -msgstr "" +msgstr "Kajmán-szigetek" + +#. 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 "Átmenetek" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "Record #%d of %s not found, cannot copy!" #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" -msgstr "" +msgstr "Contributors" #. module: base #: selection:ir.property,type:0 msgid "Char" -msgstr "" +msgstr "Karakter" #. module: base #: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_form #: model:ir.ui.menu,name:base.menu_publisher_warranty_contract msgid "Contracts" -msgstr "" +msgstr "Contracts" #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (AR) / Español (AR)" -msgstr "" +msgstr "Spanyol (AR)" #. module: base #: model:res.country,name:base.ug msgid "Uganda" -msgstr "" +msgstr "Uganda" #. module: base #: field:ir.model.access,perm_unlink:0 msgid "Delete Access" -msgstr "" +msgstr "Delete Access" #. module: base #: model:res.country,name:base.ne msgid "Niger" -msgstr "" +msgstr "Nigéria" #. module: base #: selection:base.language.install,lang:0 msgid "Chinese (HK)" -msgstr "" +msgstr "Kínai (HK)" #. module: base #: model:res.country,name:base.ba msgid "Bosnia-Herzegovina" -msgstr "" +msgstr "Bosznia-Hercegovina" #. module: base #: view:base.language.export:0 @@ -808,11 +890,14 @@ msgid "" "Lauchpad's web interface (Rosetta). If you need to perform mass translation, " "Launchpad also allows uploading full .po files at once" msgstr "" +"A hivatalos fordítások fejlesztéséhez és javításához a Launchpad webes " +"felületét ajánljuk. Nagyobb mennyiségű fordítás feltöltése .po file-okban is " +"lehetséges." #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (GT) / Español (GT)" -msgstr "" +msgstr "Spanyol (GT)" #. module: base #: view:res.lang:0 @@ -821,59 +906,77 @@ msgid "" "decimal number [00,53]. All days in a new year preceding the first Monday " "are considered to be in week 0." msgstr "" +"%W - A hét száma (0-53). Az év legelső hétfőjét megelőző napok a 0. hétnek " +"számítanak." #. module: base #: field:ir.module.module,website:0 #: field:res.partner,website:0 msgid "Website" -msgstr "" +msgstr "Honlap" #. module: base #: model:res.country,name:base.gs msgid "S. Georgia & S. Sandwich Isls." -msgstr "" +msgstr "Déli-Georgia és Déli-Sandwich-szigetek" #. module: base #: field:ir.actions.url,url:0 msgid "Action URL" -msgstr "" +msgstr "Action URL" #. module: base #: field:base.module.import,module_name:0 msgid "Module Name" -msgstr "" +msgstr "Modul név" #. module: base #: model:res.country,name:base.mh msgid "Marshall Islands" -msgstr "" +msgstr "Marshall-szigetek" #. module: base #: model:res.country,name:base.ht msgid "Haiti" -msgstr "" +msgstr "Haiti" #. module: base #: view:ir.ui.view:0 #: selection:ir.ui.view,type:0 msgid "Search" +msgstr "Keresés" + +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" msgstr "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" #. module: base #: view:ir.rule:0 msgid "" "2. Group-specific rules are combined together with a logical AND operator" msgstr "" +"2. A csoport-specifikus szabályok logikai ÉS kapcsolattal lesznek figyelembe " +"véve" #. module: base #: help:base.language.export,lang:0 msgid "To export a new language, do not select a language." -msgstr "" +msgstr "To export a new language, do not select a language." #. module: base #: view:res.request:0 msgid "Request Date" -msgstr "" +msgstr "Üzenet dátum" #. module: base #: model:ir.ui.menu,name:base.menu_hr_dasboard @@ -888,42 +991,42 @@ msgstr "" #. module: base #: model:res.country,name:base.md msgid "Moldavia" -msgstr "" +msgstr "Moldávia" #. module: base #: view:ir.module.module:0 msgid "Features" -msgstr "" +msgstr "Features" #. module: base #: view:ir.module.module:0 #: report:ir.module.reference.graph:0 msgid "Version" -msgstr "" +msgstr "Verzió" #. module: base #: view:ir.model.access:0 #: field:ir.model.access,perm_read:0 #: view:ir.rule:0 msgid "Read Access" -msgstr "" +msgstr "Read Access" #. module: base #: model:ir.model,name:base.model_ir_exports msgid "ir.exports" -msgstr "" +msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" -msgstr "" +msgstr "Nem létezik nyelv a \"%s\" kóddal" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." -msgstr "" +msgstr "Error during communication with the publisher warranty server." #. module: base #: help:ir.actions.server,email:0 @@ -932,16 +1035,19 @@ msgid "" "you select the invoice, then `object.invoice_address_id.email` is the field " "which gives the correct address" msgstr "" +"Provides the fields that will be used to fetch the email address, e.g. when " +"you select the invoice, then `object.invoice_address_id.email` is the field " +"which gives the correct address" #. module: base #: view:res.lang:0 msgid "%Y - Year with century." -msgstr "" +msgstr "%Y - Év évszázaddal" #. module: base #: report:ir.module.reference.graph:0 msgid "-" -msgstr "" +msgstr "-" #. module: base #: view:publisher_warranty.contract.wizard:0 @@ -950,28 +1056,37 @@ msgid "" "system. After the contract has been registered, you will be able to send " "issues directly to OpenERP." msgstr "" +"This wizard helps you register a publisher warranty contract in your OpenERP " +"system. After the contract has been registered, you will be able to send " +"issues directly to OpenERP." + +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "The search method is not implemented on this object !" #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" -msgstr "" +msgstr "Create _Menu" #. module: base #: field:res.payterm,name:0 msgid "Payment Term (short name)" -msgstr "" +msgstr "Fizetési feltételek (rövid név)" #. module: base #: model:ir.model,name:base.model_res_bank #: view:res.bank:0 #: field:res.partner.bank,bank:0 msgid "Bank" -msgstr "" +msgstr "Bank" #. module: base #: model:ir.model,name:base.model_ir_exports_line msgid "ir.exports.line" -msgstr "" +msgstr "ir.exports.line" #. module: base #: help:base.language.install,overwrite:0 @@ -979,38 +1094,42 @@ msgid "" "If you check this box, your customized translations will be overwritten and " "replaced by the official ones." msgstr "" +"Ha bejelölöd, akkor a hivatalos fordítások felül fogják írni az egyedi " +"fordításokat." #. module: base #: field:ir.actions.report.xml,report_rml:0 msgid "Main report file path" -msgstr "" +msgstr "Main report file path" #. module: base #: model:ir.actions.act_window,name:base.ir_action_report_xml #: field:ir.module.module,reports_by_module:0 #: model:ir.ui.menu,name:base.menu_ir_action_report_xml msgid "Reports" -msgstr "" +msgstr "Jelentések" #. module: base #: field:workflow,on_create:0 msgid "On Create" -msgstr "" +msgstr "On Create" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " "used to refer to other modules data, as in module.reference_id" msgstr "" +"'%s' contains too many dots. XML ids should not contain dots ! These are " +"used to refer to other modules data, as in module.reference_id" #. module: base #: field:partner.sms.send,user:0 #: field:res.config.users,login:0 #: field:res.users,login:0 msgid "Login" -msgstr "" +msgstr "Login" #. module: base #: view:ir.actions.server:0 @@ -1018,31 +1137,33 @@ msgid "" "Access all the fields related to the current object using expressions, i.e. " "object.partner_id.name " msgstr "" +"Access all the fields related to the current object using expressions, i.e. " +"object.partner_id.name " #. module: base #: model:ir.model,name:base.model_res_country_state msgid "Country state" -msgstr "" +msgstr "Country state" #. module: base #: selection:ir.property,type:0 msgid "Float" -msgstr "" +msgstr "Lebegőpontos" #. module: base #: model:ir.model,name:base.model_res_request_link msgid "res.request.link" -msgstr "" +msgstr "res.request.link" #. module: base #: field:ir.actions.wizard,name:0 msgid "Wizard Info" -msgstr "" +msgstr "Wizard Info" #. module: base #: model:res.country,name:base.km msgid "Comoros" -msgstr "" +msgstr "Comore-szigetek" #. module: base #: help:res.log,secondary:0 @@ -1050,11 +1171,13 @@ msgid "" "Do not display this log if it belongs to the same object the user is working " "on" msgstr "" +"Do not display this log if it belongs to the same object the user is working " +"on" #. module: base #: model:res.country,name:base.tp msgid "East Timor" -msgstr "" +msgstr "East Timor" #. module: base #: model:res.company,follow_up_msg:base.main_company @@ -1077,17 +1200,17 @@ msgstr "" #. module: base #: field:res.currency,accuracy:0 msgid "Computational Accuracy" -msgstr "" +msgstr "Számítási pontosság" #. module: base #: selection:base.language.install,lang:0 msgid "Sinhalese / සිංහල" -msgstr "" +msgstr "Sinhalese / සිංහල" #. 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 @@ -1097,13 +1220,7 @@ 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 "" +msgstr "Day: %(day)s" #. module: base #: model:ir.actions.act_window,help:base.open_module_tree @@ -1115,26 +1232,32 @@ msgid "" "schedule button in this list. Then, apply the schedule upgrade from Action " "menu once for all the ones you have scheduled for installation." msgstr "" +"List all certified modules available to configure your OpenERP. Modules that " +"are installed are flagged as such. You can search for a specific module " +"using the name or the description of the module. You do not need to install " +"modules one by one, you can install many at the same time by clicking on the " +"schedule button in this list. Then, apply the schedule upgrade from Action " +"menu once for all the ones you have scheduled for installation." #. module: base #: model:res.country,name:base.mv msgid "Maldives" -msgstr "" +msgstr "Maldives" #. module: base #: help:ir.values,res_id:0 msgid "Keep 0 if the action must appear on all resources." -msgstr "" +msgstr "Keep 0 if the action must appear on all resources." #. module: base #: model:ir.model,name:base.model_ir_rule msgid "ir.rule" -msgstr "" +msgstr "ir.rule" #. module: base #: selection:ir.cron,interval_type:0 msgid "Days" -msgstr "" +msgstr "Days" #. module: base #: help:ir.actions.server,condition:0 @@ -1142,18 +1265,20 @@ msgid "" "Condition that is to be tested before action is executed, e.g. " "object.list_price > object.cost_price" msgstr "" +"Condition that is to be tested before action is executed, e.g. " +"object.list_price > object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" -msgstr "" +msgstr " (másolat)" #. 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 #: view:res.partner:0 @@ -1165,13 +1290,13 @@ msgstr "Partnerek" #. module: base #: field:res.partner.category,parent_left:0 msgid "Left parent" -msgstr "" +msgstr "Left parent" #. module: base #: model:ir.actions.act_window,name:base.res_widget_act_window #: model:ir.ui.menu,name:base.menu_res_widget_act_window msgid "Homepage Widgets" -msgstr "" +msgstr "Homepage Widgets" #. module: base #: help:ir.actions.server,message:0 @@ -1179,6 +1304,8 @@ msgid "" "Specify the message. You can use the fields from the object. e.g. `Dear [[ " "object.partner_id.name ]]`" msgstr "" +"Specify the message. You can use the fields from the object. e.g. `Dear [[ " +"object.partner_id.name ]]`" #. module: base #: field:ir.attachment,res_model:0 @@ -1188,56 +1315,57 @@ msgstr "" #. module: base #: view:ir.rule:0 msgid "Domain Setup" -msgstr "" +msgstr "Domain Setup" #. module: base #: field:ir.actions.server,trigger_name:0 msgid "Trigger Name" -msgstr "" +msgstr "Trigger Name" #. 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 #: field:res.request,priority:0 #: field:res.request.link,priority:0 msgid "Priority" -msgstr "" +msgstr "Priority" #. module: base #: field:workflow.transition,act_from:0 msgid "Source Activity" -msgstr "" +msgstr "Source Activity" #. module: base #: view:ir.sequence:0 msgid "Legend (for prefix, suffix)" -msgstr "" +msgstr "Legend (for prefix, suffix)" #. module: base #: selection:ir.server.object.lines,type:0 msgid "Formula" -msgstr "" +msgstr "Formula" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" -msgstr "" +msgstr "Can not remove root user!" #. module: base #: model:res.country,name:base.mw msgid "Malawi" -msgstr "" +msgstr "Malawi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (másolat)" #. module: base #: field:res.partner.address,type:0 @@ -1247,7 +1375,7 @@ msgstr "Cím típusa" #. module: base #: view:ir.ui.menu:0 msgid "Full Path" -msgstr "" +msgstr "Full Path" #. module: base #: view:res.request:0 @@ -1261,16 +1389,19 @@ msgid "" "decimal number [00,53]. All days in a new year preceding the first Sunday " "are considered to be in week 0." msgstr "" +"%U - Week number of the year (Sunday as the first day of the week) as a " +"decimal number [00,53]. All days in a new year preceding the first Sunday " +"are considered to be in week 0." #. module: base #: view:ir.ui.view:0 msgid "Advanced" -msgstr "" +msgstr "Advanced" #. module: base #: model:res.country,name:base.fi msgid "Finland" -msgstr "" +msgstr "Finnország" #. module: base #: selection:ir.actions.act_window,view_type:0 @@ -1279,29 +1410,29 @@ msgstr "" #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Tree" -msgstr "" +msgstr "Tree" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" +"Keep empty if you don't want the user to be able to connect on the system." #. module: base #: view:ir.actions.server:0 msgid "Create / Write / Copy" -msgstr "" +msgstr "Create / Write / Copy" #. module: base #: view:base.language.export:0 msgid "https://help.launchpad.net/Translations" -msgstr "" +msgstr "https://help.launchpad.net/Translations" #. module: base #: field:ir.actions.act_window,view_mode:0 msgid "View Mode" -msgstr "" +msgstr "View Mode" #. module: base #: view:base.language.import:0 @@ -1309,23 +1440,31 @@ msgid "" "When using CSV format, please also check that the first line of your file is " "one of the following:" msgstr "" +"When using CSV format, please also check that the first line of your file is " +"one of the following:" + +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "Not implemented search_memory method !" #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window #: view:res.log:0 msgid "Logs" -msgstr "" +msgstr "Logs" #. module: base #: selection:base.language.install,lang:0 msgid "Spanish / Español" -msgstr "" +msgstr "Spanyol" #. module: base #: selection:base.language.install,lang:0 msgid "Korean (KP) / 한국어 (KP)" -msgstr "" +msgstr "Koreai (KP)" #. module: base #: view:base.module.update:0 @@ -1333,59 +1472,68 @@ msgid "" "This wizard will scan all module repositories on the server side to detect " "newly added modules as well as any change to existing modules." msgstr "" +"This wizard will scan all module repositories on the server side to detect " +"newly added modules as well as any change to existing modules." #. module: base #: field:res.company,logo:0 msgid "Logo" -msgstr "" +msgstr "Logo" #. module: base #: view:res.partner.address:0 msgid "Search Contact" -msgstr "" +msgstr "Partner keresés" #. module: base #: view:ir.module.module:0 msgid "Uninstall (beta)" -msgstr "" +msgstr "Eltávolít (beta)" #. module: base #: selection:ir.actions.act_window,target:0 #: selection:ir.actions.url,target:0 msgid "New Window" -msgstr "" +msgstr "Új ablak" #. module: base #: model:res.country,name:base.bs msgid "Bahamas" -msgstr "" +msgstr "Bahamas" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" msgstr "" +"Couldn't generate the next id because some partners have an alphabetic id !" #. module: base #: view:ir.attachment:0 msgid "Attachment" -msgstr "" +msgstr "Attachment" #. module: base #: model:res.country,name:base.ie msgid "Ireland" -msgstr "" +msgstr "írország" #. module: base #: field:base.module.update,update:0 msgid "Number of modules updated" -msgstr "" +msgstr "A frissített modulok száma" + +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "Not implemented set_memory method !" #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" -msgstr "" +msgstr "Workflow Activity" #. module: base #: view:ir.rule:0 @@ -1393,6 +1541,8 @@ msgid "" "Example: GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 AND " "GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" msgstr "" +"Example: GLOBAL_RULE_1 AND GLOBAL_RULE_2 AND ( (GROUP_A_RULE_1 AND " +"GROUP_A_RULE_2) OR (GROUP_B_RULE_1 AND GROUP_B_RULE_2) )" #. module: base #: model:ir.actions.act_window,help:base.action_ui_view @@ -1400,6 +1550,8 @@ msgid "" "Views allows you to personalize each view of OpenERP. You can add new " "fields, move fields, rename them or delete the ones that you do not need." msgstr "" +"Views allows you to personalize each view of OpenERP. You can add new " +"fields, move fields, rename them or delete the ones that you do not need." #. module: base #: field:ir.actions.act_window,groups_id:0 @@ -1420,12 +1572,12 @@ msgstr "" #: view:res.users:0 #: field:res.users,groups_id:0 msgid "Groups" -msgstr "" +msgstr "Csoportok" #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CL) / Español (CL)" -msgstr "" +msgstr "Spanyol (CL)" #. module: base #: view:res.config.users:0 @@ -1434,21 +1586,24 @@ msgid "" "access to selected functionalities within the system. Click on 'Done' if you " "do not wish to add more users at this stage, you can always do this later." msgstr "" +"Create additional users and assign them groups that will allow them to have " +"access to selected functionalities within the system. Click on 'Done' if you " +"do not wish to add more users at this stage, you can always do this later." #. module: base #: model:res.country,name:base.bz msgid "Belize" -msgstr "" +msgstr "Belize" #. module: base #: model:res.country,name:base.ge msgid "Georgia" -msgstr "" +msgstr "Grúzia" #. module: base #: model:res.country,name:base.pl msgid "Poland" -msgstr "" +msgstr "Lengyelország" #. module: base #: help:ir.actions.act_window,view_mode:0 @@ -1456,22 +1611,30 @@ msgid "" "Comma-separated list of allowed view modes, such as 'form', 'tree', " "'calendar', etc. (Default: tree,form)" msgstr "" +"Comma-separated list of allowed view modes, such as 'form', 'tree', " +"'calendar', etc. (Default: tree,form)" + +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "A document was modified since you last viewed it (%s:%d)" #. module: base #: view:workflow:0 msgid "Workflow Editor" -msgstr "" +msgstr "Munkafolyamat szerkesztő" #. module: base #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 msgid "To be removed" -msgstr "" +msgstr "To be removed" #. module: base #: model:ir.model,name:base.model_ir_sequence msgid "ir.sequence" -msgstr "" +msgstr "ir.sequence" #. module: base #: help:ir.actions.server,expression:0 @@ -1480,94 +1643,98 @@ msgid "" "order in Object, and you can have loop on the sales order line. Expression = " "`object.order_line`." msgstr "" +"Enter the field/expression that will return the list. E.g. select the sale " +"order in Object, and you can have loop on the sales order line. Expression = " +"`object.order_line`." #. module: base #: field:ir.property,fields_id:0 #: selection:ir.translation,type:0 #: field:multi_company.default,field_id:0 msgid "Field" -msgstr "" +msgstr "Field" #. module: base #: view:ir.rule:0 msgid "Groups (no group = global)" -msgstr "" +msgstr "Csoportok (globális, ha üres)" #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 #: selection:res.users,view:0 msgid "Simplified" -msgstr "" +msgstr "Simplified" #. module: base #: model:res.country,name:base.st msgid "Saint Tome (Sao Tome) and Principe" -msgstr "" +msgstr "Saint Tome (Sao Tome) and Principe" #. module: base #: selection:res.partner.address,type:0 msgid "Invoice" -msgstr "" +msgstr "Számlázási" #. module: base #: selection:base.language.install,lang:0 msgid "Portugese (BR) / Português (BR)" -msgstr "" +msgstr "Portugál (BR)" #. module: base #: model:res.country,name:base.bb msgid "Barbados" -msgstr "" +msgstr "Barbados" #. module: base #: model:res.country,name:base.mg msgid "Madagascar" -msgstr "" +msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" msgstr "" +"The Object name must start with x_ and not contain any special character !" #. module: base #: field:ir.actions.configuration.wizard,note:0 msgid "Next Wizard" -msgstr "" +msgstr "Következő varázsló" #. module: base #: model:ir.actions.act_window,name:base.action_menu_admin #: view:ir.ui.menu:0 #: field:ir.ui.menu,name:0 msgid "Menu" -msgstr "" +msgstr "Menü" #. module: base #: field:res.currency,rate:0 msgid "Current Rate" -msgstr "" +msgstr "Aktuális árfolyam" #. module: base #: field:ir.ui.view.custom,ref_id:0 msgid "Original View" -msgstr "" +msgstr "Original View" #. module: base #: view:ir.values:0 msgid "Action To Launch" -msgstr "" +msgstr "Action To Launch" #. module: base #: field:ir.actions.url,target:0 msgid "Action Target" -msgstr "" +msgstr "Action Target" #. module: base #: model:res.country,name:base.ai msgid "Anguilla" -msgstr "" +msgstr "Anguilla" #. module: base #: field:ir.ui.view_sc,name:0 @@ -1577,7 +1744,7 @@ msgstr "Billentyűkombináció neve" #. module: base #: help:ir.actions.act_window,limit:0 msgid "Default limit for the list view" -msgstr "" +msgstr "Default limit for the list view" #. module: base #: help:ir.actions.server,write_id:0 @@ -1585,100 +1752,97 @@ msgid "" "Provide the field name that the record id refers to for the write operation. " "If it is empty it will refer to the active id of the object." msgstr "" +"Provide the field name that the record id refers to for the write operation. " +"If it is empty it will refer to the active id of the object." #. module: base #: model:res.country,name:base.zw msgid "Zimbabwe" -msgstr "" +msgstr "Zimbabwe" #. module: base #: view:base.module.update:0 msgid "Please be patient, as this operation may take a few seconds..." -msgstr "" +msgstr "Please be patient, as this operation may take a few seconds..." #. module: base #: help:ir.values,action_id:0 msgid "This field is not used, it only helps you to select the right action." msgstr "" +"This field is not used, it only helps you to select the right action." #. module: base #: field:ir.actions.server,email:0 msgid "Email Address" -msgstr "" +msgstr "Email Address" #. module: base #: selection:base.language.install,lang:0 msgid "French (BE) / Français (BE)" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "" +msgstr "French (BE) / Français (BE)" #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 msgid "Server Action" -msgstr "" +msgstr "Server Action" #. module: base #: model:res.country,name:base.tt msgid "Trinidad and Tobago" -msgstr "" +msgstr "Trinidad and Tobago" #. module: base #: model:res.country,name:base.lv msgid "Latvia" -msgstr "" +msgstr "Latvia" #. module: base #: view:ir.values:0 msgid "Values" -msgstr "" +msgstr "Values" #. module: base #: view:ir.actions.server:0 msgid "Field Mappings" -msgstr "" +msgstr "Field Mappings" #. module: base #: view:base.language.export:0 msgid "Export Translations" -msgstr "" +msgstr "Export Translations" #. module: base #: model:ir.ui.menu,name:base.menu_custom msgid "Customization" -msgstr "" +msgstr "Testreszabás" #. module: base #: model:res.country,name:base.py msgid "Paraguay" -msgstr "" +msgstr "Paraguay" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window_close msgid "ir.actions.act_window_close" -msgstr "" +msgstr "ir.actions.act_window_close" #. module: base #: field:ir.server.object.lines,col1:0 msgid "Destination" -msgstr "" +msgstr "Destination" #. module: base #: model:res.country,name:base.lt msgid "Lithuania" -msgstr "" +msgstr "Lithuania" #. module: base #: model:ir.actions.act_window,name:base.action_view_partner_clear_ids #: model:ir.model,name:base.model_partner_clear_ids #: view:partner.clear.ids:0 msgid "Clear IDs" -msgstr "" +msgstr "Clear IDs" #. module: base #: help:ir.cron,model:0 @@ -1686,16 +1850,30 @@ msgid "" "Name of object whose function will be called when this scheduler will run. " "e.g. 'res.partener'" msgstr "" +"Name of object whose function will be called when this scheduler will run. " +"e.g. 'res.partener'" + +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "The perm_read method is not implemented on this object !" #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." -msgstr "" +msgstr "%y - Year without century [00,99]." #. module: base #: model:res.country,name:base.si msgid "Slovenia" -msgstr "" +msgstr "Slovenia" + +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "Invalid Object Architecture!" #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form @@ -1703,35 +1881,45 @@ msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" -msgstr "" +msgstr "Error!" #. module: base #: view:res.lang:0 msgid "%p - Equivalent of either AM or PM." -msgstr "" +msgstr "%p - Equivalent of either AM or PM." #. module: base #: view:ir.actions.server:0 msgid "Iteration Actions" -msgstr "" +msgstr "Iteration Actions" #. module: base #: help:multi_company.default,company_id:0 msgid "Company where the user is connected" -msgstr "" +msgstr "Company where the user is connected" #. module: base #: field:publisher_warranty.contract,date_stop:0 msgid "Ending Date" -msgstr "" +msgstr "Ending Date" #. module: base #: model:res.country,name:base.nz msgid "New Zealand" +msgstr "New Zealand" + +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." msgstr "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." #. module: base #: model:ir.actions.act_window,help:base.action_country @@ -1740,6 +1928,9 @@ msgid "" "partner records. You can create or delete countries to make sure the ones " "you are working on will be maintained." msgstr "" +"Display and manage the list of all countries that can be assigned to your " +"partner records. You can create or delete countries to make sure the ones " +"you are working on will be maintained." #. module: base #: model:res.partner.category,name:base.res_partner_category_7 @@ -1749,12 +1940,12 @@ msgstr "" #. module: base #: model:res.country,name:base.nf msgid "Norfolk Island" -msgstr "" +msgstr "Norfolk Island" #. module: base #: selection:base.language.install,lang:0 msgid "Korean (KR) / 한국어 (KR)" -msgstr "" +msgstr "Korean (KR) / 한국어 (KR)" #. module: base #: model:res.widget,title:base.matrixise_twitter_widget @@ -1765,83 +1956,77 @@ msgstr "" #: field:ir.actions.server,action_id:0 #: selection:ir.actions.server,state:0 msgid "Client Action" -msgstr "" +msgstr "Client Action" #. module: base #: model:res.country,name:base.bd msgid "Bangladesh" -msgstr "" +msgstr "Bangladesh" #. module: base #: constraint:res.company:0 msgid "Error! You can not create recursive companies." -msgstr "" +msgstr "Error! You can not create recursive companies." #. module: base #: selection:publisher_warranty.contract,state:0 msgid "Valid" -msgstr "" - -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "" +msgstr "Valid" #. module: base #: selection:ir.translation,type:0 msgid "XSL" -msgstr "" +msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." -msgstr "" +msgstr "Can not upgrade module '%s'. It is not installed." #. module: base #: model:res.country,name:base.cu msgid "Cuba" -msgstr "" +msgstr "Cuba" #. module: base #: model:res.country,name:base.am msgid "Armenia" -msgstr "" +msgstr "Armenia" #. module: base #: model:ir.actions.act_window,name:base.ir_property_form #: model:ir.ui.menu,name:base.menu_ir_property_form_all msgid "Configuration Parameters" -msgstr "" +msgstr "Configuration Parameters" #. module: base #: constraint:ir.cron:0 msgid "Invalid arguments" -msgstr "" +msgstr "Invalid arguments" #. module: base #: model:res.country,name:base.se msgid "Sweden" -msgstr "" +msgstr "Sweden" #. module: base #: selection:ir.actions.act_window.view,view_mode:0 #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Gantt" -msgstr "" +msgstr "Gantt" #. module: base #: view:ir.property:0 msgid "Property" -msgstr "" +msgstr "Property" #. module: base #: model:ir.model,name:base.model_res_partner_bank_type #: view:res.partner.bank.type:0 msgid "Bank Account Type" -msgstr "" +msgstr "Bank Account Type" #. module: base #: field:base.language.export,config_logo:0 @@ -1858,29 +2043,29 @@ msgstr "" #: field:res.config.users,config_logo:0 #: field:res.config.view,config_logo:0 msgid "Image" -msgstr "" +msgstr "Image" #. module: base #: view:ir.actions.server:0 msgid "Iteration Action Configuration" -msgstr "" +msgstr "Iteration Action Configuration" #. module: base #: selection:publisher_warranty.contract,state:0 msgid "Canceled" -msgstr "" +msgstr "Canceled" #. module: base #: model:res.country,name:base.at msgid "Austria" -msgstr "" +msgstr "Austria" #. module: base #: selection:base.language.install,state:0 #: selection:base.module.import,state:0 #: selection:base.module.update,state:0 msgid "done" -msgstr "" +msgstr "done" #. module: base #: selection:ir.actions.act_window.view,view_mode:0 @@ -1888,39 +2073,51 @@ msgstr "" #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Calendar" -msgstr "" +msgstr "Calendar" #. module: base #: field:res.partner.address,partner_id:0 msgid "Partner Name" -msgstr "" +msgstr "Partner név" #. module: base #: field:workflow.activity,signal_send:0 msgid "Signal (subflow.*)" -msgstr "" +msgstr "Signal (subflow.*)" #. module: base #: model:res.partner.category,name:base.res_partner_category_17 msgid "HR sector" msgstr "" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" -msgstr "" +msgstr "Module dependency" #. module: base #: selection:publisher_warranty.contract.wizard,state:0 msgid "Draft" -msgstr "" +msgstr "Draft" #. module: base #: selection:res.config.users,view:0 #: selection:res.config.view,view:0 #: selection:res.users,view:0 msgid "Extended" -msgstr "" +msgstr "Extended" #. module: base #: model:ir.actions.act_window,help:base.action_partner_title_contact @@ -1929,52 +2126,62 @@ msgid "" "way you want to print them in letters and other documents. Some example: " "Mr., Mrs. " msgstr "" +"Manage the contact titles you want to have available in your system and the " +"way you want to print them in letters and other documents. Some example: " +"Mr., Mrs. " #. module: base #: field:res.company,rml_footer1:0 msgid "Report Footer 1" -msgstr "" +msgstr "Report Footer 1" #. module: base #: field:res.company,rml_footer2:0 msgid "Report Footer 2" -msgstr "" +msgstr "Report Footer 2" #. module: base #: view:ir.model.access:0 #: view:res.groups:0 #: field:res.groups,model_access:0 msgid "Access Controls" -msgstr "" +msgstr "Access Controls" #. module: base #: view:ir.module.module:0 #: field:ir.module.module,dependencies_id:0 msgid "Dependencies" -msgstr "" +msgstr "Dependencies" #. module: base #: field:multi_company.default,company_id:0 msgid "Main Company" msgstr "Anyagcég" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "Web Icon File (hover)" + #. module: base #: view:ir.actions.server:0 msgid "" "If you use a formula type, use a python expression using the variable " "'object'." msgstr "" +"If you use a formula type, use a python expression using the variable " +"'object'." #. module: base #: field:res.partner.address,birthdate:0 msgid "Birthdate" -msgstr "" +msgstr "Születésnap" #. module: base #: model:ir.actions.act_window,name:base.action_partner_title_contact #: model:ir.ui.menu,name:base.menu_partner_title_contact msgid "Contact Titles" -msgstr "" +msgstr "Contact Titles" #. module: base #: view:base.language.import:0 @@ -1982,92 +2189,95 @@ msgid "" "Please double-check that the file encoding is set to UTF-8 (sometimes called " "Unicode) when the translator exports it." msgstr "" +"Please double-check that the file encoding is set to UTF-8 (sometimes called " +"Unicode) when the translator exports it." #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (DO) / Español (DO)" -msgstr "" +msgstr "Spanish (DO) / Español (DO)" #. module: base #: model:ir.model,name:base.model_workflow_activity msgid "workflow.activity" -msgstr "" +msgstr "workflow.activity" #. module: base #: field:ir.model.fields,select_level:0 msgid "Searchable" -msgstr "" +msgstr "Searchable" #. module: base #: model:res.country,name:base.uy msgid "Uruguay" -msgstr "" +msgstr "Uruguay" #. module: base #: selection:base.language.install,lang:0 msgid "Finnish / Suomi" -msgstr "" +msgstr "Finnish / Suomi" #. module: base #: field:ir.rule,perm_write:0 msgid "Apply For Write" -msgstr "" +msgstr "Apply For Write" #. module: base #: field:ir.sequence,prefix:0 msgid "Prefix" -msgstr "" +msgstr "Prefix" #. module: base #: selection:base.language.install,lang:0 msgid "German / Deutsch" -msgstr "" +msgstr "German / Deutsch" #. module: base #: help:ir.actions.server,trigger_name:0 msgid "Select the Signal name that is to be used as the trigger." -msgstr "" +msgstr "Select the Signal name that is to be used as the trigger." #. module: base #: view:ir.actions.server:0 msgid "Fields Mapping" -msgstr "" +msgstr "Fields Mapping" #. module: base #: selection:base.language.install,lang:0 msgid "Portugese / Português" -msgstr "" +msgstr "Portugese / Português" #. module: base #: model:res.partner.title,name:base.res_partner_title_sir msgid "Sir" -msgstr "" +msgstr "Sir" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" -msgstr "" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" +msgstr "There is no view of type '%s' defined for the structure!" #. module: base #: field:ir.default,ref_id:0 msgid "ID Ref." -msgstr "" +msgstr "ID Ref." #. module: base #: model:ir.actions.server,name:base.action_start_configurator #: model:ir.ui.menu,name:base.menu_view_base_module_configuration msgid "Start Configuration" -msgstr "" +msgstr "Start Configuration" #. module: base #: model:res.country,name:base.mt msgid "Malta" -msgstr "" +msgstr "Malta" #. module: base #: field:ir.actions.server,fields_lines:0 msgid "Field Mappings." -msgstr "" +msgstr "Field Mappings." #. module: base #: model:ir.model,name:base.model_ir_module_module @@ -2077,7 +2287,7 @@ msgstr "" #: field:ir.module.module.dependency,module_id:0 #: report:ir.module.reference.graph:0 msgid "Module" -msgstr "" +msgstr "Module" #. module: base #: field:ir.attachment,description:0 @@ -2088,28 +2298,28 @@ msgstr "" #: field:res.partner.event,description:0 #: view:res.request:0 msgid "Description" -msgstr "" +msgstr "Description" #. module: base #: model:ir.actions.act_window,name:base.action_workflow_instance_form #: model:ir.ui.menu,name:base.menu_workflow_instance msgid "Instances" -msgstr "" +msgstr "Instances" #. module: base #: model:res.country,name:base.aq msgid "Antarctica" -msgstr "" +msgstr "Antarctica" #. module: base #: field:ir.actions.report.xml,auto:0 msgid "Custom python parser" -msgstr "" +msgstr "Custom python parser" #. module: base #: view:base.language.import:0 msgid "_Import" -msgstr "" +msgstr "_Import" #. module: base #: view:res.partner.canal:0 @@ -2119,45 +2329,45 @@ msgstr "Csatorna" #. module: base #: field:res.lang,grouping:0 msgid "Separator Format" -msgstr "" +msgstr "Separator Format" #. module: base #: selection:publisher_warranty.contract,state:0 msgid "Unvalidated" -msgstr "" +msgstr "Unvalidated" #. module: base #: model:ir.ui.menu,name:base.next_id_9 msgid "Database Structure" -msgstr "" +msgstr "Adatbázis struktúra" #. module: base #: model:ir.actions.act_window,name:base.action_partner_mass_mail #: model:ir.model,name:base.model_partner_wizard_spam #: view:partner.wizard.spam:0 msgid "Mass Mailing" -msgstr "" +msgstr "Email küldés" #. module: base #: model:res.country,name:base.yt msgid "Mayotte" -msgstr "" +msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" -msgstr "" +msgstr "Please specify an action to launch !" #. module: base #: view:res.payterm:0 msgid "Payment Term" -msgstr "" +msgstr "Payment Term" #. module: base #: selection:res.lang,direction:0 msgid "Right-to-Left" -msgstr "" +msgstr "Right-to-Left" #. module: base #: view:ir.actions.act_window:0 @@ -2166,32 +2376,44 @@ msgstr "" #: model:ir.model,name:base.model_ir_filters #: model:ir.ui.menu,name:base.menu_ir_filters msgid "Filters" -msgstr "" +msgstr "Filters" + +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "Please check that all your lines have %d columns." #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 #: model:ir.ui.menu,name:base.menu_ir_cron_act msgid "Scheduled Actions" -msgstr "" +msgstr "Scheduled Actions" #. module: base #: field:res.partner.address,title:0 #: field:res.partner.title,name:0 #: field:res.widget,title:0 msgid "Title" -msgstr "Pozíció" +msgstr "Megsz." #. module: base #: help:ir.property,res_id:0 msgid "If not set, acts as a default value for new resources" -msgstr "" +msgstr "If not set, acts as a default value for new resources" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "Recursivity Detected." + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" -msgstr "" +msgstr "Recursion error in modules dependencies !" #. module: base #: view:base.language.install:0 @@ -2200,11 +2422,14 @@ msgid "" "loading a new language it becomes available as default interface language " "for users and partners." msgstr "" +"This wizard helps you add a new language to your OpenERP system. After " +"loading a new language it becomes available as default interface language " +"for users and partners." #. module: base #: view:ir.model:0 msgid "Create a Menu" -msgstr "" +msgstr "Create a Menu" #. module: base #: help:res.partner,vat:0 @@ -2212,122 +2437,136 @@ msgid "" "Value Added Tax number. Check the box if the partner is subjected to the " "VAT. Used by the VAT legal statement." msgstr "" +"Value Added Tax number. Check the box if the partner is subjected to the " +"VAT. Used by the VAT legal statement." + +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "maintenance.contract" #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" -msgstr "" +msgstr "Russian Federation" #. module: base #: selection:base.language.install,lang:0 msgid "Urdu / اردو" -msgstr "" +msgstr "Urdu / اردو" #. module: base #: field:res.company,name:0 msgid "Company Name" -msgstr "" +msgstr "Company Name" #. module: base #: model:ir.actions.act_window,name:base.action_country #: model:ir.ui.menu,name:base.menu_country_partner msgid "Countries" -msgstr "" +msgstr "Countries" #. module: base #: selection:ir.translation,type:0 msgid "RML (deprecated - use Report)" -msgstr "" +msgstr "RML (deprecated - use Report)" #. module: base #: view:ir.rule:0 msgid "Record rules" -msgstr "" +msgstr "Record rules" #. module: base #: view:ir.property:0 msgid "Field Information" -msgstr "" +msgstr "Field Information" #. module: base #: view:ir.actions.todo:0 msgid "Search Actions" -msgstr "" +msgstr "Search Actions" #. module: base #: model:ir.actions.act_window,name:base.action_view_partner_wizard_ean_check #: view:partner.wizard.ean.check:0 msgid "Ean check" -msgstr "" +msgstr "Ean check" #. module: base #: field:res.partner,vat:0 msgid "VAT" msgstr "ÁFA" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" -msgstr "" +msgstr "12. %w ==> 5 ( Friday is the 6th day)" #. module: base #: constraint:res.partner.category:0 msgid "Error ! You can not create recursive categories." -msgstr "" +msgstr "Error ! You can not create recursive categories." #. module: base #: view:res.lang:0 msgid "%x - Appropriate date representation." -msgstr "" +msgstr "%x - Appropriate date representation." #. module: base #: view:res.lang:0 msgid "%d - Day of the month [01,31]." -msgstr "" +msgstr "%d - Day of the month [01,31]." #. module: base #: model:res.country,name:base.tj msgid "Tajikistan" -msgstr "" +msgstr "Tajikistan" #. module: base #: selection:ir.module.module,license:0 msgid "GPL-2 or later version" -msgstr "" +msgstr "GPL-2 or later version" #. module: base #: model:res.partner.title,shortcut:base.res_partner_title_sir msgid "M." -msgstr "" +msgstr "M." #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" " %s" msgstr "" +"Can not create the module file:\n" +" %s" + +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." #. module: base #: model:res.country,name:base.nr msgid "Nauru" -msgstr "" +msgstr "Nauru" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" -msgstr "" +msgstr "The certificate ID of the module must be unique !" #. 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 @@ -2336,17 +2575,17 @@ msgstr "" #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Form" -msgstr "" +msgstr "Form" #. module: base #: model:res.country,name:base.me msgid "Montenegro" -msgstr "" +msgstr "Montenegro" #. module: base #: view:ir.cron:0 msgid "Technical Data" -msgstr "" +msgstr "Technical Data" #. module: base #: view:res.partner:0 @@ -2361,76 +2600,86 @@ msgid "" "import a language pack from here. Other OpenERP languages than the official " "ones can be found on launchpad." msgstr "" +"If you need another language than the official ones available, you can " +"import a language pack from here. Other OpenERP languages than the official " +"ones can be found on launchpad." #. module: base #: view:ir.module.module:0 #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 msgid "To be upgraded" -msgstr "" +msgstr "To be upgraded" #. module: base #: model:res.country,name:base.ly msgid "Libya" -msgstr "" +msgstr "Libya" #. module: base #: model:res.country,name:base.cf msgid "Central African Republic" -msgstr "" +msgstr "Central African Republic" #. module: base #: model:res.country,name:base.li msgid "Liechtenstein" -msgstr "" +msgstr "Liechtenstein" #. module: base #: model:ir.model,name:base.model_partner_sms_send #: view:partner.sms.send:0 msgid "Send SMS" -msgstr "" +msgstr "Send SMS" #. module: base #: field:res.partner,ean13:0 msgid "EAN13" -msgstr "" +msgstr "EAN13" + +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "Invalid Architecture!" #. module: base #: model:res.country,name:base.pt msgid "Portugal" -msgstr "" +msgstr "Portugal" #. module: base #: sql_constraint:ir.model.data:0 msgid "" "You cannot have multiple records with the same id for the same module !" msgstr "" +"You cannot have multiple records with the same id for the same module !" #. module: base #: field:ir.module.module,certificate:0 msgid "Quality Certificate" -msgstr "" +msgstr "Quality Certificate" #. module: base #: view:res.lang:0 msgid "6. %d, %m ==> 05, 12" -msgstr "" +msgstr "6. %d, %m ==> 05, 12" #. module: base #: field:res.config.users,date:0 #: field:res.users,date:0 msgid "Last Connection" -msgstr "" +msgstr "Last Connection" #. module: base #: field:ir.actions.act_window,help:0 msgid "Action description" -msgstr "" +msgstr "Action description" #. module: base #: help:res.partner,customer:0 msgid "Check this box if the partner is a customer." -msgstr "" +msgstr "Jelöld be, ha a partner vevő." #. module: base #: model:ir.actions.act_window,name:base.res_lang_act_window @@ -2438,27 +2687,30 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_res_lang_act_window #: view:res.lang:0 msgid "Languages" -msgstr "" +msgstr "Languages" #. module: base #: selection:workflow.activity,join_mode:0 #: selection:workflow.activity,split_mode:0 msgid "Xor" -msgstr "" +msgstr "Xor" #. module: base #: model:res.country,name:base.ec msgid "Ecuador" -msgstr "" +msgstr "Ecuador" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " "spreadsheet software. The file encoding is UTF-8. You have to translate the " "latest column before reimporting it." msgstr "" +"Save this document to a .CSV file and open it with your favourite " +"spreadsheet software. The file encoding is UTF-8. You have to translate the " +"latest column before reimporting it." #. module: base #: model:ir.actions.act_window,name:base.action_partner_customer_form @@ -2466,12 +2718,12 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_partner_form #: view:res.partner:0 msgid "Customers" -msgstr "" +msgstr "Customers" #. module: base #: model:res.country,name:base.au msgid "Australia" -msgstr "" +msgstr "Australia" #. module: base #: help:res.partner,lang:0 @@ -2479,82 +2731,85 @@ 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 "" +"Ha a kiválasztott nyelv a rendszerben használatban van, akkor minden e " +"partnerhez kapcsolódó dokumentum ezen a nyelven lesz nyomtatva, egyébként " +"pedig angolul." #. module: base #: report:ir.module.reference.graph:0 msgid "Menu :" -msgstr "" +msgstr "Menu :" #. module: base #: selection:ir.model.fields,state:0 msgid "Base Field" -msgstr "" +msgstr "Base Field" #. module: base #: view:publisher_warranty.contract:0 msgid "Validate" -msgstr "" +msgstr "Validate" #. module: base #: field:ir.actions.todo,restart:0 msgid "Restart" -msgstr "" +msgstr "Restart" #. module: base #: field:ir.actions.report.xml,report_sxw_content:0 #: field:ir.actions.report.xml,report_sxw_content_data:0 msgid "SXW content" -msgstr "" +msgstr "SXW content" #. module: base #: view:ir.actions.wizard:0 #: field:wizard.ir.model.menu.create.line,wizard_id:0 msgid "Wizard" -msgstr "" +msgstr "Wizard" #. module: base #: view:ir.cron:0 msgid "Action to Trigger" -msgstr "" +msgstr "Action to Trigger" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" -msgstr "" +msgstr "\"email_from\" needs to be set to send welcome mails to users" #. module: base #: selection:ir.translation,type:0 msgid "Constraint" -msgstr "" +msgstr "Constraint" #. module: base #: selection:ir.values,key:0 #: selection:res.partner.address,type:0 msgid "Default" -msgstr "" +msgstr "Default" #. module: base #: view:ir.model.fields:0 #: field:ir.model.fields,required:0 #: field:res.partner.bank.type.field,required:0 msgid "Required" -msgstr "" +msgstr "Required" #. module: base #: view:res.users:0 msgid "Default Filters" -msgstr "" +msgstr "Default Filters" #. module: base #: field:res.request.history,name:0 msgid "Summary" -msgstr "" +msgstr "Summary" #. module: base #: field:multi_company.default,expression:0 msgid "Expression" -msgstr "" +msgstr "Expression" #. module: base #: help:ir.actions.server,subject:0 @@ -2562,11 +2817,13 @@ msgid "" "Specify the subject. You can use fields from the object, e.g. `Hello [[ " "object.partner_id.name ]]`" msgstr "" +"Specify the subject. You can use fields from the object, e.g. `Hello [[ " +"object.partner_id.name ]]`" #. module: base #: view:res.company:0 msgid "Header/Footer" -msgstr "" +msgstr "Header/Footer" #. module: base #: help:ir.actions.act_window,help:0 @@ -2574,21 +2831,23 @@ msgid "" "Optional help text for the users with a description of the target view, such " "as its usage and purpose." msgstr "" +"Optional help text for the users with a description of the target view, such " +"as its usage and purpose." #. module: base #: model:res.country,name:base.va msgid "Holy See (Vatican City State)" -msgstr "" +msgstr "Vatikánváros" #. module: base #: field:base.module.import,module_file:0 msgid "Module .ZIP file" -msgstr "" +msgstr "Module .ZIP file" #. module: base #: field:ir.ui.view,xml_id:0 msgid "XML ID" -msgstr "" +msgstr "XML ID" #. module: base #: model:res.partner.category,name:base.res_partner_category_16 @@ -2598,23 +2857,23 @@ msgstr "" #. module: base #: field:workflow.transition,trigger_model:0 msgid "Trigger Object" -msgstr "" +msgstr "Trigger Object" #. module: base #: view:res.users:0 msgid "Current Activity" -msgstr "" +msgstr "Current Activity" #. module: base #: view:workflow.activity:0 #: field:workflow.activity,in_transitions:0 msgid "Incoming Transitions" -msgstr "" +msgstr "Incoming Transitions" #. module: base #: model:res.country,name:base.sr msgid "Suriname" -msgstr "" +msgstr "Suriname" #. module: base #: model:ir.ui.menu,name:base.marketing_menu @@ -2625,47 +2884,47 @@ msgstr "" #: view:res.partner.bank:0 #: model:res.partner.bank.type,name:base.bank_normal msgid "Bank account" -msgstr "" +msgstr "Bankszámla" #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (HN) / Español (HN)" -msgstr "" +msgstr "Spanish (HN) / Español (HN)" #. module: base #: view:ir.sequence.type:0 msgid "Sequence Type" -msgstr "" +msgstr "Sequence Type" #. module: base #: selection:base.language.install,lang:0 msgid "Hindi / हिंदी" -msgstr "" +msgstr "Hindi / हिंदी" #. module: base #: field:ir.module.module,license:0 msgid "License" -msgstr "" +msgstr "License" #. module: base #: field:ir.attachment,url:0 msgid "Url" -msgstr "" +msgstr "Url" #. module: base #: selection:ir.actions.todo,restart:0 msgid "Always" -msgstr "" +msgstr "Always" #. module: base #: selection:ir.translation,type:0 msgid "SQL Constraint" -msgstr "" +msgstr "SQL Constraint" #. module: base #: field:ir.actions.server,srcmodel_id:0 msgid "Model" -msgstr "" +msgstr "Model" #. module: base #: view:base.language.install:0 @@ -2673,84 +2932,84 @@ msgid "" "The selected language has been successfully installed. You must change the " "preferences of the user and open a new menu to view the changes." msgstr "" +"The selected language has been successfully installed. You must change the " +"preferences of the user and open a new menu to view the changes." #. module: base #: sql_constraint:ir.config_parameter:0 msgid "Key must be unique." -msgstr "" +msgstr "Key must be unique." #. module: base #: view:ir.actions.act_window:0 msgid "Open a Window" -msgstr "" +msgstr "Open a Window" #. module: base #: model:res.country,name:base.gq msgid "Equatorial Guinea" -msgstr "" +msgstr "Equatorial Guinea" #. module: base #: view:base.module.import:0 #: model:ir.actions.act_window,name:base.action_view_base_module_import msgid "Module Import" -msgstr "" +msgstr "Module Import" #. module: base #: field:res.bank,zip:0 #: field:res.partner.address,zip:0 #: field:res.partner.bank,zip:0 msgid "Zip" -msgstr "" +msgstr "Zip" #. module: base #: view:ir.module.module:0 #: field:ir.module.module,author:0 msgid "Author" -msgstr "" +msgstr "Author" #. module: base #: model:res.country,name:base.mk msgid "FYROM" -msgstr "" - -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "" +msgstr "FYROM" #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." -msgstr "" +msgstr "%c - Appropriate date and time representation." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" "\n" "Click 'Continue' and enjoy your OpenERP experience..." msgstr "" +"Your database is now fully configured.\n" +"\n" +"Click 'Continue' and enjoy your OpenERP experience..." #. module: base #: selection:base.language.install,lang:0 msgid "Hebrew / עִבְרִי" -msgstr "" +msgstr "Hebrew / עִבְרִי" #. module: base #: model:res.country,name:base.bo msgid "Bolivia" -msgstr "" +msgstr "Bolivia" #. module: base #: model:res.country,name:base.gh msgid "Ghana" -msgstr "" +msgstr "Ghana" #. module: base #: field:res.lang,direction:0 msgid "Direction" -msgstr "" +msgstr "Direction" #. module: base #: view:ir.actions.act_window:0 @@ -2761,35 +3020,36 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_action_ui_view #: view:ir.ui.view:0 msgid "Views" -msgstr "" +msgstr "Views" #. module: base #: view:res.groups:0 #: field:res.groups,rule_groups:0 msgid "Rules" -msgstr "" +msgstr "Rules" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" -msgstr "" +msgstr "You try to remove a module that is installed or will be installed" #. module: base #: help:ir.values,key2:0 msgid "" "The kind of action or button in the client side that will trigger the action." msgstr "" +"The kind of action or button in the client side that will trigger the action." #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (PR) / Español (PR)" -msgstr "" +msgstr "Spanish (PR) / Español (PR)" #. module: base #: model:res.country,name:base.gt msgid "Guatemala" -msgstr "" +msgstr "Guatemala" #. module: base #: model:ir.actions.act_window,name:base.action_workflow_form @@ -2797,22 +3057,22 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_workflow #: model:ir.ui.menu,name:base.menu_workflow_root msgid "Workflows" -msgstr "" +msgstr "Workflows" #. module: base #: model:ir.actions.act_window,name:base.action_config_user_form msgid "Create Users" -msgstr "" +msgstr "Create Users" #. module: base #: model:ir.model,name:base.model_res_partner_title msgid "res.partner.title" -msgstr "" +msgstr "res.partner.title" #. module: base #: view:ir.values:0 msgid "tree_but_action, client_print_multi" -msgstr "" +msgstr "tree_but_action, client_print_multi" #. module: base #: model:res.partner.category,name:base.res_partner_category_retailers0 @@ -2825,33 +3085,35 @@ msgid "" "0=Very Urgent\n" "10=Not urgent" msgstr "" +"0=Very Urgent\n" +"10=Not urgent" #. module: base #: view:res.config:0 #: view:res.config.installer:0 msgid "Skip" -msgstr "" +msgstr "Skip" #. module: base #: model:res.country,name:base.ls msgid "Lesotho" -msgstr "" +msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" -msgstr "" +msgstr "You can not remove the model '%s' !" #. module: base #: model:res.country,name:base.ke msgid "Kenya" -msgstr "" +msgstr "Kenya" #. module: base #: view:res.partner.event:0 msgid "Event" -msgstr "" +msgstr "Event" #. module: base #: model:ir.ui.menu,name:base.menu_custom_reports @@ -2861,84 +3123,100 @@ msgstr "" #. module: base #: selection:base.language.install,lang:0 msgid "Abkhazian / аҧсуа" -msgstr "" +msgstr "Abkhazian / аҧсуа" #. module: base #: view:base.module.configuration:0 msgid "System Configuration Done" -msgstr "" +msgstr "System Configuration Done" + +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "Error occurred while validating the field(s) %s: %s" #. module: base #: view:ir.property:0 msgid "Generic" -msgstr "" +msgstr "Generic" #. module: base #: model:res.country,name:base.sm msgid "San Marino" -msgstr "" +msgstr "San Marino" #. module: base #: model:res.country,name:base.bm msgid "Bermuda" -msgstr "" +msgstr "Bermuda" #. module: base #: model:res.country,name:base.pe msgid "Peru" -msgstr "" +msgstr "Peru" #. module: base #: selection:ir.model.fields,on_delete:0 msgid "Set NULL" -msgstr "" +msgstr "Set NULL" #. module: base #: model:res.country,name:base.bj msgid "Benin" -msgstr "" +msgstr "Benin" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." -msgstr "" +msgstr "That contract is already registered in the system." #. module: base #: help:ir.sequence,suffix:0 msgid "Suffix value of the record for the sequence" -msgstr "" +msgstr "Suffix value of the record for the sequence" #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (PY) / Español (PY)" -msgstr "" +msgstr "Spanish (PY) / Español (PY)" #. module: base #: field:ir.config_parameter,key:0 msgid "Key" -msgstr "" +msgstr "Key" #. module: base #: field:res.company,rml_header:0 msgid "RML Header" -msgstr "" +msgstr "RML Header" #. module: base #: field:partner.sms.send,app_id:0 msgid "API ID" +msgstr "API ID" + +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." msgstr "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." #. module: base #: model:res.country,name:base.mu msgid "Mauritius" -msgstr "" +msgstr "Mauritius" #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 msgid "Full Access" -msgstr "" +msgstr "Full Access" #. module: base #: view:ir.actions.act_window:0 @@ -2947,45 +3225,45 @@ msgstr "" #: view:ir.model.fields:0 #: model:ir.ui.menu,name:base.menu_security msgid "Security" -msgstr "" +msgstr "Security" #. module: base #: model:res.widget,title:base.openerp_favorites_twitter_widget msgid "OpenERP Favorites" -msgstr "" +msgstr "OpenERP Favorites" #. module: base #: model:res.country,name:base.za msgid "South Africa" -msgstr "" +msgstr "South Africa" #. module: base #: view:ir.module.module:0 #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 msgid "Installed" -msgstr "" +msgstr "Installed" #. module: base #: selection:base.language.install,lang:0 msgid "Ukrainian / українська" -msgstr "" +msgstr "Ukrainian / українська" #. module: base #: model:ir.actions.act_window,name:base.action_translation #: model:ir.ui.menu,name:base.menu_action_translation msgid "Translation Terms" -msgstr "" +msgstr "Translation Terms" #. module: base #: model:res.country,name:base.sn msgid "Senegal" -msgstr "" +msgstr "Senegal" #. module: base #: model:res.country,name:base.hu msgid "Hungary" -msgstr "" +msgstr "Hungary" #. module: base #: model:ir.model,name:base.model_res_groups @@ -2995,48 +3273,48 @@ msgstr "" #. module: base #: model:res.country,name:base.br msgid "Brazil" -msgstr "" +msgstr "Brazil" #. module: base #: view:res.lang:0 msgid "%M - Minute [00,59]." -msgstr "" +msgstr "%M - Minute [00,59]." #. module: base #: selection:ir.module.module,license:0 msgid "Affero GPL-3" -msgstr "" +msgstr "Affero GPL-3" #. module: base #: field:ir.sequence,number_next:0 msgid "Next Number" -msgstr "" +msgstr "Next Number" #. module: base #: help:workflow.transition,condition:0 msgid "Expression to be satisfied if we want the transition done." -msgstr "" +msgstr "Expression to be satisfied if we want the transition done." #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (PA) / Español (PA)" -msgstr "" +msgstr "Spanish (PA) / Español (PA)" #. module: base #: view:res.currency:0 #: field:res.currency,rate_ids:0 msgid "Rates" -msgstr "" +msgstr "Rates" #. module: base #: model:res.country,name:base.sy msgid "Syria" -msgstr "" +msgstr "Syria" #. module: base #: view:res.lang:0 msgid "======================================================" -msgstr "" +msgstr "======================================================" #. module: base #: help:ir.actions.server,mobile:0 @@ -3045,21 +3323,24 @@ msgid "" "invoice, then `object.invoice_address_id.mobile` is the field which gives " "the correct mobile number" msgstr "" +"Provides fields that be used to fetch the mobile number, e.g. you select the " +"invoice, then `object.invoice_address_id.mobile` is the field which gives " +"the correct mobile number" #. module: base #: view:base.module.upgrade:0 msgid "System update completed" -msgstr "" +msgstr "System update completed" #. module: base #: field:ir.model.fields,selection:0 msgid "Field Selection" -msgstr "" +msgstr "Field Selection" #. module: base #: selection:res.request,state:0 msgid "draft" -msgstr "" +msgstr "draft" #. module: base #: selection:ir.property,type:0 @@ -3069,17 +3350,17 @@ msgstr "" #: field:res.partner.event,date:0 #: field:res.request,date_sent:0 msgid "Date" -msgstr "" +msgstr "Date" #. module: base #: field:ir.actions.report.xml,report_sxw:0 msgid "SXW path" -msgstr "" +msgstr "SXW path" #. module: base #: view:ir.attachment:0 msgid "Data" -msgstr "" +msgstr "Data" #. module: base #: field:ir.ui.menu,parent_id:0 @@ -3090,7 +3371,7 @@ msgstr "Szülő menü" #. module: base #: field:ir.rule,perm_unlink:0 msgid "Apply For Delete" -msgstr "" +msgstr "Apply For Delete" #. module: base #: help:ir.actions.act_window.view,multi:0 @@ -3099,21 +3380,23 @@ msgid "" "If set to true, the action will not be displayed on the right toolbar of a " "form view." msgstr "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view." #. module: base #: model:res.country,name:base.al msgid "Albania" -msgstr "" +msgstr "Albania" #. module: base #: view:ir.attachment:0 msgid "Attached To" -msgstr "" +msgstr "Attached To" #. module: base #: field:res.lang,decimal_point:0 msgid "Decimal Separator" -msgstr "" +msgstr "Decimal Separator" #. module: base #: model:ir.actions.act_window,help:base.action_res_groups @@ -3125,13 +3408,19 @@ msgid "" "to see. Whether they can have a read, write, create and delete access right " "can be managed from here." msgstr "" +"A group is a set of functional areas that will be assigned to the user in " +"order to give them access and rights to specific applications and tasks in " +"the system. You can create custom groups or edit the ones existing by " +"default in order to customize the view of the menu that users will be able " +"to see. Whether they can have a read, write, create and delete access right " +"can be managed from here." #. module: base #: view:res.partner:0 #: view:res.request:0 #: field:res.request,history:0 msgid "History" -msgstr "" +msgstr "Előzmények" #. module: base #: field:ir.attachment,create_uid:0 @@ -3152,7 +3441,7 @@ msgstr "" #. module: base #: model:res.country,name:base.mx msgid "Mexico" -msgstr "" +msgstr "Mexico" #. module: base #: model:ir.ui.menu,name:base.menu_base_config_plugins @@ -3162,17 +3451,23 @@ msgstr "" #. module: base #: field:res.company,child_ids:0 msgid "Child Companies" -msgstr "" +msgstr "Child Companies" #. module: base #: model:ir.model,name:base.model_res_users msgid "res.users" -msgstr "" +msgstr "res.users" #. module: base #: model:res.country,name:base.ni msgid "Nicaragua" -msgstr "" +msgstr "Nicaragua" + +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "The write method is not implemented on this object !" #. module: base #: view:res.partner.event:0 @@ -3183,7 +3478,7 @@ msgstr "Általános leírás" #: model:ir.actions.act_window,name:base.action_config_simple_view_form #: view:res.config.view:0 msgid "Configure Your Interface" -msgstr "" +msgstr "Configure Your Interface" #. module: base #: field:ir.values,meta:0 @@ -3193,54 +3488,54 @@ msgstr "Metaadatok" #. module: base #: sql_constraint:ir.ui.view_sc:0 msgid "Shortcut for this menu already exists!" -msgstr "" +msgstr "Shortcut for this menu already exists!" #. module: base #: model:res.country,name:base.ve msgid "Venezuela" -msgstr "" +msgstr "Venezuela" #. module: base #: view:res.lang:0 msgid "9. %j ==> 340" -msgstr "" +msgstr "9. %j ==> 340" #. module: base #: model:res.country,name:base.zm msgid "Zambia" -msgstr "" +msgstr "Zambia" #. 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 "A felhasználó, aki felelős a partnerrel való kapcsolattartásért." #. module: base #: field:res.partner,parent_id:0 msgid "Parent Partner" -msgstr "" +msgstr "Parent Partner" #. module: base #: view:ir.module.module:0 msgid "Cancel Upgrade" -msgstr "" +msgstr "Cancel Upgrade" #. module: base #: model:res.country,name:base.ci msgid "Ivory Coast (Cote D'Ivoire)" -msgstr "" +msgstr "Ivory Coast (Cote D'Ivoire)" #. module: base #: model:res.country,name:base.kz msgid "Kazakhstan" -msgstr "" +msgstr "Kazakhstan" #. module: base #: view:res.lang:0 msgid "%w - Weekday number [0(Sunday),6]." -msgstr "" +msgstr "%w - Weekday number [0(Sunday),6]." #. module: base #: field:ir.actions.report.xml,name:0 @@ -3268,7 +3563,7 @@ msgstr "" #: field:workflow,name:0 #: field:workflow.activity,name:0 msgid "Name" -msgstr "" +msgstr "Name" #. module: base #: help:ir.actions.act_window,multi:0 @@ -3276,16 +3571,18 @@ msgid "" "If set to true, the action will not be displayed on the right toolbar of a " "form view" msgstr "" +"If set to true, the action will not be displayed on the right toolbar of a " +"form view" #. module: base #: model:res.country,name:base.ms msgid "Montserrat" -msgstr "" +msgstr "Montserrat" #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" -msgstr "" +msgstr "Alkalmazás szövegelemek" #. module: base #: help:res.config.users,context_tz:0 @@ -3294,21 +3591,23 @@ msgid "" "The user's timezone, used to perform timezone conversions between the server " "and the client." msgstr "" +"The user's timezone, used to perform timezone conversions between the server " +"and the client." #. module: base #: field:ir.module.module,demo:0 msgid "Demo data" -msgstr "" +msgstr "Demo data" #. module: base #: selection:base.language.install,lang:0 msgid "English (UK)" -msgstr "" +msgstr "English (UK)" #. module: base #: selection:base.language.install,lang:0 msgid "Japanese / 日本語" -msgstr "" +msgstr "Japanese / 日本語" #. module: base #: help:workflow.transition,act_from:0 @@ -3316,6 +3615,8 @@ msgid "" "Source activity. When this activity is over, the condition is tested to " "determine if we can start the ACT_TO activity." msgstr "" +"Source activity. When this activity is over, the condition is tested to " +"determine if we can start the ACT_TO activity." #. module: base #: model:res.partner.category,name:base.res_partner_category_3 @@ -3325,48 +3626,48 @@ msgstr "" #. module: base #: view:base.module.upgrade:0 msgid "Your system will be updated." -msgstr "" +msgstr "Your system will be updated." #. 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 #: report:ir.module.reference.graph:0 msgid "Web" -msgstr "" +msgstr "Web" #. module: base #: selection:base.language.install,lang:0 msgid "English (CA)" -msgstr "" +msgstr "English (CA)" #. module: base #: model:ir.model,name:base.model_publisher_warranty_contract msgid "publisher_warranty.contract" -msgstr "" +msgstr "publisher_warranty.contract" #. module: base #: model:res.country,name:base.et msgid "Ethiopia" -msgstr "" +msgstr "Ethiopia" #. module: base #: help:res.country.state,code:0 msgid "The state code in three chars.\n" -msgstr "" +msgstr "The state code in three chars.\n" #. module: base #: model:res.country,name:base.sj msgid "Svalbard and Jan Mayen Islands" -msgstr "" +msgstr "Svalbard and Jan Mayen Islands" #. module: base #: model:ir.model,name:base.model_ir_actions_wizard #: selection:ir.ui.menu,action:0 msgid "ir.actions.wizard" -msgstr "" +msgstr "ir.actions.wizard" #. module: base #: view:ir.actions.act_window:0 @@ -3375,43 +3676,43 @@ msgstr "" #: view:ir.filters:0 #: view:res.request:0 msgid "Group By" -msgstr "" +msgstr "Group By" #. module: base #: view:res.config:0 #: view:res.config.installer:0 msgid "title" -msgstr "" +msgstr "title" #. module: base #: model:ir.model,name:base.model_base_language_install msgid "Install Language" -msgstr "" +msgstr "Install Language" #. module: base #: view:ir.translation:0 msgid "Translation" -msgstr "" +msgstr "Translation" #. module: base #: selection:res.request,state:0 msgid "closed" -msgstr "" +msgstr "closed" #. module: base #: selection:base.language.export,state:0 msgid "get" -msgstr "" +msgstr "get" #. module: base #: help:ir.model.fields,on_delete:0 msgid "On delete property for many2one fields" -msgstr "" +msgstr "On delete property for many2one fields" #. module: base #: field:ir.actions.server,write_id:0 msgid "Write Id" -msgstr "" +msgstr "Write Id" #. module: base #: model:ir.ui.menu,name:base.menu_product @@ -3422,90 +3723,92 @@ msgstr "" #: field:ir.actions.act_window,domain:0 #: field:ir.filters,domain:0 msgid "Domain Value" -msgstr "" +msgstr "Domain Value" #. module: base #: view:ir.actions.server:0 msgid "SMS Configuration" -msgstr "" +msgstr "SMS Configuration" #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (BO) / Español (BO)" -msgstr "" +msgstr "Spanish (BO) / Español (BO)" #. 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 "Access Controls List" #. module: base #: model:res.country,name:base.um msgid "USA Minor Outlying Islands" -msgstr "" +msgstr "USA Minor Outlying Islands" #. module: base #: field:res.partner.bank,state:0 #: field:res.partner.bank.type.field,bank_type_id:0 msgid "Bank Type" -msgstr "" +msgstr "Bank Type" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" -msgstr "" +msgstr "The name of the group can not start with \"-\"" #. module: base #: view:ir.ui.view_sc:0 #: field:res.partner.title,shortcut:0 msgid "Shortcut" -msgstr "" +msgstr "Shortcut" #. module: base #: field:ir.model.data,date_init:0 msgid "Init Date" -msgstr "" +msgstr "Init Date" #. module: base #: selection:base.language.install,lang:0 msgid "Gujarati / ગુજરાતી" -msgstr "" +msgstr "Gujarati / ગુજરાતી" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" msgstr "" +"Unable to process module \"%s\" because an external dependency is not met: %s" #. module: base #: view:publisher_warranty.contract.wizard:0 msgid "Please enter the serial key provided in your contract document:" -msgstr "" +msgstr "Please enter the serial key provided in your contract document:" #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_start:0 msgid "Flow Start" -msgstr "" +msgstr "Flow Start" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" -msgstr "" +msgstr "module base cannot be loaded! (hint: verify addons-path)" #. module: base #: view:res.partner.bank:0 msgid "Bank Account Owner" -msgstr "" +msgstr "Bankszámla tulajdonos" #. module: base #: model:ir.actions.act_window,name:base.act_values_form msgid "Client Actions Connections" -msgstr "" +msgstr "Client Actions Connections" #. module: base #: field:ir.attachment,res_name:0 @@ -3516,18 +3819,20 @@ msgstr "Elem neve" #. module: base #: selection:ir.cron,interval_type:0 msgid "Hours" -msgstr "" +msgstr "Hours" #. module: base #: model:res.country,name:base.gp msgid "Guadeloupe (French)" -msgstr "" +msgstr "Guadeloupe (French)" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" -msgstr "" +msgstr "User Error" #. module: base #: help:workflow.transition,signal:0 @@ -3536,68 +3841,76 @@ msgid "" "form, signal tests the name of the pressed button. If signal is NULL, no " "button is necessary to validate this transition." msgstr "" +"When the operation of transition comes from a button pressed in the client " +"form, signal tests the name of the pressed button. If signal is NULL, no " +"button is necessary to validate this transition." #. module: base #: help:multi_company.default,object_id:0 msgid "Object affected by this rule" -msgstr "" +msgstr "Object affected by this rule" #. module: base #: report:ir.module.reference.graph:0 msgid "Directory" -msgstr "" +msgstr "Directory" #. module: base #: field:wizard.ir.model.menu.create,name:0 msgid "Menu Name" -msgstr "" +msgstr "Menu Name" #. module: base #: view:ir.module.module:0 msgid "Author Website" -msgstr "" +msgstr "Author Website" #. module: base #: view:ir.attachment:0 msgid "Month" -msgstr "" +msgstr "Month" #. module: base #: model:res.country,name:base.my msgid "Malaysia" -msgstr "" +msgstr "Malaysia" #. module: base #: view:base.language.install:0 #: model:ir.actions.act_window,name:base.action_view_base_language_install msgid "Load Official Translation" -msgstr "" +msgstr "Load Official Translation" #. module: base #: model:ir.model,name:base.model_res_request_history msgid "res.request.history" -msgstr "" +msgstr "res.request.history" #. module: base #: view:ir.actions.server:0 msgid "Client Action Configuration" -msgstr "" +msgstr "Client Action Configuration" #. module: base #: model:ir.model,name:base.model_res_partner_address #: view:res.partner.address:0 msgid "Partner Addresses" -msgstr "" +msgstr "Partner Addresses" #. module: base #: view:res.lang:0 msgid "%S - Seconds [00,61]." -msgstr "" +msgstr "%S - Seconds [00,61]." #. module: base #: model:res.country,name:base.cv msgid "Cape Verde" -msgstr "" +msgstr "Cape Verde" + +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "Select module package to import (.zip file):" #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event @@ -3610,49 +3923,56 @@ msgstr "Események" #: 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 +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "Wrong ID for the browse record, got %r, expected an integer." #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 msgid "Partner Contacts" -msgstr "" +msgstr "Partner Contacts" #. module: base #: field:base.module.update,add:0 msgid "Number of modules added" -msgstr "" +msgstr "Number of modules added" #. module: base #: view:res.currency:0 msgid "Price Accuracy" -msgstr "" +msgstr "Price Accuracy" #. module: base #: selection:base.language.install,lang:0 msgid "Latvian / latviešu valoda" -msgstr "" +msgstr "Latvian / latviešu valoda" #. module: base #: view:res.config:0 #: view:res.config.installer:0 msgid "vsep" -msgstr "" +msgstr "vsep" #. module: base #: selection:base.language.install,lang:0 msgid "French / Français" -msgstr "" +msgstr "French / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "The create method is not implemented on this object !" #. module: base #: field:workflow.triggers,workitem_id:0 msgid "Workitem" -msgstr "" +msgstr "Workitem" #. module: base #: field:ir.actions.act_window.view,act_window_id:0 @@ -3663,111 +3983,111 @@ msgstr "" #: selection:ir.values,key:0 #: view:res.users:0 msgid "Action" -msgstr "" +msgstr "Action" #. module: base #: view:ir.actions.server:0 msgid "Email Configuration" -msgstr "" +msgstr "Email Configuration" #. module: base #: model:ir.model,name:base.model_ir_cron msgid "ir.cron" -msgstr "" +msgstr "ir.cron" #. module: base #: view:ir.rule:0 msgid "Combination of rules" -msgstr "" +msgstr "Combination of rules" #. module: base #: view:ir.sequence:0 msgid "Current Year without Century: %(y)s" -msgstr "" +msgstr "Current Year without Century: %(y)s" #. module: base #: field:ir.actions.server,trigger_obj_id:0 msgid "Trigger On" -msgstr "" +msgstr "Trigger On" #. module: base #: sql_constraint:ir.rule:0 msgid "Rule must have at least one checked access right !" -msgstr "" +msgstr "Rule must have at least one checked access right !" #. module: base #: model:res.country,name:base.fj msgid "Fiji" -msgstr "" +msgstr "Fiji" #. module: base #: field:ir.model.fields,size:0 msgid "Size" -msgstr "" +msgstr "Size" #. module: base #: model:res.country,name:base.sd msgid "Sudan" -msgstr "" +msgstr "Sudan" #. module: base #: model:res.country,name:base.fm msgid "Micronesia" -msgstr "" +msgstr "Micronesia" #. module: base #: view:res.request.history:0 msgid "Request History" -msgstr "Kérés előzmények" +msgstr "Üzenet előzmények" #. module: base #: field:ir.actions.act_window,menus:0 #: field:ir.module.module,menus_by_module:0 #: view:res.groups:0 msgid "Menus" -msgstr "" +msgstr "Menus" #. module: base #: view:base.module.upgrade:0 msgid "The selected modules have been updated / installed !" -msgstr "" +msgstr "The selected modules have been updated / installed !" #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Latin) / srpski" -msgstr "" +msgstr "Serbian (Latin) / srpski" #. module: base #: model:res.country,name:base.il msgid "Israel" -msgstr "" +msgstr "Israel" #. module: base #: model:ir.actions.wizard,name:base.wizard_server_action_create msgid "Create Action" -msgstr "" +msgstr "Create Action" #. module: base #: model:ir.actions.act_window,name:base.action_model_model #: model:ir.model,name:base.model_ir_model #: model:ir.ui.menu,name:base.ir_model_model_menu msgid "Objects" -msgstr "" +msgstr "Objects" #. module: base #: field:res.lang,time_format:0 msgid "Time Format" -msgstr "" +msgstr "Time Format" #. module: base #: view:ir.module.module:0 msgid "Defined Reports" -msgstr "" +msgstr "Defined Reports" #. module: base #: view:ir.actions.report.xml:0 msgid "Report xml" -msgstr "" +msgstr "Report xml" #. module: base #: field:base.language.export,modules:0 @@ -3777,7 +4097,7 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_management #: model:ir.ui.menu,name:base.menu_module_tree msgid "Modules" -msgstr "" +msgstr "Modules" #. module: base #: view:workflow.activity:0 @@ -3785,17 +4105,17 @@ msgstr "" #: field:workflow.activity,subflow_id:0 #: field:workflow.workitem,subflow_id:0 msgid "Subflow" -msgstr "" +msgstr "Subflow" #. module: base #: model:ir.model,name:base.model_res_config msgid "res.config" -msgstr "" +msgstr "res.config" #. module: base #: field:workflow.transition,signal:0 msgid "Signal (button Name)" -msgstr "" +msgstr "Signal (button Name)" #. module: base #: model:ir.actions.act_window,name:base.action_res_bank_form @@ -3803,109 +4123,120 @@ msgstr "" #: view:res.bank:0 #: field:res.partner,bank_ids:0 msgid "Banks" -msgstr "" +msgstr "Banks" #. module: base #: view:res.log:0 msgid "Unread" -msgstr "" +msgstr "Unread" #. module: base #: field:ir.cron,doall:0 msgid "Repeat Missed" -msgstr "" +msgstr "Repeat Missed" #. module: base #: help:ir.actions.server,state:0 msgid "Type of the Action that is to be executed" -msgstr "" +msgstr "Type of the Action that is to be executed" #. module: base #: field:ir.server.object.lines,server_id:0 msgid "Object Mapping" -msgstr "" +msgstr "Object Mapping" #. module: base #: help:res.currency,rate:0 #: help:res.currency.rate,rate:0 msgid "The rate of the currency to the currency of rate 1" -msgstr "" +msgstr "The rate of the currency to the currency of rate 1" #. module: base #: model:res.country,name:base.uk msgid "United Kingdom" -msgstr "" +msgstr "United Kingdom" #. module: base #: view:res.config:0 #: view:res.config.users:0 #: view:res.config.view:0 msgid "res_config_contents" -msgstr "" +msgstr "res_config_contents" #. module: base #: help:res.partner.category,active:0 msgid "The active field allows you to hide the category without removing it." msgstr "" +"The active field allows you to hide the category without removing it." #. module: base #: report:ir.module.reference.graph:0 msgid "Object:" -msgstr "" +msgstr "Object:" #. module: base #: model:res.country,name:base.bw msgid "Botswana" -msgstr "" +msgstr "Botswana" #. module: base #: model:ir.actions.act_window,name:base.action_partner_title_partner #: model:ir.ui.menu,name:base.menu_partner_title_partner #: view:res.partner.title:0 msgid "Partner Titles" -msgstr "" +msgstr "Partner Titles" #. module: base #: help:ir.actions.act_window,auto_refresh:0 msgid "Add an auto-refresh on the view" -msgstr "" +msgstr "Add an auto-refresh on the view" #. module: base #: help:res.partner,employee:0 msgid "Check this box if the partner is an Employee." -msgstr "" +msgstr "Jelöld be, ha a partner egy alkalmazott." #. module: base #: field:ir.actions.report.xml,report_rml_content:0 #: field:ir.actions.report.xml,report_rml_content_data:0 msgid "RML content" -msgstr "" +msgstr "RML content" #. module: base #: model:ir.actions.act_window,name:base.action_workflow_workitem_form #: model:ir.ui.menu,name:base.menu_workflow_workitem msgid "Workitems" -msgstr "" +msgstr "Workitems" #. module: base #: field:base.language.export,advice:0 msgid "Advice" -msgstr "" +msgstr "Advice" #. module: base #: model:ir.model,name:base.model_ir_attachment msgid "ir.attachment" +msgstr "ir.attachment" + +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." msgstr "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" -msgstr "" +msgstr "- module,type,name,res_id,src,value" #. module: base #: selection:base.language.install,lang:0 msgid "Lithuanian / Lietuvių kalba" -msgstr "" +msgstr "Lithuanian / Lietuvių kalba" #. module: base #: help:ir.actions.server,record_id:0 @@ -3913,21 +4244,23 @@ msgid "" "Provide the field name where the record id is stored after the create " "operations. If it is empty, you can not track the new record." msgstr "" +"Provide the field name where the record id is stored after the create " +"operations. If it is empty, you can not track the new record." #. module: base #: selection:base.language.install,lang:0 msgid "Indonesian / Bahasa Indonesia" -msgstr "" +msgstr "Indonesian / Bahasa Indonesia" #. module: base #: field:ir.ui.view,inherit_id:0 msgid "Inherited View" -msgstr "" +msgstr "Inherited View" #. module: base #: view:ir.translation:0 msgid "Source Term" -msgstr "" +msgstr "Source Term" #. module: base #: model:ir.ui.menu,name:base.menu_main_pm @@ -3935,116 +4268,114 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" -msgstr "" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" +msgstr "Web Icon Image (hover)" #. module: base #: view:base.module.import:0 msgid "Module file successfully imported!" -msgstr "" +msgstr "Module file successfully imported!" #. module: base #: selection:ir.actions.todo,state:0 msgid "Cancelled" -msgstr "" +msgstr "Cancelled" #. module: base #: view:res.config.users:0 msgid "Create User" -msgstr "" +msgstr "Create User" #. module: base #: view:partner.clear.ids:0 msgid "Want to Clear Ids ? " -msgstr "" +msgstr "Want to Clear Ids ? " #. module: base #: field:publisher_warranty.contract,name:0 #: field:publisher_warranty.contract.wizard,name:0 msgid "Serial Key" -msgstr "" +msgstr "Serial Key" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "Audit" #. module: base #: model:res.country,name:base.lc msgid "Saint Lucia" -msgstr "" +msgstr "Saint Lucia" #. module: base #: view:publisher_warranty.contract:0 msgid "Maintenance Contract" -msgstr "" +msgstr "Maintenance Contract" #. module: base #: help:ir.actions.server,trigger_obj_id:0 msgid "Select the object from the model on which the workflow will executed." msgstr "" +"Select the object from the model on which the workflow will executed." #. module: base #: field:res.partner,employee:0 msgid "Employee" -msgstr "" +msgstr "Employee" #. module: base #: field:ir.model.access,perm_create:0 msgid "Create Access" -msgstr "" +msgstr "Create Access" #. module: base #: field:res.partner.address,state_id:0 msgid "Fed. State" -msgstr "" +msgstr "Szöv. Állam" #. module: base #: field:ir.actions.server,copy_object:0 msgid "Copy Of" -msgstr "" +msgstr "Copy Of" #. module: base #: field:ir.model,osv_memory:0 msgid "In-memory model" -msgstr "" +msgstr "In-memory model" #. module: base #: view:partner.clear.ids:0 msgid "Clear Ids" -msgstr "" +msgstr "Clear Ids" #. module: base #: model:res.country,name:base.io msgid "British Indian Ocean Territory" -msgstr "" +msgstr "British Indian Ocean Territory" #. module: base #: field:res.config.users,view:0 #: field:res.config.view,view:0 #: field:res.users,view:0 msgid "Interface" -msgstr "" +msgstr "Interface" #. module: base #: view:ir.actions.server:0 msgid "Field Mapping" -msgstr "" +msgstr "Field Mapping" #. module: base #: view:publisher_warranty.contract:0 msgid "Refresh Validation Dates" -msgstr "" +msgstr "Refresh Validation Dates" #. module: base #: view:ir.model:0 #: field:ir.model.fields,ttype:0 msgid "Field Type" -msgstr "" +msgstr "Field Type" #. module: base #: field:res.country.state,code:0 @@ -4054,61 +4385,73 @@ msgstr "Megyekód" #. module: base #: field:ir.model.fields,on_delete:0 msgid "On delete" -msgstr "" +msgstr "On delete" #. module: base #: selection:res.lang,direction:0 msgid "Left-to-Right" -msgstr "" +msgstr "Left-to-Right" #. module: base #: view:res.lang:0 #: field:res.lang,translatable:0 msgid "Translatable" -msgstr "" +msgstr "Translatable" #. module: base #: model:res.country,name:base.vn msgid "Vietnam" -msgstr "" +msgstr "Vietnam" #. module: base #: field:res.config.users,signature:0 #: view:res.users:0 #: field:res.users,signature:0 msgid "Signature" -msgstr "" +msgstr "Signature" + +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "Not Implemented" #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" -msgstr "" +msgstr "res.widget.user" #. module: base #: field:res.partner.category,complete_name:0 msgid "Full Name" -msgstr "" +msgstr "Full Name" #. module: base #: view:base.module.configuration:0 msgid "_Ok" -msgstr "" +msgstr "_Ok" #. module: base #: help:ir.filters,user_id:0 msgid "False means for every user" -msgstr "" +msgstr "False means for every user" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" -msgstr "" +msgstr "The name of the module must be unique !" #. module: base #: model:res.country,name:base.mz msgid "Mozambique" -msgstr "" +msgstr "Mozambique" #. module: base #: model:ir.ui.menu,name:base.menu_project_long_term @@ -4121,18 +4464,18 @@ msgstr "" #: field:partner.wizard.spam,text:0 #: field:res.log,name:0 msgid "Message" -msgstr "" +msgstr "Message" #. module: base #: field:ir.actions.act_window.view,multi:0 msgid "On Multiple Doc." -msgstr "" +msgstr "On Multiple Doc." #. module: base #: view:res.partner:0 #: field:res.partner,user_id:0 msgid "Salesman" -msgstr "" +msgstr "Üzletkötő" #. module: base #: field:res.partner,address:0 @@ -4141,41 +4484,50 @@ msgid "Contacts" msgstr "Névjegyek" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" msgstr "" +"Unable to delete this document because it is used as a default property" #. module: base #: view:res.widget.wizard:0 msgid "Add" -msgstr "" +msgstr "Add" #. module: base #: view:base.module.upgrade:0 #: model:ir.actions.act_window,name:base.action_view_base_module_upgrade_window #: model:ir.ui.menu,name:base.menu_view_base_module_upgrade msgid "Apply Scheduled Upgrades" -msgstr "" +msgstr "Apply Scheduled Upgrades" #. module: base #: view:res.widget:0 msgid "Widgets" -msgstr "" +msgstr "Widgets" #. module: base #: model:res.country,name:base.cz msgid "Czech Republic" -msgstr "" +msgstr "Czech Republic" #. module: base #: view:res.widget.wizard:0 msgid "Widget Wizard" -msgstr "" +msgstr "Widget Wizard" + +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "Insufficient fields for Calendar View!" #. module: base #: selection:ir.property,type:0 msgid "Integer" -msgstr "" +msgstr "Integer" #. module: base #: help:ir.actions.report.xml,report_rml:0 @@ -4183,58 +4535,54 @@ msgid "" "The path to the main report file (depending on Report Type) or NULL if the " "content is in another data field" msgstr "" +"The path to the main report file (depending on Report Type) or NULL if the " +"content is in another data field" #. module: base #: help:res.config.users,company_id:0 #: help:res.users,company_id:0 msgid "The company this user is currently working for." -msgstr "" +msgstr "The company this user is currently working for." #. module: base #: model:ir.model,name:base.model_wizard_ir_model_menu_create msgid "wizard.ir.model.menu.create" -msgstr "" +msgstr "wizard.ir.model.menu.create" #. module: base #: view:workflow.transition:0 msgid "Transition" -msgstr "" +msgstr "Transition" #. module: base #: field:res.groups,menu_access:0 msgid "Access Menu" -msgstr "" +msgstr "Access Menu" #. module: base #: model:res.country,name:base.na msgid "Namibia" -msgstr "" +msgstr "Namibia" #. module: base #: model:res.country,name:base.mn msgid "Mongolia" -msgstr "" +msgstr "Mongolia" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Created Menus" #. module: base #: selection:ir.ui.view,type:0 msgid "mdx" -msgstr "" +msgstr "mdx" #. module: base #: model:res.country,name:base.bi msgid "Burundi" -msgstr "" +msgstr "Burundi" #. module: base #: view:base.language.install:0 @@ -4245,27 +4593,27 @@ msgstr "" #: wizard_button:server.action.create,init,end:0 #: wizard_button:server.action.create,step_1,end:0 msgid "Close" -msgstr "" +msgstr "Close" #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (MX) / Español (MX)" -msgstr "" +msgstr "Spanish (MX) / Español (MX)" #. module: base #: view:res.log:0 msgid "My Logs" -msgstr "" +msgstr "My Logs" #. module: base #: model:res.country,name:base.bt msgid "Bhutan" -msgstr "" +msgstr "Bhutan" #. module: base #: help:ir.sequence,number_next:0 msgid "Next number of this sequence" -msgstr "" +msgstr "Next number of this sequence" #. module: base #: model:res.partner.category,name:base.res_partner_category_11 @@ -4275,43 +4623,43 @@ msgstr "" #. module: base #: selection:ir.actions.url,target:0 msgid "This Window" -msgstr "" +msgstr "This Window" #. module: base #: view:publisher_warranty.contract:0 msgid "Publisher Warranty Contracts" -msgstr "" +msgstr "Publisher Warranty Contracts" #. module: base #: help:res.log,name:0 msgid "The logging message." -msgstr "" +msgstr "The logging message." #. module: base #: field:base.language.export,format:0 msgid "File Format" -msgstr "" +msgstr "File Format" #. module: base #: field:res.lang,iso_code:0 msgid "ISO code" -msgstr "" +msgstr "ISO code" #. module: base #: model:ir.model,name:base.model_res_config_view msgid "res.config.view" -msgstr "" +msgstr "res.config.view" #. module: base #: view:res.log:0 #: field:res.log,read:0 msgid "Read" -msgstr "" +msgstr "Read" #. module: base #: sql_constraint:res.country:0 msgid "The name of the country must be unique !" -msgstr "" +msgstr "Az ország nevének egyedinek kell lennie!" #. module: base #: model:ir.actions.act_window,help:base.action_country_state @@ -4320,28 +4668,26 @@ msgid "" "federal states you are working on from here. Each state is attached to one " "country." msgstr "" +"If you are working on the American market, you can manage the different " +"federal states you are working on from here. Each state is attached to one " +"country." #. module: base #: view:workflow.workitem:0 msgid "Workflow Workitems" -msgstr "" +msgstr "Workflow Workitems" #. module: base #: model:res.country,name:base.vc msgid "Saint Vincent & Grenadines" -msgstr "" +msgstr "Saint Vincent & Grenadines" #. module: base #: field:partner.sms.send,password:0 #: field:res.config.users,password:0 #: field:res.users,password:0 msgid "Password" -msgstr "" - -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" +msgstr "Password" #. module: base #: model:ir.actions.act_window,name:base.action_model_fields @@ -4351,34 +4697,35 @@ msgstr "" #: view:ir.model.fields:0 #: model:ir.ui.menu,name:base.ir_model_model_fields msgid "Fields" -msgstr "" +msgstr "Fields" #. module: base #: model:ir.actions.act_window,name:base.action_partner_employee_form msgid "Employees" -msgstr "" +msgstr "Employees" #. module: base #: help:res.log,read:0 msgid "" "If this log item has been read, get() should not send it to the client" msgstr "" +"If this log item has been read, get() should not send it to the client" #. module: base #: field:res.company,rml_header2:0 #: field:res.company,rml_header3:0 msgid "RML Internal Header" -msgstr "" +msgstr "RML Internal Header" #. module: base #: field:ir.actions.act_window,search_view_id:0 msgid "Search View Ref." -msgstr "" +msgstr "Search View Ref." #. module: base #: field:ir.module.module,installed_version:0 msgid "Latest version" -msgstr "" +msgstr "Latest version" #. module: base #: model:ir.actions.act_window,help:base.res_partner_canal-act @@ -4387,122 +4734,125 @@ msgid "" "channels that will be maintained at the creation of a document in the " "system. Some examples of channels can be: Website, Phone Call, Reseller, etc." msgstr "" +"Track from where is coming your leads and opportunities by creating specific " +"channels that will be maintained at the creation of a document in the " +"system. Some examples of channels can be: Website, Phone Call, Reseller, etc." #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field msgid "acc_number" -msgstr "" +msgstr "acc_number" #. module: base #: model:ir.actions.act_window,name:base.action_partner_address_form #: model:ir.ui.menu,name:base.menu_partner_address_form msgid "Addresses" -msgstr "" +msgstr "Addresses" #. module: base #: model:res.country,name:base.mm msgid "Myanmar" -msgstr "" +msgstr "Myanmar" #. module: base #: selection:base.language.install,lang:0 msgid "Chinese (CN) / 简体中文" -msgstr "" +msgstr "Chinese (CN) / 简体中文" #. module: base #: field:res.bank,street:0 #: field:res.partner.address,street:0 #: field:res.partner.bank,street:0 msgid "Street" -msgstr "" +msgstr "Street" #. module: base #: model:res.country,name:base.yu msgid "Yugoslavia" -msgstr "" +msgstr "Yugoslavia" #. module: base #: field:ir.model.data,name:0 msgid "XML Identifier" -msgstr "" +msgstr "XML Identifier" #. module: base #: model:res.country,name:base.ca msgid "Canada" -msgstr "" +msgstr "Canada" #. module: base #: selection:ir.module.module.dependency,state:0 msgid "Unknown" -msgstr "" +msgstr "Unknown" #. module: base #: model:ir.actions.act_window,name:base.action_res_users_my msgid "Change My Preferences" -msgstr "" +msgstr "Change My Preferences" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." -msgstr "" +msgstr "Invalid model name in the action definition." #. module: base #: field:partner.sms.send,text:0 msgid "SMS Message" -msgstr "" +msgstr "SMS üzenet" #. module: base #: model:res.country,name:base.cm msgid "Cameroon" -msgstr "" +msgstr "Cameroon" #. module: base #: model:res.country,name:base.bf msgid "Burkina Faso" -msgstr "" +msgstr "Burkina Faso" #. module: base #: selection:ir.actions.todo,state:0 msgid "Skipped" -msgstr "" +msgstr "Skipped" #. module: base #: selection:ir.model.fields,state:0 msgid "Custom Field" -msgstr "" +msgstr "Custom Field" #. module: base #: field:ir.module.module,web:0 msgid "Has a web component" -msgstr "" +msgstr "Has a web component" #. module: base #: model:res.country,name:base.cc msgid "Cocos (Keeling) Islands" -msgstr "" +msgstr "Cocos (Keeling) Islands" #. module: base #: selection:base.language.install,state:0 #: selection:base.module.import,state:0 #: selection:base.module.update,state:0 msgid "init" -msgstr "" +msgstr "init" #. module: base #: view:res.lang:0 msgid "11. %U or %W ==> 48 (49th week)" -msgstr "" +msgstr "11. %U or %W ==> 48 (49th week)" #. module: base #: model:ir.model,name:base.model_res_partner_bank_type_field msgid "Bank type fields" -msgstr "" +msgstr "Bank type fields" #. module: base #: selection:base.language.install,lang:0 msgid "Dutch / Nederlands" -msgstr "" +msgstr "Dutch / Nederlands" #. module: base #: model:res.widget,title:base.rvalyi_twitter_widget @@ -4510,69 +4860,72 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" "\n" "This addon is already installed on your system" msgstr "" +"\n" +"\n" +"This addon is already installed on your system" #. module: base #: help:ir.cron,interval_number:0 msgid "Repeat every x." -msgstr "" +msgstr "Repeat every x." #. module: base #: wizard_view:server.action.create,step_1:0 #: wizard_field:server.action.create,step_1,report:0 msgid "Select Report" -msgstr "" +msgstr "Select Report" #. module: base #: report:ir.module.reference.graph:0 msgid "1cm 28cm 20cm 28cm" -msgstr "" +msgstr "1cm 28cm 20cm 28cm" #. module: base #: field:ir.module.module,maintainer:0 msgid "Maintainer" -msgstr "" +msgstr "Maintainer" #. module: base #: field:ir.sequence,suffix:0 msgid "Suffix" -msgstr "" +msgstr "Suffix" #. module: base #: model:res.country,name:base.mo msgid "Macau" -msgstr "" +msgstr "Macau" #. module: base #: model:ir.actions.report.xml,name:base.res_partner_address_report msgid "Labels" -msgstr "" +msgstr "Címkék" #. module: base #: field:partner.wizard.spam,email_from:0 msgid "Sender's email" -msgstr "" +msgstr "Küldő emailcíme" #. module: base #: field:ir.default,field_name:0 msgid "Object Field" -msgstr "" +msgstr "Object Field" #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (PE) / Español (PE)" -msgstr "" +msgstr "Spanish (PE) / Español (PE)" #. module: base #: selection:base.language.install,lang:0 msgid "French (CH) / Français (CH)" -msgstr "" +msgstr "French (CH) / Français (CH)" #. module: base #: help:res.config.users,action_id:0 @@ -4581,100 +4934,110 @@ msgid "" "If specified, this action will be opened at logon for this user, in addition " "to the standard menu." msgstr "" +"If specified, this action will be opened at logon for this user, in addition " +"to the standard menu." #. module: base #: view:ir.values:0 msgid "Client Actions" -msgstr "" +msgstr "Client Actions" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "The exists method is not implemented on this object !" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" "But this module is not available in your system." msgstr "" +"You try to upgrade a module that depends on the module: %s.\n" +"But this module is not available in your system." #. module: base #: field:workflow.transition,act_to:0 msgid "Destination Activity" -msgstr "" +msgstr "Destination Activity" #. module: base #: view:ir.values:0 msgid "Connect Events to Actions" -msgstr "" +msgstr "Connect Events to Actions" #. module: base #: model:ir.model,name:base.model_base_update_translations msgid "base.update.translations" -msgstr "" +msgstr "base.update.translations" #. module: base #: field:ir.module.category,parent_id:0 #: field:res.partner.category,parent_id:0 msgid "Parent Category" -msgstr "" +msgstr "Parent Category" #. module: base #: selection:ir.property,type:0 msgid "Integer Big" -msgstr "" +msgstr "Integer Big" #. module: base #: selection:res.partner.address,type:0 #: selection:res.partner.title,domain:0 #: view:res.users:0 msgid "Contact" -msgstr "" +msgstr "Kapcsolattartó" #. module: base #: model:ir.model,name:base.model_ir_ui_menu msgid "ir.ui.menu" -msgstr "" +msgstr "ir.ui.menu" #. module: base #: view:partner.wizard.ean.check:0 msgid "Ignore" -msgstr "" +msgstr "Ignore" #. module: base #: view:ir.module.module:0 msgid "Cancel Uninstall" -msgstr "" +msgstr "Cancel Uninstall" #. module: base #: view:res.bank:0 #: view:res.partner:0 #: view:res.partner.address:0 msgid "Communication" -msgstr "" +msgstr "Communication" #. module: base #: view:ir.actions.report.xml:0 msgid "RML Report" -msgstr "" +msgstr "RML Report" #. module: base #: model:ir.model,name:base.model_ir_server_object_lines msgid "ir.server.object.lines" -msgstr "" +msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" -msgstr "" +msgstr "Module %s: Invalid Quality Certificate" #. module: base #: model:res.country,name:base.kw msgid "Kuwait" -msgstr "" +msgstr "Kuwait" #. module: base #: field:workflow.workitem,inst_id:0 msgid "Instance" -msgstr "" +msgstr "Instance" #. module: base #: help:ir.actions.report.xml,attachment:0 @@ -4683,51 +5046,59 @@ msgid "" "Keep empty to not save the printed reports. You can use a python expression " "with the object and time variables." msgstr "" +"This is the filename of the attachment used to store the printing result. " +"Keep empty to not save the printed reports. You can use a python expression " +"with the object and time variables." #. module: base #: selection:ir.property,type:0 msgid "Many2One" -msgstr "" +msgstr "Many2One" #. module: base #: model:res.country,name:base.ng msgid "Nigeria" -msgstr "" +msgstr "Nigeria" #. module: base #: model:ir.model,name:base.model_res_partner_event msgid "res.partner.event" -msgstr "" +msgstr "res.partner.event" #. module: base #: model:ir.actions.act_window,name:base.action_partner_sms_send msgid "SMS Send" -msgstr "" +msgstr "SMS küldés" #. module: base #: field:res.company,user_ids:0 msgid "Accepted Users" -msgstr "" +msgstr "Accepted Users" + +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "Web Icon Image" #. module: base #: view:ir.values:0 msgid "Values for Event Type" -msgstr "" +msgstr "Values for Event Type" #. module: base #: selection:ir.model.fields,select_level:0 msgid "Always Searchable" -msgstr "" +msgstr "Always Searchable" #. module: base #: model:res.country,name:base.hk msgid "Hong Kong" -msgstr "" +msgstr "Hong Kong" #. module: base #: help:ir.actions.server,name:0 msgid "Easy to Refer action by name e.g. One Sales Order -> Many Invoices" -msgstr "" +msgstr "Easy to Refer action by name e.g. One Sales Order -> Many Invoices" #. module: base #: model:ir.actions.act_window,help:base.action_partner_address_form @@ -4740,78 +5111,87 @@ msgid "" "installed the CRM, with the history tab, you can track all the interactions " "with a partner such as opportunities, emails, or sales orders issued." msgstr "" +"Customers (also called Partners in other areas of the system) helps you " +"manage your address book of companies whether they are prospects, customers " +"and/or suppliers. The partner form allows you to track and record all the " +"necessary information to interact with your partners from the company " +"address to their contacts as well as pricelists, and much more. If you " +"installed the CRM, with the history tab, you can track all the interactions " +"with a partner such as opportunities, emails, or sales orders issued." #. module: base #: model:res.country,name:base.ph msgid "Philippines" -msgstr "" +msgstr "Philippines" #. module: base #: model:res.country,name:base.ma msgid "Morocco" -msgstr "" +msgstr "Morocco" #. module: base #: view:res.lang:0 msgid "2. %a ,%A ==> Fri, Friday" -msgstr "" +msgstr "2. %a ,%A ==> Fri, Friday" #. module: base #: field:res.widget,content:0 msgid "Content" -msgstr "" +msgstr "Content" #. module: base #: help:ir.rule,global:0 msgid "If no group is specified the rule is global and applied to everyone" msgstr "" +"Ha nincs megadva csoport, akkor a szabály globális és mindenkire vonatkozik" #. module: base #: model:res.country,name:base.td msgid "Chad" -msgstr "" +msgstr "Chad" #. module: base #: model:ir.model,name:base.model_workflow_transition msgid "workflow.transition" -msgstr "" +msgstr "workflow.transition" #. module: base #: view:res.lang:0 msgid "%a - Abbreviated weekday name." -msgstr "" +msgstr "%a - Abbreviated weekday name." #. module: base #: report:ir.module.reference.graph:0 msgid "Introspection report on objects" -msgstr "" +msgstr "Introspection report on objects" #. module: base #: model:res.country,name:base.pf msgid "Polynesia (French)" -msgstr "" +msgstr "Polynesia (French)" #. module: base #: model:res.country,name:base.dm msgid "Dominica" -msgstr "" +msgstr "Dominica" #. module: base #: sql_constraint:publisher_warranty.contract:0 msgid "" "Your publisher warranty contract is already subscribed in the system !" msgstr "" +"Your publisher warranty contract is already subscribed in the system !" #. module: base #: help:ir.cron,nextcall:0 msgid "Next planned execution date for this scheduler" -msgstr "" +msgstr "Next planned execution date for this scheduler" #. module: base #: help:res.config.users,view:0 #: help:res.users,view:0 msgid "Choose between the simplified interface and the extended one" -msgstr "" +msgstr "Choose between the simplified interface and the extended one" #. module: base #: model:res.widget,title:base.odony_twitter_widget @@ -4821,12 +5201,22 @@ msgstr "" #. module: base #: model:res.country,name:base.np msgid "Nepal" +msgstr "Nepal" + +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" msgstr "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" -msgstr "" +msgstr "Arguments to be passed to the method. e.g. (uid,)" #. module: base #: help:ir.ui.menu,groups_id:0 @@ -4835,31 +5225,35 @@ msgid "" "groups. If this field is empty, OpenERP will compute visibility based on the " "related object's read access." msgstr "" +"If you have groups, the visibility of this menu will be based on these " +"groups. If this field is empty, OpenERP will compute visibility based on the " +"related object's read access." #. module: base #: view:partner.sms.send:0 msgid "Bulk SMS send" -msgstr "" +msgstr "Bulk SMS send" #. module: base #: view:ir.sequence:0 msgid "Seconde: %(sec)s" -msgstr "" +msgstr "Seconde: %(sec)s" #. module: base #: model:ir.ui.menu,name:base.menu_view_base_module_update msgid "Update Modules List" -msgstr "" +msgstr "Modullista frissítés" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" +"Unable to upgrade module \"%s\" because an external dependency is not met: %s" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4867,62 +5261,72 @@ msgid "" "sure to save and close all forms before switching to a different company. " "(You can click on Cancel in the User Preferences now)" msgstr "" +"Please keep in mind that documents currently displayed may not be relevant " +"after switching to another company. If you have unsaved changes, please make " +"sure to save and close all forms before switching to a different company. " +"(You can click on Cancel in the User Preferences now)" #. module: base #: view:ir.actions.configuration.wizard:0 msgid "Continue" -msgstr "" +msgstr "Continue" #. module: base #: selection:base.language.install,lang:0 msgid "Thai / ภาษาไทย" -msgstr "" +msgstr "Thai / ภาษาไทย" + +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "Object %s does not exists" #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" -msgstr "" +msgstr "Slovenian / slovenščina" #. module: base #: field:ir.actions.report.xml,attachment_use:0 msgid "Reload from Attachment" -msgstr "" +msgstr "Reload from Attachment" #. module: base #: model:res.country,name:base.bv msgid "Bouvet Island" -msgstr "" +msgstr "Bouvet Island" #. module: base #: field:ir.attachment,name:0 msgid "Attachment Name" -msgstr "" +msgstr "Attachment Name" #. module: base #: field:base.language.export,data:0 #: field:base.language.import,data:0 msgid "File" -msgstr "" +msgstr "File" #. module: base #: view:res.config.users:0 msgid "Add User" -msgstr "" +msgstr "Add User" #. module: base #: model:ir.actions.act_window,name:base.action_view_base_module_upgrade_install msgid "Module Upgrade Install" -msgstr "" +msgstr "Module Upgrade Install" #. module: base #: model:ir.model,name:base.model_ir_actions_configuration_wizard msgid "ir.actions.configuration.wizard" -msgstr "" +msgstr "ir.actions.configuration.wizard" #. module: base #: view:res.lang:0 msgid "%b - Abbreviated month name." -msgstr "" +msgstr "%b - Abbreviated month name." #. module: base #: field:res.partner,supplier:0 @@ -4930,88 +5334,95 @@ msgstr "" #: field:res.partner.address,is_supplier_add:0 #: model:res.partner.category,name:base.res_partner_category_8 msgid "Supplier" -msgstr "" +msgstr "Beszállító" #. module: base #: view:ir.actions.server:0 #: selection:ir.actions.server,state:0 msgid "Multi Actions" -msgstr "" +msgstr "Multi Actions" #. module: base #: view:base.language.export:0 #: view:base.language.import:0 #: view:wizard.ir.model.menu.create:0 msgid "_Close" -msgstr "" +msgstr "_Close" #. module: base #: field:multi_company.default,company_dest_id:0 msgid "Default Company" -msgstr "" +msgstr "Default Company" #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (EC) / Español (EC)" -msgstr "" +msgstr "Spanish (EC) / Español (EC)" #. module: base #: help:ir.ui.view,xml_id:0 msgid "ID of the view defined in xml file" -msgstr "" +msgstr "ID of the view defined in xml file" #. module: base #: model:ir.model,name:base.model_base_module_import #: model:ir.ui.menu,name:base.menu_view_base_module_import msgid "Import Module" -msgstr "" +msgstr "Import Module" #. module: base #: model:res.country,name:base.as msgid "American Samoa" -msgstr "" +msgstr "American Samoa" #. module: base #: help:ir.actions.act_window,res_model:0 msgid "Model name of the object to open in the view window" -msgstr "" +msgstr "Model name of the object to open in the view window" #. module: base #: field:res.log,secondary:0 msgid "Secondary Log" -msgstr "" +msgstr "Secondary Log" #. module: base #: field:ir.model.fields,selectable:0 msgid "Selectable" -msgstr "" +msgstr "Selectable" #. module: base #: view:res.request.link:0 msgid "Request Link" -msgstr "" +msgstr "Request Link" #. module: base #: view:ir.attachment:0 #: selection:ir.attachment,type:0 #: field:ir.module.module,url:0 msgid "URL" -msgstr "" +msgstr "URL" #. module: base #: help:res.country,name:0 msgid "The full name of the country." -msgstr "" +msgstr "Az ország teljes neve." #. module: base #: selection:ir.actions.server,state:0 msgid "Iteration" -msgstr "" +msgstr "Iteration" + +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "UserError" #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" -msgstr "" +msgstr "United Arab Emirates" #. module: base #: model:ir.ui.menu,name:base.menu_crm_case_job_req_main @@ -5021,56 +5432,67 @@ msgstr "" #. module: base #: model:res.country,name:base.re msgid "Reunion (French)" -msgstr "" +msgstr "Reunion (French)" #. module: base #: view:ir.model.access:0 #: view:ir.rule:0 #: field:ir.rule,global:0 msgid "Global" -msgstr "" +msgstr "Global" #. module: base #: view:res.users:0 msgid "You must logout and login again after changing your password." -msgstr "" +msgstr "You must logout and login again after changing your password." #. module: base #: model:res.country,name:base.mp msgid "Northern Mariana Islands" -msgstr "" +msgstr "Northern Mariana Islands" #. module: base #: model:res.country,name:base.sb msgid "Solomon Islands" -msgstr "" +msgstr "Solomon Islands" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" -msgstr "" +msgstr "AccessError" #. module: base #: view:res.request:0 msgid "Waiting" -msgstr "" +msgstr "Waiting" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" -msgstr "" +msgstr "Could not load base module" #. module: base #: view:res.lang:0 msgid "8. %I:%M:%S %p ==> 06:25:20 PM" -msgstr "" +msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" + +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "The copy method is not implemented on this object !" #. module: base #: field:res.log,create_date:0 msgid "Creation Date" -msgstr "" +msgstr "Creation Date" #. module: base #: view:ir.translation:0 @@ -5081,48 +5503,48 @@ msgstr "Fordítások" #. module: base #: field:ir.sequence,padding:0 msgid "Number padding" -msgstr "" +msgstr "Number padding" #. module: base #: view:ir.actions.report.xml:0 msgid "Report" -msgstr "" +msgstr "Report" #. module: base #: model:res.country,name:base.ua msgid "Ukraine" -msgstr "" +msgstr "Ukraine" #. module: base #: model:res.country,name:base.to msgid "Tonga" -msgstr "" +msgstr "Tonga" #. module: base #: model:ir.model,name:base.model_ir_module_category #: view:ir.module.category:0 msgid "Module Category" -msgstr "" +msgstr "Module Category" #. module: base #: model:res.country,name:base.us msgid "United States" -msgstr "" +msgstr "United States" #. module: base #: report:ir.module.reference.graph:0 msgid "Reference Guide" -msgstr "" +msgstr "Reference Guide" #. module: base #: view:ir.ui.view:0 msgid "Architecture" -msgstr "" +msgstr "Architecture" #. module: base #: model:res.country,name:base.ml msgid "Mali" -msgstr "" +msgstr "Mali" #. module: base #: help:res.config.users,email:0 @@ -5133,31 +5555,35 @@ msgid "" "Warning: if \"email_from\" and \"smtp_server\" aren't configured, it won't " "be possible to email new users." msgstr "" +"If an email is provided, the user will be sent a message welcoming him.\n" +"\n" +"Warning: if \"email_from\" and \"smtp_server\" aren't configured, it won't " +"be possible to email new users." #. module: base #: selection:base.language.install,lang:0 msgid "Flemish (BE) / Vlaams (BE)" -msgstr "" +msgstr "Flemish (BE) / Vlaams (BE)" #. module: base #: field:ir.cron,interval_number:0 msgid "Interval Number" -msgstr "" +msgstr "Interval Number" #. module: base #: model:res.country,name:base.tk msgid "Tokelau" -msgstr "" +msgstr "Tokelau" #. module: base #: field:ir.actions.report.xml,report_xsl:0 msgid "XSL path" -msgstr "" +msgstr "XSL path" #. module: base #: model:res.country,name:base.bn msgid "Brunei Darussalam" -msgstr "" +msgstr "Brunei Darussalam" #. module: base #: view:ir.actions.act_window:0 @@ -5171,53 +5597,53 @@ msgstr "Nézet típusa" #. module: base #: model:ir.ui.menu,name:base.next_id_2 msgid "User Interface" -msgstr "" +msgstr "Felhasználói felület" #. module: base #: field:ir.attachment,create_date:0 msgid "Date Created" -msgstr "" +msgstr "Date Created" #. module: base #: model:ir.model,name:base.model_ir_actions_todo msgid "ir.actions.todo" -msgstr "" +msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" -msgstr "" +msgstr "Couldn't find previous ir.actions.todo" #. module: base #: view:ir.actions.act_window:0 msgid "General Settings" -msgstr "" +msgstr "General Settings" #. module: base #: model:ir.ui.menu,name:base.menu_administration_shortcut msgid "Custom Shortcuts" -msgstr "" +msgstr "Custom Shortcuts" #. module: base #: selection:base.language.install,lang:0 msgid "Vietnamese / Tiếng Việt" -msgstr "" +msgstr "Vietnamese / Tiếng Việt" #. module: base #: model:res.country,name:base.dz msgid "Algeria" -msgstr "" +msgstr "Algeria" #. module: base #: model:res.country,name:base.be msgid "Belgium" -msgstr "" +msgstr "Belgium" #. module: base #: model:ir.model,name:base.model_osv_memory_autovacuum msgid "osv_memory.autovacuum" -msgstr "" +msgstr "osv_memory.autovacuum" #. module: base #: field:base.language.export,lang:0 @@ -5228,12 +5654,12 @@ msgstr "" #: field:res.partner,lang:0 #: field:res.users,context_lang:0 msgid "Language" -msgstr "" +msgstr "Language" #. module: base #: model:res.country,name:base.gm msgid "Gambia" -msgstr "" +msgstr "Gambia" #. module: base #: model:ir.actions.act_window,name:base.action_res_company_form @@ -5245,47 +5671,53 @@ msgstr "" #: view:res.users:0 #: field:res.users,company_ids:0 msgid "Companies" -msgstr "" +msgstr "Companies" #. module: base #: view:res.lang:0 msgid "%H - Hour (24-hour clock) [00,23]." -msgstr "" +msgstr "%H - Hour (24-hour clock) [00,23]." #. module: base #: model:ir.model,name:base.model_res_widget msgid "res.widget" -msgstr "" +msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" -msgstr "" +msgstr "Model %s does not exist!" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" -msgstr "" +msgstr "You cannot delete the language which is User's Preferred Language !" + +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "Not implemented get_memory method !" #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 #: selection:ir.actions.server,state:0 msgid "Python Code" -msgstr "" +msgstr "Python Code" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" -msgstr "" +msgstr "Can not create the module file: %s !" #. module: base #: model:ir.module.module,description:base.module_meta_information msgid "The kernel of OpenERP, needed for all installation." -msgstr "" +msgstr "The kernel of OpenERP, needed for all installation." #. module: base #: view:base.language.install:0 @@ -5299,27 +5731,27 @@ msgstr "" #: view:publisher_warranty.contract.wizard:0 #: view:res.widget.wizard:0 msgid "Cancel" -msgstr "" +msgstr "Cancel" #. module: base #: selection:base.language.export,format:0 msgid "PO File" -msgstr "" +msgstr "PO File" #. module: base #: model:res.country,name:base.nt msgid "Neutral Zone" -msgstr "" +msgstr "Neutral Zone" #. module: base #: view:ir.model:0 msgid "Custom" -msgstr "" +msgstr "Custom" #. module: base #: view:res.request:0 msgid "Current" -msgstr "" +msgstr "Current" #. module: base #: model:res.partner.category,name:base.res_partner_category_9 @@ -5335,43 +5767,43 @@ msgstr "" #: field:res.groups,users:0 #: view:res.users:0 msgid "Users" -msgstr "" +msgstr "Users" #. module: base #: field:ir.module.module,published_version:0 msgid "Published Version" -msgstr "" +msgstr "Published Version" #. module: base #: model:res.country,name:base.is msgid "Iceland" -msgstr "" +msgstr "Iceland" #. module: base #: model:ir.actions.act_window,name:base.ir_action_window #: model:ir.ui.menu,name:base.menu_ir_action_window msgid "Window Actions" -msgstr "" +msgstr "Window Actions" #. module: base #: view:res.lang:0 msgid "%I - Hour (12-hour clock) [01,12]." -msgstr "" +msgstr "%I - Hour (12-hour clock) [01,12]." #. module: base #: selection:publisher_warranty.contract.wizard,state:0 msgid "Finished" -msgstr "" +msgstr "Finished" #. module: base #: model:res.country,name:base.de msgid "Germany" -msgstr "" +msgstr "Germany" #. module: base #: view:ir.sequence:0 msgid "Week of the year: %(woy)s" -msgstr "" +msgstr "Week of the year: %(woy)s" #. module: base #: model:res.partner.category,name:base.res_partner_category_14 @@ -5381,12 +5813,12 @@ msgstr "" #. module: base #: report:ir.module.reference.graph:0 msgid "Reports :" -msgstr "" +msgstr "Reports :" #. module: base #: model:res.country,name:base.gy msgid "Guyana" -msgstr "" +msgstr "Guyana" #. module: base #: help:ir.actions.act_window,view_type:0 @@ -5394,22 +5826,24 @@ msgid "" "View type: set to 'tree' for a hierarchical tree view, or 'form' for other " "views" msgstr "" +"View type: set to 'tree' for a hierarchical tree view, or 'form' for other " +"views" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." -msgstr "" +msgstr "Click 'Continue' to configure the next addon..." #. module: base #: field:ir.actions.server,record_id:0 msgid "Create Id" -msgstr "" +msgstr "Create Id" #. module: base #: model:res.country,name:base.hn msgid "Honduras" -msgstr "" +msgstr "Honduras" #. module: base #: help:res.config.users,menu_tips:0 @@ -5417,43 +5851,45 @@ msgstr "" msgid "" "Check out this box if you want to always display tips on each menu action" msgstr "" +"Check out this box if you want to always display tips on each menu action" #. module: base #: model:res.country,name:base.eg msgid "Egypt" -msgstr "" +msgstr "Egypt" #. module: base #: field:ir.rule,perm_read:0 msgid "Apply For Read" -msgstr "" +msgstr "Apply For Read" #. module: base #: help:ir.actions.server,model_id:0 msgid "" "Select the object on which the action will work (read, write, create)." msgstr "" +"Select the object on which the action will work (read, write, create)." #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" -msgstr "" +msgstr "Please specify server option --email-from !" #. module: base #: field:base.language.import,name:0 msgid "Language Name" -msgstr "" +msgstr "Language Name" #. module: base #: selection:ir.property,type:0 msgid "Boolean" -msgstr "" +msgstr "Boolean" #. module: base #: view:ir.model:0 msgid "Fields Description" -msgstr "" +msgstr "Fields Description" #. module: base #: view:ir.attachment:0 @@ -5469,14 +5905,14 @@ msgstr "" #: view:res.partner.address:0 #: view:workflow.activity:0 msgid "Group By..." -msgstr "" +msgstr "Group By..." #. module: base #: view:ir.model.fields:0 #: field:ir.model.fields,readonly:0 #: field:res.partner.bank.type.field,readonly:0 msgid "Readonly" -msgstr "" +msgstr "Readonly" #. module: base #: field:ir.actions.act_window.view,view_id:0 @@ -5484,13 +5920,13 @@ msgstr "" #: selection:ir.translation,type:0 #: field:wizard.ir.model.menu.create.line,view_id:0 msgid "View" -msgstr "" +msgstr "View" #. module: base #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 msgid "To be installed" -msgstr "" +msgstr "To be installed" #. module: base #: help:ir.actions.act_window,display_menu_tip:0 @@ -5498,23 +5934,25 @@ msgid "" "It gives the status if the tip has to be displayed or not when a user " "executes an action" msgstr "" +"It gives the status if the tip has to be displayed or not when a user " +"executes an action" #. module: base #: view:ir.model:0 #: model:ir.module.module,shortdesc:base.module_meta_information #: field:res.currency,base:0 msgid "Base" -msgstr "" +msgstr "Base" #. module: base #: selection:base.language.install,lang:0 msgid "Telugu / తెలుగు" -msgstr "" +msgstr "Telugu / తెలుగు" #. module: base #: model:res.country,name:base.lr msgid "Liberia" -msgstr "" +msgstr "Liberia" #. module: base #: view:ir.attachment:0 @@ -5539,7 +5977,7 @@ msgstr "Jegyzetek" #: field:ir.values,value:0 #: field:ir.values,value_unpickle:0 msgid "Value" -msgstr "" +msgstr "Value" #. module: base #: field:ir.sequence,code:0 @@ -5548,27 +5986,27 @@ msgstr "" #: field:res.bank,code:0 #: field:res.partner.bank.type,code:0 msgid "Code" -msgstr "" +msgstr "Code" #. module: base #: model:ir.model,name:base.model_res_config_installer msgid "res.config.installer" -msgstr "" +msgstr "res.config.installer" #. module: base #: model:res.country,name:base.mc msgid "Monaco" -msgstr "" +msgstr "Monaco" #. module: base #: selection:ir.cron,interval_type:0 msgid "Minutes" -msgstr "" +msgstr "Minutes" #. module: base #: selection:ir.translation,type:0 msgid "Help" -msgstr "" +msgstr "Help" #. module: base #: help:res.config.users,menu_id:0 @@ -5576,11 +6014,12 @@ msgstr "" msgid "" "If specified, the action will replace the standard menu for this user." msgstr "" +"If specified, the action will replace the standard menu for this user." #. module: base #: selection:ir.actions.server,state:0 msgid "Write Object" -msgstr "" +msgstr "Write Object" #. module: base #: model:ir.ui.menu,name:base.menu_fundrising @@ -5591,12 +6030,12 @@ msgstr "" #: model:ir.actions.act_window,name:base.ir_sequence_type #: model:ir.ui.menu,name:base.menu_ir_sequence_type msgid "Sequence Codes" -msgstr "" +msgstr "Sequence Codes" #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CO) / Español (CO)" -msgstr "" +msgstr "Spanish (CO) / Español (CO)" #. module: base #: view:base.module.configuration:0 @@ -5604,85 +6043,93 @@ msgid "" "All pending configuration wizards have been executed. You may restart " "individual wizards via the list of configuration wizards." msgstr "" +"All pending configuration wizards have been executed. You may restart " +"individual wizards via the list of configuration wizards." #. module: base #: wizard_button:server.action.create,step_1,create:0 msgid "Create" -msgstr "" +msgstr "Create" #. module: base #: view:ir.sequence:0 msgid "Current Year with Century: %(year)s" -msgstr "" +msgstr "Current Year with Century: %(year)s" #. module: base #: field:ir.exports,export_fields:0 msgid "Export ID" -msgstr "" +msgstr "Export ID" #. module: base #: model:res.country,name:base.fr msgid "France" -msgstr "" +msgstr "France" #. module: base #: model:ir.model,name:base.model_res_log msgid "res.log" -msgstr "" +msgstr "res.log" #. module: base #: view:workflow.activity:0 #: field:workflow.activity,flow_stop:0 msgid "Flow Stop" -msgstr "" +msgstr "Flow Stop" #. module: base #: selection:ir.cron,interval_type:0 msgid "Weeks" -msgstr "" +msgstr "Weeks" #. module: base #: model:res.country,name:base.af msgid "Afghanistan, Islamic State of" -msgstr "" +msgstr "Afghanistan, Islamic State of" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" -msgstr "" +msgstr "Error !" #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field_contry msgid "country_id" -msgstr "" +msgstr "country_id" #. module: base #: field:ir.cron,interval_type:0 msgid "Interval Unit" -msgstr "" +msgstr "Interval Unit" #. module: base #: field:publisher_warranty.contract,kind:0 #: field:workflow.activity,kind:0 msgid "Kind" -msgstr "" +msgstr "Kind" + +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "This method does not exist anymore" #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 msgid "Fax" -msgstr "" +msgstr "Fax" #. module: base #: field:res.lang,thousands_sep:0 msgid "Thousands Separator" -msgstr "" +msgstr "Thousands Separator" #. module: base #: field:res.request,create_date:0 msgid "Created Date" -msgstr "" +msgstr "Created Date" #. module: base #: help:ir.actions.server,loop_action:0 @@ -5690,26 +6137,28 @@ msgid "" "Select the action that will be executed. Loop action will not be avaliable " "inside loop." msgstr "" +"Select the action that will be executed. Loop action will not be avaliable " +"inside loop." #. module: base #: selection:base.language.install,lang:0 msgid "Chinese (TW) / 正體字" -msgstr "" +msgstr "Chinese (TW) / 正體字" #. module: base #: model:ir.model,name:base.model_res_request msgid "res.request" -msgstr "" +msgstr "res.request" #. module: base #: view:ir.model:0 msgid "In Memory" -msgstr "" +msgstr "In Memory" #. module: base #: view:ir.actions.todo:0 msgid "Todo" -msgstr "" +msgstr "Todo" #. module: base #: field:ir.attachment,datas:0 @@ -5719,69 +6168,71 @@ msgstr "" #. module: base #: model:res.country,name:base.pa msgid "Panama" -msgstr "" +msgstr "Panama" #. module: base #: model:res.partner.title,name:base.res_partner_title_ltd msgid "Ltd" -msgstr "" +msgstr "Ltd" #. module: base #: help:workflow.transition,group_id:0 msgid "" "The group that a user must have to be authorized to validate this transition." msgstr "" +"The group that a user must have to be authorized to validate this transition." #. module: base #: constraint:res.config.users:0 #: constraint:res.users:0 msgid "The chosen company is not in the allowed companies for this user" -msgstr "" +msgstr "The chosen company is not in the allowed companies for this user" #. module: base #: model:res.country,name:base.gi msgid "Gibraltar" -msgstr "" +msgstr "Gibraltar" #. module: base #: field:ir.actions.report.xml,report_name:0 msgid "Service Name" -msgstr "" +msgstr "Service Name" #. module: base #: model:res.country,name:base.pn msgid "Pitcairn Island" -msgstr "" +msgstr "Pitcairn Island" #. module: base #: view:base.module.upgrade:0 msgid "" "We suggest to reload the menu tab to see the new menus (Ctrl+T then Ctrl+R)." msgstr "" +"We suggest to reload the menu tab to see the new menus (Ctrl+T then Ctrl+R)." #. 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 "Record Rules" #. module: base #: field:res.config.users,name:0 #: field:res.users,name:0 msgid "User Name" -msgstr "" +msgstr "User Name" #. module: base #: view:ir.sequence:0 msgid "Day of the year: %(doy)s" -msgstr "" +msgstr "Day of the year: %(doy)s" #. module: base #: view:ir.model:0 #: view:ir.model.fields:0 #: view:workflow.activity:0 msgid "Properties" -msgstr "" +msgstr "Properties" #. module: base #: help:ir.sequence,padding:0 @@ -5789,26 +6240,28 @@ msgid "" "OpenERP will automatically adds some '0' on the left of the 'Next Number' to " "get the required padding size." msgstr "" +"OpenERP will automatically adds some '0' on the left of the 'Next Number' to " +"get the required padding size." #. module: base #: view:res.lang:0 msgid "%A - Full weekday name." -msgstr "" +msgstr "%A - Full weekday name." #. module: base #: selection:ir.cron,interval_type:0 msgid "Months" -msgstr "" +msgstr "Months" #. module: base #: field:ir.actions.act_window,search_view:0 msgid "Search View" -msgstr "" +msgstr "Search View" #. module: base #: sql_constraint:res.lang:0 msgid "The code of the language must be unique !" -msgstr "" +msgstr "The code of the language must be unique !" #. module: base #: model:ir.actions.act_window,name:base.action_attachment @@ -5816,42 +6269,42 @@ msgstr "" #: view:ir.attachment:0 #: model:ir.ui.menu,name:base.menu_action_attachment msgid "Attachments" -msgstr "" +msgstr "Attachments" #. module: base #: model:ir.ui.menu,name:base.menu_base_partner #: model:ir.ui.menu,name:base.menu_sale_config_sales #: model:ir.ui.menu,name:base.menu_sales msgid "Sales" -msgstr "" +msgstr "Értékesítés" #. module: base #: field:ir.actions.server,child_ids:0 msgid "Other Actions" -msgstr "" +msgstr "Other Actions" #. module: base #: selection:ir.actions.todo,state:0 #: view:res.config.users:0 msgid "Done" -msgstr "" +msgstr "Done" #. module: base #: model:res.partner.title,name:base.res_partner_title_miss msgid "Miss" -msgstr "" +msgstr "Miss" #. module: base #: view:ir.model.access:0 #: field:ir.model.access,perm_write:0 #: view:ir.rule:0 msgid "Write Access" -msgstr "" +msgstr "Write Access" #. module: base #: view:res.lang:0 msgid "%m - Month number [01,12]." -msgstr "" +msgstr "%m - Month number [01,12]." #. module: base #: field:res.bank,city:0 @@ -5859,57 +6312,57 @@ msgstr "" #: field:res.partner.address,city:0 #: field:res.partner.bank,city:0 msgid "City" -msgstr "" +msgstr "Város" #. module: base #: model:res.country,name:base.qa msgid "Qatar" -msgstr "" +msgstr "Qatar" #. module: base #: model:res.country,name:base.it msgid "Italy" -msgstr "" +msgstr "Italy" #. module: base #: view:ir.actions.todo:0 #: selection:ir.actions.todo,state:0 msgid "To Do" -msgstr "" +msgstr "To Do" #. module: base #: selection:base.language.install,lang:0 msgid "Estonian / Eesti keel" -msgstr "" +msgstr "Estonian / Eesti keel" #. module: base #: field:res.config.users,email:0 #: field:res.partner,email:0 #: field:res.users,email:0 msgid "E-mail" -msgstr "" +msgstr "E-mail" #. module: base #: selection:ir.module.module,license:0 msgid "GPL-3 or later version" -msgstr "" +msgstr "GPL-3 or later version" #. module: base #: field:workflow.activity,action:0 msgid "Python Action" -msgstr "" +msgstr "Python Action" #. module: base #: selection:base.language.install,lang:0 msgid "English (US)" -msgstr "" +msgstr "English (US)" #. module: base #: model:ir.actions.act_window,name:base.action_model_data #: view:ir.model.data:0 #: model:ir.ui.menu,name:base.ir_model_data_menu msgid "Object Identifiers" -msgstr "" +msgstr "Object Identifiers" #. module: base #: model:ir.actions.act_window,help:base.action_partner_title_partner @@ -5917,11 +6370,23 @@ msgid "" "Manage the partner titles you want to have available in your system. The " "partner titles is the legal status of the company: Private Limited, SA, etc." msgstr "" +"Manage the partner titles you want to have available in your system. The " +"partner titles is the legal status of the company: Private Limited, SA, etc." #. module: base #: view:base.language.export:0 msgid "To browse official translations, you can start with these links:" +msgstr "To browse official translations, you can start with these links:" + +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." msgstr "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." #. module: base #: view:res.bank:0 @@ -5930,79 +6395,74 @@ msgstr "" #: view:res.users:0 #: field:res.users,address_id:0 msgid "Address" -msgstr "" - -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" +msgstr "Address" #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" -msgstr "" +msgstr "Installed version" #. module: base #: selection:base.language.install,lang:0 msgid "Mongolian / монгол" -msgstr "" +msgstr "Mongolian / монгол" #. module: base #: model:res.country,name:base.mr msgid "Mauritania" -msgstr "" +msgstr "Mauritania" #. module: base #: model:ir.model,name:base.model_ir_translation msgid "ir.translation" -msgstr "" +msgstr "ir.translation" #. module: base #: view:base.module.update:0 msgid "Module update result" -msgstr "" +msgstr "Module update result" #. module: base #: view:workflow.activity:0 #: field:workflow.workitem,act_id:0 msgid "Activity" -msgstr "" +msgstr "Activity" #. module: base #: view:res.partner:0 #: view:res.partner.address:0 msgid "Postal Address" -msgstr "" +msgstr "Postai cím" #. module: base #: field:res.company,parent_id:0 msgid "Parent Company" -msgstr "" +msgstr "Parent Company" #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (CR) / Español (CR)" -msgstr "" +msgstr "Spanish (CR) / Español (CR)" #. module: base #: field:res.currency.rate,rate:0 msgid "Rate" -msgstr "" +msgstr "Rate" #. module: base #: model:res.country,name:base.cg msgid "Congo" -msgstr "" +msgstr "Congo" #. module: base #: view:res.lang:0 msgid "Examples" -msgstr "" +msgstr "Examples" #. module: base #: field:ir.default,value:0 msgid "Default Value" -msgstr "" +msgstr "Default Value" #. module: base #: model:ir.ui.menu,name:base.menu_tools @@ -6012,23 +6472,26 @@ msgstr "" #. module: base #: model:res.country,name:base.kn msgid "Saint Kitts & Nevis Anguilla" -msgstr "" +msgstr "Saint Kitts & Nevis Anguilla" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" "for the currency: %s \n" "at the date: %s" msgstr "" +"Nincs árfolyam\n" +"a %s pénznemhez\n" +"a %s napra." #. module: base #: field:ir.model,name:0 #: field:ir.model.fields,model:0 #: field:ir.values,model:0 msgid "Object Name" -msgstr "" +msgstr "Object Name" #. module: base #: help:ir.actions.server,srcmodel_id:0 @@ -6036,34 +6499,36 @@ msgid "" "Object in which you want to create / write the object. If it is empty then " "refer to the Object field." msgstr "" +"Object in which you want to create / write the object. If it is empty then " +"refer to the Object field." #. module: base #: view:ir.module.module:0 #: selection:ir.module.module,state:0 #: selection:ir.module.module.dependency,state:0 msgid "Not Installed" -msgstr "" +msgstr "Not Installed" #. module: base #: view:workflow.activity:0 #: field:workflow.activity,out_transitions:0 msgid "Outgoing Transitions" -msgstr "" +msgstr "Outgoing Transitions" #. module: base #: field:ir.ui.menu,icon:0 msgid "Icon" -msgstr "" +msgstr "Icon" #. module: base #: model:res.country,name:base.mq msgid "Martinique (French)" -msgstr "" +msgstr "Martinique (French)" #. module: base #: view:ir.sequence.type:0 msgid "Sequences Type" -msgstr "" +msgstr "Sequences Type" #. module: base #: model:ir.actions.act_window,name:base.res_request-act @@ -6071,40 +6536,42 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_resquest_ref #: view:res.request:0 msgid "Requests" -msgstr "" +msgstr "Üzenetek" #. module: base #: model:res.country,name:base.ye msgid "Yemen" -msgstr "" +msgstr "Yemen" #. module: base #: selection:workflow.activity,split_mode:0 msgid "Or" -msgstr "" +msgstr "Or" #. module: base #: model:res.country,name:base.pk msgid "Pakistan" -msgstr "" +msgstr "Pakistan" #. module: base #: view:ir.actions.todo:0 msgid "Set as Todo" -msgstr "" +msgstr "Set as Todo" #. module: base #: model:res.country,name:base.ws msgid "Samoa" -msgstr "" +msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" "Please de-activate the language first." msgstr "" +"You cannot delete the language which is Active !\n" +"Please de-activate the language first." #. module: base #: view:base.language.install:0 @@ -6113,38 +6580,48 @@ msgid "" "Please be patient, this operation may take a few minutes (depending on the " "number of modules currently installed)..." msgstr "" +"Please be patient, this operation may take a few minutes (depending on the " +"number of modules currently installed)..." #. module: base #: field:ir.ui.menu,child_id:0 msgid "Child IDs" -msgstr "" +msgstr "Child IDs" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" -msgstr "" +msgstr "Problem in configuration `Record Id` in Server Action!" + +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "ValidateError" #. module: base #: view:base.module.import:0 #: view:base.module.update:0 msgid "Open Modules" -msgstr "" +msgstr "Open Modules" #. module: base #: model:ir.actions.act_window,help:base.action_res_bank_form msgid "Manage bank records you want to be used in the system." -msgstr "" +msgstr "Manage bank records you want to be used in the system." #. module: base #: view:base.module.import:0 msgid "Import module" -msgstr "" +msgstr "Import module" #. module: base #: field:ir.actions.server,loop_action:0 msgid "Loop Action" -msgstr "" +msgstr "Loop Action" #. module: base #: help:ir.actions.report.xml,report_file:0 @@ -6152,24 +6629,36 @@ msgid "" "The path to the main report file (depending on Report Type) or NULL if the " "content is in another field" msgstr "" +"The path to the main report file (depending on Report Type) or NULL if the " +"content is in another field" #. module: base #: model:res.country,name:base.la msgid "Laos" -msgstr "" +msgstr "Laos" #. module: base #: selection:ir.actions.server,state:0 #: field:res.config.users,user_email:0 #: field:res.users,user_email:0 msgid "Email" -msgstr "" +msgstr "Email" #. module: base #: field:res.config.users,action_id:0 #: field:res.users,action_id:0 msgid "Home Action" +msgstr "Home Action" + +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" msgstr "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting @@ -6181,64 +6670,63 @@ msgstr "" #: model:ir.ui.menu,name:base.next_id_73 #: model:ir.ui.menu,name:base.reporting_menu msgid "Reporting" -msgstr "" +msgstr "Reporting" #. module: base #: model:res.country,name:base.tg msgid "Togo" -msgstr "" +msgstr "Togo" #. module: base #: selection:ir.module.module,license:0 msgid "Other Proprietary" -msgstr "" +msgstr "Other Proprietary" #. module: base #: selection:workflow.activity,kind:0 msgid "Stop All" -msgstr "" +msgstr "Stop All" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" -msgstr "" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" +msgstr "The read_group method is not implemented on this object !" #. module: base #: view:ir.model.data:0 msgid "Updatable" -msgstr "" +msgstr "Updatable" #. 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 msgid "Cascade" -msgstr "" +msgstr "Cascade" #. module: base #: field:workflow.transition,group_id:0 msgid "Group Required" -msgstr "" +msgstr "Group Required" #. module: base #: view:ir.actions.configuration.wizard:0 msgid "Next Configuration Step" -msgstr "" +msgstr "Next Configuration Step" #. module: base #: field:res.groups,comment:0 msgid "Comment" -msgstr "" +msgstr "Comment" #. module: base #: model:res.country,name:base.ro msgid "Romania" -msgstr "" +msgstr "Romania" #. module: base #: help:ir.cron,doall:0 @@ -6246,17 +6734,19 @@ msgid "" "Enable this if you want to execute missed occurences as soon as the server " "restarts." msgstr "" +"Enable this if you want to execute missed occurences as soon as the server " +"restarts." #. module: base #: view:base.module.upgrade:0 msgid "Start update" -msgstr "" +msgstr "Start update" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" -msgstr "" +msgstr "Contract validation error" #. module: base #: field:res.country.state,name:0 @@ -6266,29 +6756,29 @@ msgstr "Megye" #. module: base #: field:workflow.activity,join_mode:0 msgid "Join Mode" -msgstr "" +msgstr "Join Mode" #. module: base #: field:res.config.users,context_tz:0 #: field:res.users,context_tz:0 msgid "Timezone" -msgstr "" +msgstr "Timezone" #. module: base #: model:ir.model,name:base.model_ir_actions_report_xml #: selection:ir.ui.menu,action:0 msgid "ir.actions.report.xml" -msgstr "" +msgstr "ir.actions.report.xml" #. module: base #: model:res.partner.title,shortcut:base.res_partner_title_miss msgid "Mss" -msgstr "" +msgstr "Mss" #. module: base #: model:ir.model,name:base.model_ir_ui_view msgid "ir.ui.view" -msgstr "" +msgstr "ir.ui.view" #. module: base #: constraint:res.partner:0 @@ -6298,7 +6788,7 @@ msgstr "" #. module: base #: help:res.lang,code:0 msgid "This field is used to set/get locales for user" -msgstr "" +msgstr "This field is used to set/get locales for user" #. module: base #: model:res.partner.category,name:base.res_partner_category_2 @@ -6311,21 +6801,22 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" msgstr "" +"Unable to install module \"%s\" because an external dependency is not met: %s" #. module: base #: view:ir.module.module:0 msgid "Search modules" -msgstr "" +msgstr "Search modules" #. module: base #: model:res.country,name:base.by msgid "Belarus" -msgstr "" +msgstr "Belarus" #. module: base #: field:ir.actions.act_window,name:0 @@ -6335,7 +6826,7 @@ msgstr "" #: field:ir.actions.url,name:0 #: field:ir.filters,name:0 msgid "Action Name" -msgstr "" +msgstr "Action Name" #. module: base #: model:ir.actions.act_window,help:base.action_res_users @@ -6345,28 +6836,32 @@ msgid "" "not connect to the system. You can assign them groups in order to give them " "specific access to the applications they need to use in the system." msgstr "" +"Create and manage users that will connect to the system. Users can be " +"deactivated should there be a period of time during which they will/should " +"not connect to the system. You can assign them groups in order to give them " +"specific access to the applications they need to use in the system." #. module: base #: selection:res.request,priority:0 msgid "Normal" -msgstr "" +msgstr "Normal" #. module: base #: field:res.bank,street2:0 #: field:res.partner.address,street2:0 msgid "Street2" -msgstr "" +msgstr "Street2" #. module: base #: model:ir.actions.act_window,name:base.action_view_base_module_update msgid "Module Update" -msgstr "" +msgstr "Module Update" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" -msgstr "" +msgstr "Following modules are not installed or unknown: %s" #. module: base #: view:ir.cron:0 @@ -6380,84 +6875,91 @@ msgstr "" #: view:res.users:0 #: field:res.widget.user,user_id:0 msgid "User" -msgstr "" +msgstr "User" #. module: base #: model:res.country,name:base.pr msgid "Puerto Rico" -msgstr "" +msgstr "Puerto Rico" #. module: base #: view:ir.actions.act_window:0 msgid "Open Window" -msgstr "" +msgstr "Open Window" #. module: base #: field:ir.actions.act_window,auto_search:0 msgid "Auto Search" -msgstr "" +msgstr "Auto Search" #. module: base #: field:ir.actions.act_window,filter:0 msgid "Filter" -msgstr "" +msgstr "Filter" #. module: base #: model:res.partner.title,shortcut:base.res_partner_title_madam msgid "Ms." -msgstr "" +msgstr "Ms." #. module: base #: model:res.country,name:base.ch msgid "Switzerland" -msgstr "" +msgstr "Switzerland" #. module: base #: model:res.country,name:base.gd msgid "Grenada" -msgstr "" +msgstr "Grenada" #. module: base #: view:ir.actions.server:0 msgid "Trigger Configuration" -msgstr "" +msgstr "Trigger Configuration" #. module: base #: selection:server.action.create,init,type:0 msgid "Open Report" -msgstr "" +msgstr "Open Report" #. module: base #: field:res.currency,rounding:0 msgid "Rounding factor" -msgstr "" +msgstr "Rounding factor" #. module: base #: view:base.language.install:0 msgid "Load" -msgstr "" +msgstr "Load" #. module: base #: help:res.config.users,name:0 #: help:res.users,name:0 msgid "The new user's real name, used for searching and most listings" -msgstr "" +msgstr "The new user's real name, used for searching and most listings" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "Integrity Error" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" -msgstr "" +msgstr "Size of the field can never be less than 1 !" #. module: base #: model:res.country,name:base.so msgid "Somalia" -msgstr "" +msgstr "Somalia" #. module: base #: selection:publisher_warranty.contract,state:0 msgid "Terminated" -msgstr "" +msgstr "Terminated" #. module: base #: model:res.partner.category,name:base.res_partner_category_13 @@ -6467,81 +6969,102 @@ msgstr "" #. module: base #: view:res.lang:0 msgid "Update Terms" -msgstr "" +msgstr "Update Terms" #. module: base #: field:partner.sms.send,mobile_to:0 #: field:res.request,act_to:0 #: field:res.request.history,act_to:0 msgid "To" -msgstr "" +msgstr "To" #. module: base #: view:ir.cron:0 #: field:ir.cron,args:0 msgid "Arguments" -msgstr "" +msgstr "Arguments" + +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "Database ID doesn't exist: %s : %s" #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" -msgstr "" +msgstr "GPL Version 2" #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 3" -msgstr "" +msgstr "GPL Version 3" + +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "key '%s' not found in selection field '%s'" #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" -msgstr "" +msgstr "Correct EAN13" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" -msgstr "" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "The value \"%s\" for the field \"%s\" is not in the selection" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Vevő" #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (NI) / Español (NI)" -msgstr "" +msgstr "Spanish (NI) / Español (NI)" #. module: base #: field:ir.module.module,shortdesc:0 msgid "Short Description" -msgstr "" +msgstr "Short Description" #. module: base #: field:ir.actions.act_window,context:0 #: field:ir.filters,context:0 msgid "Context Value" -msgstr "" +msgstr "Context Value" #. module: base #: view:ir.sequence:0 msgid "Hour 00->24: %(h24)s" -msgstr "" +msgstr "Hour 00->24: %(h24)s" #. module: base #: field:ir.cron,nextcall:0 msgid "Next Execution Date" -msgstr "" +msgstr "Next Execution Date" #. module: base #: help:multi_company.default,field_id:0 msgid "Select field property" -msgstr "" +msgstr "Select field property" #. module: base #: field:res.request.history,date_sent:0 msgid "Date sent" -msgstr "" +msgstr "Date sent" #. module: base #: view:ir.sequence:0 msgid "Month: %(month)s" -msgstr "" +msgstr "Month: %(month)s" #. module: base #: field:ir.actions.act_window.view,sequence:0 @@ -6558,12 +7081,12 @@ msgstr "" #: field:res.widget.user,sequence:0 #: field:wizard.ir.model.menu.create.line,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Sequence" #. module: base #: model:res.country,name:base.tn msgid "Tunisia" -msgstr "" +msgstr "Tunisia" #. module: base #: model:ir.ui.menu,name:base.menu_mrp_root @@ -6575,58 +7098,59 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_wizard_lang_export #: model:ir.ui.menu,name:base.menu_wizard_lang_export msgid "Export Translation" -msgstr "" +msgstr "Export Translation" #. module: base #: model:ir.actions.act_window,name:base.action_server_action #: view:ir.actions.server:0 #: model:ir.ui.menu,name:base.menu_server_action msgid "Server Actions" -msgstr "" +msgstr "Server Actions" #. module: base #: view:ir.module.module:0 msgid "Cancel Install" -msgstr "" +msgstr "Cancel Install" #. module: base #: field:res.partner.category,parent_right:0 msgid "Right parent" -msgstr "" +msgstr "Right parent" #. module: base #: view:res.lang:0 msgid "Legends for Date and Time Formats" -msgstr "" +msgstr "Legends for Date and Time Formats" #. module: base #: selection:ir.actions.server,state:0 msgid "Copy Object" -msgstr "" +msgstr "Copy Object" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" msgstr "" +"Group(s) cannot be deleted, because some user(s) still belong to them: %s !" #. module: base #: model:ir.actions.act_window,name:base.action_country_state #: model:ir.ui.menu,name:base.menu_country_state_partner msgid "Fed. States" -msgstr "" +msgstr "Fed. States" #. module: base #: view:ir.model:0 #: view:res.groups:0 msgid "Access Rules" -msgstr "" +msgstr "Access Rules" #. module: base #: field:ir.default,ref_table:0 msgid "Table Ref." -msgstr "" +msgstr "Table Ref." #. module: base #: field:ir.actions.act_window,res_model:0 @@ -6654,29 +7178,41 @@ msgstr "" #: field:res.request.link,object:0 #: field:workflow.triggers,model:0 msgid "Object" +msgstr "Object" + +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" msgstr "" +"\n" +"\n" +"[object with reference: %s - %s]" #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" -msgstr "" +msgstr "ir.default" #. module: base #: view:ir.sequence:0 msgid "Minute: %(min)s" -msgstr "" +msgstr "Minute: %(min)s" #. module: base #: view:base.update.translations:0 #: model:ir.actions.act_window,name:base.action_wizard_update_translations #: model:ir.ui.menu,name:base.menu_wizard_update_translations msgid "Synchronize Translations" -msgstr "" +msgstr "Synchronize Translations" #. module: base #: model:ir.ui.menu,name:base.next_id_10 msgid "Scheduler" -msgstr "" +msgstr "Ütemező" #. module: base #: help:ir.cron,numbercall:0 @@ -6684,6 +7220,8 @@ msgid "" "Number of time the function is called,\n" "a negative number indicates no limit" msgstr "" +"A művelet indításának száma,\n" +"negatív szám esetén nincs korlát." #. module: base #: field:ir.ui.view_sc,user_id:0 @@ -6691,10 +7229,10 @@ msgid "User Ref." msgstr "Felhasználó ref." #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" -msgstr "" +msgstr "Warning !" #. module: base #: model:ir.ui.menu,name:base.menu_base_config @@ -6705,27 +7243,27 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_marketing_config_root #: view:res.company:0 msgid "Configuration" -msgstr "" +msgstr "Configuration" #. module: base #: model:ir.model,name:base.model_publisher_warranty_contract_wizard msgid "publisher_warranty.contract.wizard" -msgstr "" +msgstr "publisher_warranty.contract.wizard" #. module: base #: field:ir.actions.server,expression:0 msgid "Loop Expression" -msgstr "" +msgstr "Loop Expression" #. module: base #: field:publisher_warranty.contract,date_start:0 msgid "Starting Date" -msgstr "" +msgstr "Starting Date" #. module: base #: help:res.partner,website:0 msgid "Website of Partner" -msgstr "" +msgstr "Partner honlapja" #. module: base #: model:res.partner.category,name:base.res_partner_category_5 @@ -6741,28 +7279,28 @@ msgstr "" #: selection:res.partner.title,domain:0 #: model:res.request.link,name:base.req_link_partner msgid "Partner" -msgstr "" +msgstr "Partner" #. module: base #: model:res.country,name:base.tr msgid "Turkey" -msgstr "" +msgstr "Turkey" #. module: base #: model:res.country,name:base.fk msgid "Falkland Islands" -msgstr "" +msgstr "Falkland Islands" #. module: base #: model:res.country,name:base.lb msgid "Lebanon" -msgstr "" +msgstr "Lebanon" #. module: base #: view:ir.actions.report.xml:0 #: field:ir.actions.report.xml,report_type:0 msgid "Report Type" -msgstr "" +msgstr "Report Type" #. module: base #: field:ir.actions.todo,state:0 @@ -6778,33 +7316,33 @@ msgstr "" #: field:workflow.instance,state:0 #: field:workflow.workitem,state:0 msgid "State" -msgstr "" +msgstr "State" #. module: base #: selection:base.language.install,lang:0 msgid "Galician / Galego" -msgstr "" +msgstr "Galician / Galego" #. module: base #: model:res.country,name:base.no msgid "Norway" -msgstr "" +msgstr "Norway" #. module: base #: view:res.lang:0 msgid "4. %b, %B ==> Dec, December" -msgstr "" +msgstr "4. %b, %B ==> Dec, December" #. module: base #: view:base.language.install:0 #: model:ir.ui.menu,name:base.menu_view_base_language_install msgid "Load an Official Translation" -msgstr "" +msgstr "Load an Official Translation" #. module: base #: view:res.currency:0 msgid "Miscelleanous" -msgstr "" +msgstr "Miscelleanous" #. module: base #: model:res.partner.category,name:base.res_partner_category_10 @@ -6814,33 +7352,33 @@ msgstr "" #. module: base #: model:res.country,name:base.kg msgid "Kyrgyz Republic (Kyrgyzstan)" -msgstr "" +msgstr "Kyrgyz Republic (Kyrgyzstan)" #. module: base #: selection:res.request,state:0 msgid "waiting" -msgstr "" +msgstr "waiting" #. module: base #: field:ir.actions.report.xml,report_file:0 msgid "Report file" -msgstr "" +msgstr "Report file" #. module: base #: model:ir.model,name:base.model_workflow_triggers msgid "workflow.triggers" -msgstr "" +msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" -msgstr "" +msgstr "Invalid search criterions" #. module: base #: view:ir.attachment:0 msgid "Created" -msgstr "" +msgstr "Created" #. module: base #: help:ir.actions.wizard,multi:0 @@ -6848,31 +7386,33 @@ msgid "" "If set to true, the wizard will not be displayed on the right toolbar of a " "form view." msgstr "" +"If set to true, the wizard will not be displayed on the right toolbar of a " +"form view." #. module: base #: view:base.language.import:0 msgid "- type,name,res_id,src,value" -msgstr "" +msgstr "- type,name,res_id,src,value" #. module: base #: model:res.country,name:base.hm msgid "Heard and McDonald Islands" -msgstr "" +msgstr "Heard and McDonald Islands" #. module: base #: field:ir.actions.act_window,view_id:0 msgid "View Ref." -msgstr "" +msgstr "View Ref." #. module: base #: selection:ir.translation,type:0 msgid "Selection" -msgstr "" +msgstr "Selection" #. module: base #: field:res.company,rml_header1:0 msgid "Report Header" -msgstr "" +msgstr "Report Header" #. module: base #: field:ir.actions.act_window,type:0 @@ -6885,51 +7425,53 @@ msgstr "" #: field:ir.actions.url,type:0 #: field:ir.actions.wizard,type:0 msgid "Action Type" -msgstr "" +msgstr "Action Type" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" "But the latter module is not available in your system." msgstr "" +"You try to install module '%s' that depends on module '%s'.\n" +"But the latter module is not available in your system." #. module: base #: view:base.language.import:0 #: model:ir.actions.act_window,name:base.action_view_base_import_language #: model:ir.ui.menu,name:base.menu_view_base_import_language msgid "Import Translation" -msgstr "" +msgstr "Import Translation" #. module: base #: field:res.partner.bank.type,field_ids:0 msgid "Type fields" -msgstr "" +msgstr "Type fields" #. module: base #: view:ir.module.module:0 #: field:ir.module.module,category_id:0 msgid "Category" -msgstr "" +msgstr "Category" #. module: base #: view:ir.attachment:0 #: selection:ir.attachment,type:0 #: selection:ir.property,type:0 msgid "Binary" -msgstr "" +msgstr "Binary" #. module: base #: field:ir.actions.server,sms:0 #: selection:ir.actions.server,state:0 msgid "SMS" -msgstr "" +msgstr "SMS" #. module: base #: model:res.country,name:base.cr msgid "Costa Rica" -msgstr "" +msgstr "Costa Rica" #. module: base #: model:ir.actions.act_window,help:base.action_partner_supplier_form @@ -6942,44 +7484,44 @@ msgstr "" #. module: base #: view:workflow.activity:0 msgid "Conditions" -msgstr "" +msgstr "Conditions" #. module: base #: model:ir.actions.act_window,name:base.action_partner_other_form msgid "Other Partners" -msgstr "" +msgstr "Other Partners" #. module: base #: model:ir.actions.act_window,name:base.action_currency_form #: model:ir.ui.menu,name:base.menu_action_currency_form #: view:res.currency:0 msgid "Currencies" -msgstr "" +msgstr "Currencies" #. module: base #: sql_constraint:res.groups:0 msgid "The name of the group must be unique !" -msgstr "" +msgstr "The name of the group must be unique !" #. module: base #: view:ir.sequence:0 msgid "Hour 00->12: %(h12)s" -msgstr "" +msgstr "Hour 00->12: %(h12)s" #. module: base #: help:res.partner.address,active:0 msgid "Uncheck the active field to hide the contact." -msgstr "" +msgstr "Uncheck the active field to hide the contact." #. module: base #: model:ir.model,name:base.model_res_widget_wizard msgid "Add a widget for User" -msgstr "" +msgstr "Add a widget for User" #. module: base #: model:res.country,name:base.dk msgid "Denmark" -msgstr "" +msgstr "Denmark" #. module: base #: field:res.country,code:0 @@ -6989,27 +7531,39 @@ msgstr "Országkód" #. module: base #: model:ir.model,name:base.model_workflow_instance msgid "workflow.instance" -msgstr "" +msgstr "workflow.instance" + +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "Unknown attribute %s in %s " #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" -msgstr "" +msgstr "10. %S ==> 20" + +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "undefined get method !" #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" -msgstr "" +msgstr "Norwegian Bokmål / Norsk bokmål" #. module: base #: model:res.partner.title,name:base.res_partner_title_madam msgid "Madam" -msgstr "" +msgstr "Madam" #. module: base #: model:res.country,name:base.ee msgid "Estonia" -msgstr "" +msgstr "Estonia" #. module: base #: model:ir.ui.menu,name:base.dashboard @@ -7019,32 +7573,32 @@ msgstr "" #. module: base #: help:ir.attachment,type:0 msgid "Binary File or external URL" -msgstr "" +msgstr "Binary File or external URL" #. module: base #: model:res.country,name:base.nl msgid "Netherlands" -msgstr "" +msgstr "Netherlands" #. module: base #: model:ir.ui.menu,name:base.next_id_4 msgid "Low Level Objects" -msgstr "" +msgstr "Low Level Objects" #. module: base #: view:res.company:0 msgid "Your Logo - Use a size of about 450x150 pixels." -msgstr "" +msgstr "Your Logo - Use a size of about 450x150 pixels." #. module: base #: model:ir.model,name:base.model_ir_values msgid "ir.values" -msgstr "" +msgstr "ir.values" #. module: base #: selection:base.language.install,lang:0 msgid "Occitan (FR, post 1500) / Occitan" -msgstr "" +msgstr "Occitan (FR, post 1500) / Occitan" #. module: base #: model:ir.ui.menu,name:base.menu_emails @@ -7055,35 +7609,35 @@ msgstr "" #. module: base #: model:res.country,name:base.cd msgid "Congo, The Democratic Republic of the" -msgstr "" +msgstr "Congo, The Democratic Republic of the" #. module: base #: selection:base.language.install,lang:0 msgid "Malayalam / മലയാളം" -msgstr "" +msgstr "Malayalam / മലയാളം" #. module: base #: view:res.request:0 #: field:res.request,body:0 #: field:res.request.history,req_id:0 msgid "Request" -msgstr "" +msgstr "Üzenet" #. module: base #: model:res.country,name:base.jp msgid "Japan" -msgstr "" +msgstr "Japan" #. module: base #: field:ir.cron,numbercall:0 msgid "Number of Calls" -msgstr "" +msgstr "Number of Calls" #. module: base #: view:base.module.upgrade:0 #: field:base.module.upgrade,module_info:0 msgid "Modules to update" -msgstr "" +msgstr "Modules to update" #. module: base #: help:ir.actions.server,sequence:0 @@ -7091,41 +7645,43 @@ msgid "" "Important when you deal with multiple actions, the execution order will be " "decided based on this, low number is higher priority." msgstr "" +"Important when you deal with multiple actions, the execution order will be " +"decided based on this, low number is higher priority." #. module: base #: field:ir.actions.report.xml,header:0 msgid "Add RML header" -msgstr "" +msgstr "Add RML header" #. module: base #: model:res.country,name:base.gr msgid "Greece" -msgstr "" +msgstr "Greece" #. module: base #: field:res.request,trigger_date:0 msgid "Trigger Date" -msgstr "" +msgstr "Trigger Date" #. module: base #: selection:base.language.install,lang:0 msgid "Croatian / hrvatski jezik" -msgstr "" +msgstr "Croatian / hrvatski jezik" #. module: base #: field:base.language.install,overwrite:0 msgid "Overwrite Existing Terms" -msgstr "" +msgstr "Overwrite Existing Terms" #. module: base #: help:ir.actions.server,code:0 msgid "Python code to be executed" -msgstr "" +msgstr "Python code to be executed" #. module: base #: sql_constraint:res.country:0 msgid "The code of the country must be unique !" -msgstr "" +msgstr "Az országkódnak egyedinek kell lennie!" #. module: base #: model:ir.ui.menu,name:base.menu_project_management_time_tracking @@ -7135,45 +7691,50 @@ msgstr "" #. module: base #: view:res.partner.category:0 msgid "Partner Category" -msgstr "" +msgstr "Partner Category" #. module: base #: view:ir.actions.server:0 #: selection:ir.actions.server,state:0 msgid "Trigger" -msgstr "" +msgstr "Trigger" #. module: base #: model:ir.model,name:base.model_base_module_update msgid "Update Module" -msgstr "" +msgstr "Update Module" #. module: base #: view:ir.model.fields:0 #: field:ir.model.fields,translate:0 msgid "Translate" -msgstr "" +msgstr "Translate" #. module: base #: field:res.request.history,body:0 msgid "Body" -msgstr "" +msgstr "Body" #. module: base #: view:partner.wizard.spam:0 msgid "Send Email" -msgstr "" +msgstr "Send Email" #. module: base #: field:res.config.users,menu_id:0 #: field:res.users,menu_id:0 msgid "Menu Action" -msgstr "" +msgstr "Menu Action" + +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Faroe Islands" #. module: base #: selection:base.language.export,state:0 msgid "choose" -msgstr "" +msgstr "choose" #. module: base #: help:ir.model,osv_memory:0 @@ -7181,6 +7742,8 @@ msgid "" "Indicates whether this object model lives in memory only, i.e. is not " "persisted (osv.osv_memory)" msgstr "" +"Indicates whether this object model lives in memory only, i.e. is not " +"persisted (osv.osv_memory)" #. module: base #: field:res.partner,child_ids:0 @@ -7193,64 +7756,64 @@ msgstr "Partner hiv." #: model:ir.ui.menu,name:base.menu_procurement_management_supplier_name #: view:res.partner:0 msgid "Suppliers" -msgstr "" +msgstr "Suppliers" #. module: base #: view:publisher_warranty.contract.wizard:0 msgid "Register" -msgstr "" +msgstr "Register" #. module: base #: field:res.request,ref_doc2:0 msgid "Document Ref 2" -msgstr "" +msgstr "Document Ref 2" #. module: base #: field:res.request,ref_doc1:0 msgid "Document Ref 1" -msgstr "" +msgstr "Document Ref 1" #. module: base #: model:res.country,name:base.ga msgid "Gabon" -msgstr "" +msgstr "Gabon" #. module: base #: model:ir.model,name:base.model_ir_model_data msgid "ir.model.data" -msgstr "" +msgstr "ir.model.data" #. module: base #: view:ir.model:0 #: view:ir.rule:0 #: view:res.groups:0 msgid "Access Rights" -msgstr "" +msgstr "Access Rights" #. module: base #: model:res.country,name:base.gl msgid "Greenland" -msgstr "" +msgstr "Greenland" #. module: base #: field:res.partner.bank,acc_number:0 msgid "Account Number" -msgstr "" +msgstr "Bankszámlaszám" #. module: base #: view:res.lang:0 msgid "1. %c ==> Fri Dec 5 18:25:20 2008" -msgstr "" +msgstr "1. %c ==> Fri Dec 5 18:25:20 2008" #. module: base #: model:res.country,name:base.nc msgid "New Caledonia (French)" -msgstr "" +msgstr "New Caledonia (French)" #. module: base #: model:res.country,name:base.cy msgid "Cyprus" -msgstr "" +msgstr "Cyprus" #. module: base #: view:base.module.import:0 @@ -7259,24 +7822,27 @@ msgid "" "loading a new language it becomes available as default interface language " "for users and partners." msgstr "" +"This wizard helps you add a new language to you OpenERP system. After " +"loading a new language it becomes available as default interface language " +"for users and partners." #. module: base #: field:ir.actions.server,subject:0 #: field:partner.wizard.spam,subject:0 #: field:res.request,name:0 msgid "Subject" -msgstr "" +msgstr "Subject" #. module: base #: field:res.request,act_from:0 #: field:res.request.history,act_from:0 msgid "From" -msgstr "" +msgstr "From" #. module: base #: view:res.users:0 msgid "Preferences" -msgstr "" +msgstr "Preferences" #. module: base #: model:res.partner.category,name:base.res_partner_category_consumers0 @@ -7287,7 +7853,7 @@ msgstr "" #: view:res.config:0 #: wizard_button:server.action.create,init,step_1:0 msgid "Next" -msgstr "" +msgstr "Next" #. module: base #: help:ir.cron,function:0 @@ -7295,34 +7861,38 @@ msgid "" "Name of the method to be called on the object when this scheduler is " "executed." msgstr "" +"Name of the method to be called on the object when this scheduler is " +"executed." #. module: base #: view:ir.actions.report.xml:0 msgid "Miscellaneous" -msgstr "" +msgstr "Miscellaneous" #. module: base #: model:res.country,name:base.cn msgid "China" -msgstr "" +msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" "%(name)s %(email)s\n" msgstr "" +"--\n" +"%(name)s %(email)s\n" #. module: base #: model:res.country,name:base.eh msgid "Western Sahara" -msgstr "" +msgstr "Western Sahara" #. module: base #: model:ir.model,name:base.model_workflow msgid "workflow" -msgstr "" +msgstr "workflow" #. module: base #: model:ir.actions.act_window,help:base.action_res_company_form @@ -7330,11 +7900,13 @@ msgid "" "Create and manage the companies that will be managed by OpenERP from here. " "Shops or subsidiaries can be created and maintained from here." msgstr "" +"Create and manage the companies that will be managed by OpenERP from here. " +"Shops or subsidiaries can be created and maintained from here." #. module: base #: model:res.country,name:base.id msgid "Indonesia" -msgstr "" +msgstr "Indonesia" #. module: base #: view:base.update.translations:0 @@ -7343,6 +7915,9 @@ msgid "" "you can then add translations manually or perform a complete export (as a " "template for a new language example)." msgstr "" +"This wizard will detect new terms to translate in the application, so that " +"you can then add translations manually or perform a complete export (as a " +"template for a new language example)." #. module: base #: help:multi_company.default,expression:0 @@ -7350,26 +7925,28 @@ msgid "" "Expression, must be True to match\n" "use context.get or user (browse)" msgstr "" +"Expression, must be True to match\n" +"use context.get or user (browse)" #. module: base #: model:res.country,name:base.bg msgid "Bulgaria" -msgstr "" +msgstr "Bulgaria" #. module: base #: view:publisher_warranty.contract.wizard:0 msgid "Publisher warranty contract successfully registered!" -msgstr "" +msgstr "Publisher warranty contract successfully registered!" #. module: base #: model:res.country,name:base.ao msgid "Angola" -msgstr "" +msgstr "Angola" #. module: base #: model:res.country,name:base.tf msgid "French Southern Territories" -msgstr "" +msgstr "French Southern Territories" #. module: base #: model:ir.model,name:base.model_res_currency @@ -7379,7 +7956,7 @@ msgstr "" #: field:res.currency,name:0 #: field:res.currency.rate,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Currency" #. module: base #: field:res.partner.canal,name:0 @@ -7389,73 +7966,73 @@ msgstr "Csatorna neve" #. module: base #: view:res.lang:0 msgid "5. %y, %Y ==> 08, 2008" -msgstr "" +msgstr "5. %y, %Y ==> 08, 2008" #. module: base #: model:res.partner.title,shortcut:base.res_partner_title_ltd msgid "ltd" -msgstr "" +msgstr "ltd" #. module: base #: field:ir.model.fields,model_id:0 #: field:ir.values,res_id:0 #: field:res.log,res_id:0 msgid "Object ID" -msgstr "" +msgstr "Object ID" #. module: base #: view:res.company:0 msgid "Landscape" -msgstr "" +msgstr "Landscape" #. module: base #: model:ir.ui.menu,name:base.menu_administration msgid "Administration" -msgstr "" +msgstr "Adminisztráció" #. module: base #: view:base.module.update:0 msgid "Click on Update below to start the process..." -msgstr "" +msgstr "Click on Update below to start the process..." #. module: base #: model:res.country,name:base.ir msgid "Iran" -msgstr "" +msgstr "Iran" #. module: base #: model:ir.actions.act_window,name:base.res_widget_user_act_window #: model:ir.ui.menu,name:base.menu_res_widget_user_act_window msgid "Widgets per User" -msgstr "" +msgstr "Widgets per User" #. module: base #: selection:base.language.install,lang:0 msgid "Slovak / Slovenský jazyk" -msgstr "" +msgstr "Slovak / Slovenský jazyk" #. module: base #: field:base.language.export,state:0 #: field:ir.ui.menu,icon_pict:0 #: field:publisher_warranty.contract.wizard,state:0 msgid "unknown" -msgstr "" +msgstr "unknown" #. module: base #: field:res.currency,symbol:0 msgid "Symbol" -msgstr "" +msgstr "Symbol" #. module: base #: help:res.config.users,login:0 #: help:res.users,login:0 msgid "Used to log into the system" -msgstr "" +msgstr "Used to log into the system" #. module: base #: view:base.update.translations:0 msgid "Synchronize Translation" -msgstr "" +msgstr "Synchronize Translation" #. module: base #: field:ir.ui.view_sc,res_id:0 @@ -7465,12 +8042,12 @@ msgstr "Elem ref." #. module: base #: model:res.country,name:base.ki msgid "Kiribati" -msgstr "" +msgstr "Kiribati" #. module: base #: model:res.country,name:base.iq msgid "Iraq" -msgstr "" +msgstr "Iraq" #. module: base #: model:ir.ui.menu,name:base.menu_association @@ -7480,50 +8057,50 @@ msgstr "" #. module: base #: model:res.country,name:base.cl msgid "Chile" -msgstr "" +msgstr "Chile" #. module: base #: model:ir.ui.menu,name:base.menu_address_book #: model:ir.ui.menu,name:base.menu_config_address_book #: model:ir.ui.menu,name:base.menu_procurement_management_supplier msgid "Address Book" -msgstr "" +msgstr "Address Book" #. module: base #: model:ir.model,name:base.model_ir_sequence_type msgid "ir.sequence.type" -msgstr "" +msgstr "ir.sequence.type" #. module: base #: selection:base.language.export,format:0 msgid "CSV File" -msgstr "" +msgstr "CSV File" #. module: base #: field:res.company,account_no:0 msgid "Account No." -msgstr "" +msgstr "Account No." #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" -msgstr "" +msgstr "Base Language 'en_US' can not be deleted !" #. module: base #: selection:ir.model,state:0 msgid "Base Object" -msgstr "" +msgstr "Base Object" #. module: base #: report:ir.module.reference.graph:0 msgid "Dependencies :" -msgstr "" +msgstr "Dependencies :" #. module: base #: field:ir.model.fields,field_description:0 msgid "Field Label" -msgstr "" +msgstr "Field Label" #. module: base #: model:ir.actions.act_window,help:base.action_partner_form @@ -7537,22 +8114,32 @@ msgstr "" #. module: base #: model:res.country,name:base.dj msgid "Djibouti" -msgstr "" +msgstr "Djibouti" #. module: base #: field:ir.translation,value:0 msgid "Translation Value" -msgstr "" +msgstr "Translation Value" #. module: base #: model:res.country,name:base.ag msgid "Antigua and Barbuda" +msgstr "Antigua and Barbuda" + +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." msgstr "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." #. module: base #: model:res.country,name:base.zr msgid "Zaire" -msgstr "" +msgstr "Zaire" #. module: base #: field:ir.model.data,res_id:0 @@ -7560,28 +8147,28 @@ msgstr "" #: field:workflow.instance,res_id:0 #: field:workflow.triggers,res_id:0 msgid "Resource ID" -msgstr "" +msgstr "Resource ID" #. module: base #: view:ir.cron:0 #: field:ir.model,info:0 msgid "Information" -msgstr "" +msgstr "Információ" #. module: base #: view:res.widget.user:0 msgid "User Widgets" -msgstr "" +msgstr "User Widgets" #. module: base #: view:base.module.update:0 msgid "Update Module List" -msgstr "" +msgstr "Update Module List" #. module: base #: selection:res.partner.address,type:0 msgid "Other" -msgstr "" +msgstr "Egyéb" #. module: base #: view:res.request:0 @@ -7591,7 +8178,7 @@ msgstr "Válasz" #. module: base #: selection:base.language.install,lang:0 msgid "Turkish / Türkçe" -msgstr "" +msgstr "Turkish / Türkçe" #. module: base #: model:ir.actions.act_window,name:base.action_workflow_activity_form @@ -7599,39 +8186,44 @@ msgstr "" #: view:workflow:0 #: field:workflow,activities:0 msgid "Activities" -msgstr "" +msgstr "Activities" #. module: base #: field:ir.actions.act_window,auto_refresh:0 msgid "Auto-Refresh" -msgstr "" +msgstr "Auto-Refresh" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." -msgstr "" +msgstr "The osv_memory field can only be compared with = and != operator." #. module: base #: selection:ir.ui.view,type:0 msgid "Diagram" -msgstr "" +msgstr "Diagram" + +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis and Futuna Islands" #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" -msgstr "" +msgstr "Name it to easily find a record" #. module: base #: model:ir.actions.act_window,name:base.grant_menu_access #: model:ir.ui.menu,name:base.menu_grant_menu_access msgid "Menu Items" -msgstr "" +msgstr "Menu Items" #. module: base #: constraint:ir.rule:0 msgid "Rules are not supported for osv_memory objects !" -msgstr "" +msgstr "Rules are not supported for osv_memory objects !" #. module: base #: model:ir.ui.menu,name:base.menu_event_association @@ -7646,88 +8238,117 @@ msgstr "" #: model:ir.ui.menu,name:base.next_id_6 #: view:workflow.activity:0 msgid "Actions" -msgstr "" +msgstr "Actions" #. module: base #: selection:res.request,priority:0 msgid "High" -msgstr "" +msgstr "High" #. module: base #: field:ir.exports.line,export_id:0 msgid "Export" -msgstr "" +msgstr "Export" #. module: base #: model:res.country,name:base.hr msgid "Croatia" -msgstr "" +msgstr "Croatia" #. module: base #: help:res.bank,bic:0 msgid "Bank Identifier Code" -msgstr "" +msgstr "Bank Identifier Code" #. module: base #: model:res.country,name:base.tm msgid "Turkmenistan" -msgstr "" +msgstr "Turkmenistan" + +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Error" #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" -msgstr "" +msgstr "Saint Pierre and Miquelon" #. module: base #: help:ir.actions.report.xml,header:0 msgid "Add or not the coporate RML header" -msgstr "" +msgstr "Add or not the coporate RML header" #. module: base #: help:workflow.transition,act_to:0 msgid "The destination activity." -msgstr "" +msgstr "The destination activity." #. module: base #: view:base.module.update:0 #: view:base.update.translations:0 msgid "Update" -msgstr "" +msgstr "Update" #. module: base #: model:ir.actions.report.xml,name:base.ir_module_reference_print msgid "Technical guide" -msgstr "" +msgstr "Technical guide" #. module: base #: model:res.country,name:base.tz msgid "Tanzania" -msgstr "" +msgstr "Tanzania" #. module: base #: selection:base.language.install,lang:0 msgid "Danish / Dansk" -msgstr "" +msgstr "Danish / Dansk" #. module: base #: model:res.country,name:base.cx msgid "Christmas Island" -msgstr "" +msgstr "Christmas Island" #. module: base #: view:ir.actions.server:0 msgid "Other Actions Configuration" -msgstr "" +msgstr "Other Actions Configuration" #. module: base #: selection:ir.module.module.dependency,state:0 msgid "Uninstallable" -msgstr "" +msgstr "Uninstallable" #. module: base #: view:res.config.installer:0 msgid "Install Modules" -msgstr "" +msgstr "Install Modules" #. module: base #: model:ir.actions.act_window,name:base.res_partner_canal-act @@ -7735,115 +8356,127 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_res_partner_canal-act #: view:res.partner.canal:0 msgid "Channels" -msgstr "" +msgstr "Channels" #. module: base #: view:ir.ui.view:0 msgid "Extra Info" -msgstr "" +msgstr "Extra Info" #. module: base #: model:ir.actions.act_window,name:base.act_values_form_action #: model:ir.ui.menu,name:base.menu_values_form_action msgid "Client Events" -msgstr "" +msgstr "Client Events" #. module: base #: view:ir.module.module:0 msgid "Schedule for Installation" -msgstr "" +msgstr "Schedule for Installation" #. module: base #: model:ir.model,name:base.model_partner_wizard_ean_check msgid "Ean Check" -msgstr "" +msgstr "Ean Check" #. module: base #: sql_constraint:res.config.users:0 #: sql_constraint:res.users:0 msgid "You can not have two users with the same login !" -msgstr "" +msgstr "You can not have two users with the same login !" #. module: base #: model:ir.model,name:base.model_multi_company_default msgid "Default multi company" -msgstr "" +msgstr "Default multi company" #. module: base #: view:res.request:0 msgid "Send" -msgstr "" +msgstr "Send" #. module: base #: field:res.config.users,menu_tips:0 #: field:res.users,menu_tips:0 msgid "Menu Tips" -msgstr "" +msgstr "Menu Tips" #. module: base #: field:ir.translation,src:0 msgid "Source" -msgstr "" +msgstr "Source" #. module: base #: help:res.partner.address,partner_id:0 msgid "Keep empty for a private address, not related to partner." -msgstr "" +msgstr "Hagyja üresen privát címhez, ami nem tartozik egy partnerhez sem." #. module: base #: model:res.country,name:base.vu msgid "Vanuatu" -msgstr "" +msgstr "Vanuatu" #. module: base #: view:res.company:0 msgid "Internal Header/Footer" -msgstr "" +msgstr "Internal Header/Footer" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " "may be uploaded to launchpad." msgstr "" +"Save this document to a .tgz file. This archive containt UTF-8 %s files and " +"may be uploaded to launchpad." #. module: base #: view:base.module.upgrade:0 msgid "Start configuration" -msgstr "" +msgstr "Start configuration" #. module: base #: view:base.language.export:0 msgid "_Export" -msgstr "" +msgstr "_Export" #. module: base #: field:base.language.install,state:0 #: field:base.module.import,state:0 #: field:base.module.update,state:0 msgid "state" -msgstr "" +msgstr "state" #. module: base #: selection:base.language.install,lang:0 msgid "Catalan / Català" -msgstr "" +msgstr "Catalan / Català" #. module: base #: model:res.country,name:base.do msgid "Dominican Republic" -msgstr "" +msgstr "Dominican Republic" #. module: base #: selection:base.language.install,lang:0 msgid "Serbian (Cyrillic) / српски" +msgstr "Serbian (Cyrillic) / српски" + +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." msgstr "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" -msgstr "" +msgstr "Saudi Arabia" #. module: base #: help:res.partner,supplier:0 @@ -7851,69 +8484,78 @@ 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 "" +"Jelöld be, ha a partner beszállító, különben a beszerzési űrlapokon nem " +"jelenik meg a beszállítók között." #. module: base #: field:ir.model.fields,relation_field:0 msgid "Relation Field" -msgstr "" +msgstr "Relation Field" #. module: base #: view:res.partner.event:0 msgid "Event Logs" -msgstr "" +msgstr "Event Logs" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" -msgstr "" +msgstr "System Configuration done" #. module: base #: field:workflow.triggers,instance_id:0 msgid "Destination Instance" -msgstr "" +msgstr "Destination Instance" #. module: base #: field:ir.actions.act_window,multi:0 #: field:ir.actions.wizard,multi:0 msgid "Action on Multiple Doc." -msgstr "" +msgstr "Action on Multiple Doc." #. module: base #: view:base.language.export:0 msgid "https://translations.launchpad.net/openobject" -msgstr "" +msgstr "https://translations.launchpad.net/openobject" #. module: base #: field:ir.actions.report.xml,report_xml:0 msgid "XML path" -msgstr "" +msgstr "XML path" #. module: base #: selection:ir.actions.todo,restart:0 msgid "On Skip" -msgstr "" +msgstr "On Skip" #. module: base #: model:res.country,name:base.gn msgid "Guinea" -msgstr "" +msgstr "Guinea" #. module: base #: model:res.country,name:base.lu msgid "Luxembourg" -msgstr "" +msgstr "Luxembourg" #. module: base #: selection:res.request,priority:0 msgid "Low" -msgstr "" +msgstr "Low" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." -msgstr "" +msgstr "Error ! You can not create recursive Menu." + +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "Register a Contract" #. module: base #: view:ir.rule:0 @@ -7921,24 +8563,26 @@ msgid "" "3. If user belongs to several groups, the results from step 2 are combined " "with logical OR operator" msgstr "" +"3. If user belongs to several groups, the results from step 2 are combined " +"with logical OR operator" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." -msgstr "" +msgstr "Please check your publisher warranty contract name and validity." #. module: base #: model:res.country,name:base.sv msgid "El Salvador" -msgstr "" +msgstr "El Salvador" #. module: base #: field:res.bank,phone:0 #: field:res.partner,phone:0 #: field:res.partner.address,phone:0 msgid "Phone" -msgstr "" +msgstr "Telefon" #. module: base #: model:res.widget,title:base.albertnan_twitter_widget @@ -7961,38 +8605,38 @@ msgstr "" #: view:workflow.instance:0 #: view:workflow.workitem:0 msgid "Active" -msgstr "" +msgstr "Active" #. module: base #: model:res.country,name:base.th msgid "Thailand" -msgstr "" +msgstr "Thailand" #. module: base #: model:ir.ui.menu,name:base.menu_crm_config_lead msgid "Leads & Opportunities" -msgstr "" +msgstr "Lehetőségek" #. module: base #: selection:base.language.install,lang:0 msgid "Romanian / română" -msgstr "" +msgstr "Romanian / română" #. module: base #: view:res.log:0 msgid "System Logs" -msgstr "" +msgstr "System Logs" #. module: base #: selection:workflow.activity,join_mode:0 #: selection:workflow.activity,split_mode:0 msgid "And" -msgstr "" +msgstr "And" #. module: base #: field:ir.model.fields,relation:0 msgid "Object Relation" -msgstr "" +msgstr "Object Relation" #. module: base #: view:ir.rule:0 @@ -8003,33 +8647,33 @@ msgstr "Általános" #. module: base #: model:res.country,name:base.uz msgid "Uzbekistan" -msgstr "" +msgstr "Uzbekistan" #. module: base #: model:ir.model,name:base.model_ir_actions_act_window #: selection:ir.ui.menu,action:0 msgid "ir.actions.act_window" -msgstr "" +msgstr "ir.actions.act_window" #. module: base #: field:ir.rule,perm_create:0 msgid "Apply For Create" -msgstr "" +msgstr "Apply For Create" #. module: base #: model:res.country,name:base.vi msgid "Virgin Islands (USA)" -msgstr "" +msgstr "Virgin Islands (USA)" #. module: base #: model:res.country,name:base.tw msgid "Taiwan" -msgstr "" +msgstr "Taiwan" #. module: base #: model:ir.model,name:base.model_res_currency_rate msgid "Currency Rate" -msgstr "" +msgstr "Currency Rate" #. module: base #: model:ir.actions.act_window,help:base.grant_menu_access @@ -8040,11 +8684,16 @@ msgid "" "be assigned to specific groups in order to make them accessible to some " "users within the system." msgstr "" +"Manage and customize the items available and displayed in your OpenERP " +"system menu. You can delete an item by clicking on the box at the beginning " +"of each line and then delete it through the button that appeared. Items can " +"be assigned to specific groups in order to make them accessible to some " +"users within the system." #. module: base #: field:ir.ui.view,field_parent:0 msgid "Child Field" -msgstr "" +msgstr "Child Field" #. module: base #: field:ir.actions.act_window,usage:0 @@ -8054,56 +8703,61 @@ msgstr "" #: field:ir.actions.server,usage:0 #: field:ir.actions.wizard,usage:0 msgid "Action Usage" -msgstr "" +msgstr "Action Usage" #. module: base #: model:ir.model,name:base.model_workflow_workitem msgid "workflow.workitem" -msgstr "" +msgstr "workflow.workitem" #. module: base #: selection:ir.module.module,state:0 msgid "Not Installable" -msgstr "" +msgstr "Not Installable" #. module: base #: report:ir.module.reference.graph:0 msgid "View :" -msgstr "" +msgstr "View :" #. module: base #: field:ir.model.fields,view_load:0 msgid "View Auto-Load" -msgstr "" +msgstr "View Auto-Load" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" -msgstr "" +msgstr "You cannot remove the field '%s' !" #. module: base #: field:ir.exports,resource:0 #: view:ir.property:0 #: field:ir.property,res_id:0 msgid "Resource" -msgstr "" +msgstr "Resource" + +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "Web Icon File" #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" -msgstr "" +msgstr "Persian / فارس" #. module: base #: view:ir.actions.act_window:0 msgid "View Ordering" -msgstr "" +msgstr "View Ordering" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" -msgstr "" +msgstr "Unmet dependency !" #. module: base #: view:base.language.import:0 @@ -8111,43 +8765,55 @@ msgid "" "Supported file formats: *.csv (Comma-separated values) or *.po (GetText " "Portable Objects)" msgstr "" +"Supported file formats: *.csv (Comma-separated values) or *.po (GetText " +"Portable Objects)" + +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" -msgstr "" +msgstr "base.module.configuration" #. module: base #: field:base.language.export,name:0 #: field:ir.attachment,datas_fname:0 msgid "Filename" -msgstr "" +msgstr "Filename" #. module: base #: field:ir.model,access_ids:0 #: view:ir.model.access:0 msgid "Access" -msgstr "" +msgstr "Access" #. module: base #: model:res.country,name:base.sk msgid "Slovak Republic" -msgstr "" +msgstr "Slovak Republic" #. module: base #: model:ir.ui.menu,name:base.publisher_warranty msgid "Publisher Warranty" -msgstr "" +msgstr "Publisher Warranty" #. module: base #: model:res.country,name:base.aw msgid "Aruba" -msgstr "" +msgstr "Aruba" #. module: base #: model:res.country,name:base.ar msgid "Argentina" -msgstr "" +msgstr "Argentina" #. module: base #: field:res.groups,name:0 @@ -8157,7 +8823,7 @@ msgstr "Csoport" #. module: base #: model:res.country,name:base.bh msgid "Bahrain" -msgstr "" +msgstr "Bahrain" #. module: base #: model:res.partner.category,name:base.res_partner_category_12 @@ -8179,22 +8845,22 @@ msgstr "" #: view:res.users:0 #: field:res.users,company_id:0 msgid "Company" -msgstr "" +msgstr "Company" #. module: base #: view:res.users:0 msgid "Email & Signature" -msgstr "" +msgstr "Email & Signature" #. module: base #: view:publisher_warranty.contract:0 msgid "Publisher Warranty Contract" -msgstr "" +msgstr "Publisher Warranty Contract" #. module: base #: selection:base.language.install,lang:0 msgid "Bulgarian / български език" -msgstr "" +msgstr "Bulgarian / български език" #. module: base #: model:ir.ui.menu,name:base.menu_aftersale @@ -8204,22 +8870,22 @@ msgstr "" #. module: base #: view:ir.actions.todo:0 msgid "Launch" -msgstr "" +msgstr "Launch" #. module: base #: field:ir.actions.act_window,limit:0 msgid "Limit" -msgstr "" +msgstr "Limit" #. module: base #: help:ir.actions.server,wkf_model_id:0 msgid "Workflow to be executed on this model." -msgstr "" +msgstr "Workflow to be executed on this model." #. module: base #: model:res.country,name:base.jm msgid "Jamaica" -msgstr "" +msgstr "Jamaica" #. module: base #: model:ir.actions.act_window,help:base.action_partner_category_form @@ -8229,88 +8895,92 @@ msgid "" "categories have a hierarchy structure: a partner belonging to a category " "also belong to his parent category." msgstr "" +"Manage the partner categories in order to better classify them for tracking " +"and analysis purposes. A partner may belong to several categories and " +"categories have a hierarchy structure: a partner belonging to a category " +"also belong to his parent category." #. module: base #: model:res.country,name:base.az msgid "Azerbaijan" -msgstr "" +msgstr "Azerbaijan" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" -msgstr "" +msgstr "Warning" #. module: base #: selection:base.language.install,lang:0 msgid "Arabic / الْعَرَبيّة" -msgstr "" +msgstr "Arabic / الْعَرَبيّة" #. module: base #: model:res.country,name:base.vg msgid "Virgin Islands (British)" -msgstr "" +msgstr "Virgin Islands (British)" #. module: base #: view:ir.property:0 #: model:ir.ui.menu,name:base.next_id_15 msgid "Parameters" -msgstr "" +msgstr "Parameters" #. module: base #: selection:base.language.install,lang:0 msgid "Czech / Čeština" -msgstr "" +msgstr "Czech / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Advanced Search" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen msgid "ir.wizard.screen" -msgstr "" +msgstr "ir.wizard.screen" #. module: base #: model:res.country,name:base.rw msgid "Rwanda" -msgstr "" +msgstr "Rwanda" #. module: base #: view:ir.sequence:0 msgid "Day of the week (0:Monday): %(weekday)s" -msgstr "" +msgstr "Day of the week (0:Monday): %(weekday)s" #. module: base #: model:res.country,name:base.ck msgid "Cook Islands" -msgstr "" +msgstr "Cook Islands" #. module: base #: field:ir.model.data,noupdate:0 msgid "Non Updatable" -msgstr "" +msgstr "Non Updatable" #. module: base #: selection:base.language.install,lang:0 msgid "Klingon" -msgstr "" +msgstr "Klingon" #. module: base #: model:res.country,name:base.sg msgid "Singapore" -msgstr "" +msgstr "Singapore" #. module: base #: selection:ir.actions.act_window,target:0 msgid "Current Window" -msgstr "" +msgstr "Current Window" #. module: base #: view:ir.values:0 msgid "Action Source" -msgstr "" +msgstr "Action Source" #. module: base #: view:res.config.view:0 @@ -8319,6 +8989,9 @@ msgid "" "simplified interface, which has less features but is easier. You can always " "switch later from the user preferences." msgstr "" +"If you use OpenERP for the first time we strongly advise you to select the " +"simplified interface, which has less features but is easier. You can always " +"switch later from the user preferences." #. module: base #: model:ir.model,name:base.model_res_country @@ -8330,13 +9003,13 @@ msgstr "" #: field:res.partner.address,country_id:0 #: field:res.partner.bank,country_id:0 msgid "Country" -msgstr "" +msgstr "Ország" #. module: base #: field:ir.model.fields,complete_name:0 #: field:ir.ui.menu,complete_name:0 msgid "Complete Name" -msgstr "" +msgstr "Complete Name" #. module: base #: field:ir.values,object:0 @@ -8349,6 +9022,8 @@ msgid "" "1. Global rules are combined together with a logical AND operator, and with " "the result of the following steps" msgstr "" +"1. Global rules are combined together with a logical AND operator, and with " +"the result of the following steps" #. module: base #: field:res.partner.category,name:0 @@ -8363,17 +9038,17 @@ msgstr "" #. module: base #: view:ir.actions.act_window:0 msgid "Select Groups" -msgstr "" +msgstr "Select Groups" #. module: base #: view:res.lang:0 msgid "%X - Appropriate time representation." -msgstr "" +msgstr "%X - Appropriate time representation." #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (SV) / Español (SV)" -msgstr "" +msgstr "Spanish (SV) / Español (SV)" #. module: base #: help:res.lang,grouping:0 @@ -8383,34 +9058,38 @@ msgid "" "1,06,500;[1,2,-1] will represent it to be 106,50,0;[3] will represent it as " "106,500. Provided ',' as the thousand separator in each case." msgstr "" +"The Separator Format should be like [,n] where 0 < n :starting from Unit " +"digit.-1 will end the separation. e.g. [3,2,-1] will represent 106500 to be " +"1,06,500;[1,2,-1] will represent it to be 106,50,0;[3] will represent it as " +"106,500. Provided ',' as the thousand separator in each case." #. module: base #: view:res.company:0 msgid "Portrait" -msgstr "" +msgstr "Portrait" #. module: base #: selection:ir.translation,type:0 msgid "Wizard Button" -msgstr "" +msgstr "Wizard Button" #. module: base #: selection:ir.translation,type:0 msgid "Report/Template" -msgstr "" +msgstr "Report/Template" #. module: base #: selection:ir.actions.act_window.view,view_mode:0 #: selection:ir.ui.view,type:0 #: selection:wizard.ir.model.menu.create.line,view_type:0 msgid "Graph" -msgstr "" +msgstr "Graph" #. module: base #: model:ir.model,name:base.model_ir_actions_server #: selection:ir.ui.menu,action:0 msgid "ir.actions.server" -msgstr "" +msgstr "ir.actions.server" #. module: base #: field:ir.actions.configuration.wizard,progress:0 @@ -8419,55 +9098,55 @@ msgstr "" #: field:res.config.users,progress:0 #: field:res.config.view,progress:0 msgid "Configuration Progress" -msgstr "" +msgstr "Configuration Progress" #. module: base #: model:ir.actions.act_window,name:base.act_ir_actions_todo_form #: model:ir.ui.menu,name:base.menu_ir_actions_todo_form #: model:ir.ui.menu,name:base.next_id_11 msgid "Configuration Wizards" -msgstr "" +msgstr "Configuration Wizards" #. module: base #: field:res.lang,code:0 msgid "Locale Code" -msgstr "" +msgstr "Locale Code" #. module: base #: field:workflow.activity,split_mode:0 msgid "Split Mode" -msgstr "" +msgstr "Split Mode" #. module: base #: view:base.module.upgrade:0 msgid "Note that this operation might take a few minutes." -msgstr "" +msgstr "Note that this operation might take a few minutes." #. module: base #: model:ir.ui.menu,name:base.menu_localisation msgid "Localisation" -msgstr "" +msgstr "Lokalizáció" #. module: base #: view:ir.actions.server:0 msgid "Action to Launch" -msgstr "" +msgstr "Action to Launch" #. module: base #: view:ir.cron:0 msgid "Execution" -msgstr "" +msgstr "Execution" #. module: base #: field:ir.actions.server,condition:0 #: field:workflow.transition,condition:0 msgid "Condition" -msgstr "" +msgstr "Condition" #. module: base #: help:ir.values,model_id:0 msgid "This field is not used, it only helps you to select a good model." -msgstr "" +msgstr "This field is not used, it only helps you to select a good model." #. module: base #: field:ir.ui.view,name:0 @@ -8477,12 +9156,12 @@ msgstr "Nézet neve" #. module: base #: selection:base.language.install,lang:0 msgid "Italian / Italiano" -msgstr "" +msgstr "Italian / Italiano" #. module: base #: field:ir.actions.report.xml,attachment:0 msgid "Save As Attachment Prefix" -msgstr "" +msgstr "Save As Attachment Prefix" #. module: base #: view:ir.actions.server:0 @@ -8490,16 +9169,18 @@ msgid "" "Only one client action will be executed, last client action will be " "considered in case of multiple client actions." msgstr "" +"Only one client action will be executed, last client action will be " +"considered in case of multiple client actions." #. module: base #: view:res.lang:0 msgid "%j - Day of the year [001,366]." -msgstr "" +msgstr "%j - Day of the year [001,366]." #. module: base #: field:ir.actions.server,mobile:0 msgid "Mobile No" -msgstr "" +msgstr "Mobile No" #. module: base #: model:ir.actions.act_window,name:base.action_partner_by_category @@ -8508,27 +9189,27 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_partner_category_form #: view:res.partner.category:0 msgid "Partner Categories" -msgstr "" +msgstr "Partner Categories" #. module: base #: view:base.module.upgrade:0 msgid "System Update" -msgstr "" +msgstr "System Update" #. module: base #: selection:ir.translation,type:0 msgid "Wizard Field" -msgstr "" +msgstr "Wizard Field" #. module: base #: help:ir.sequence,prefix:0 msgid "Prefix value of the record for the sequence" -msgstr "" +msgstr "Prefix value of the record for the sequence" #. module: base #: model:res.country,name:base.sc msgid "Seychelles" -msgstr "" +msgstr "Seychelles" #. module: base #: model:res.widget,title:base.nhomar_twitter_widget @@ -8539,115 +9220,115 @@ msgstr "" #: model:ir.model,name:base.model_res_partner_bank #: view:res.partner.bank:0 msgid "Bank Accounts" -msgstr "" +msgstr "Bank Accounts" #. module: base #: model:res.country,name:base.sl msgid "Sierra Leone" -msgstr "" +msgstr "Sierra Leone" #. module: base #: view:res.company:0 #: view:res.partner:0 msgid "General Information" -msgstr "" +msgstr "General Information" #. module: base #: model:res.country,name:base.tc msgid "Turks and Caicos Islands" -msgstr "" +msgstr "Turks and Caicos Islands" #. module: base #: field:res.partner.bank,owner_name:0 msgid "Account Owner" -msgstr "" +msgstr "Számlatulajdonos" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" -msgstr "" +msgstr "Company Switch Warning" #. module: base #: model:ir.actions.act_window,name:base.action_res_widget_wizard msgid "Homepage Widgets Management" -msgstr "" +msgstr "Homepage Widgets Management" #. module: base #: field:workflow,osv:0 #: field:workflow.instance,res_type:0 msgid "Resource Object" -msgstr "" +msgstr "Resource Object" #. module: base #: help:ir.sequence,number_increment:0 msgid "The next number of the sequence will be incremented by this number" -msgstr "" +msgstr "The next number of the sequence will be incremented by this number" #. module: base #: field:ir.cron,function:0 #: field:res.partner.address,function:0 #: selection:workflow.activity,kind:0 msgid "Function" -msgstr "" +msgstr "Function" #. module: base #: view:res.widget:0 msgid "Search Widget" -msgstr "" +msgstr "Search Widget" #. module: base #: selection:ir.actions.todo,restart:0 msgid "Never" -msgstr "" +msgstr "Never" #. module: base #: selection:res.partner.address,type:0 msgid "Delivery" -msgstr "" +msgstr "Szállítási" #. module: base #: model:res.partner.title,name:base.res_partner_title_pvt_ltd #: model:res.partner.title,shortcut:base.res_partner_title_pvt_ltd msgid "Corp." -msgstr "" +msgstr "Corp." #. module: base #: model:res.country,name:base.gw msgid "Guinea Bissau" -msgstr "" +msgstr "Guinea Bissau" #. module: base #: view:workflow.instance:0 msgid "Workflow Instances" -msgstr "" +msgstr "Workflow Instances" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " -msgstr "" +msgstr "Partners: " #. module: base #: model:res.country,name:base.kp msgid "North Korea" -msgstr "" +msgstr "North Korea" #. module: base #: selection:ir.actions.server,state:0 msgid "Create Object" -msgstr "" +msgstr "Create Object" #. module: base #: view:ir.filters:0 #: field:res.log,context:0 msgid "Context" -msgstr "" +msgstr "Context" #. module: base #: field:res.bank,bic:0 msgid "BIC/Swift code" -msgstr "" +msgstr "BIC/Swift code" #. module: base #: model:res.partner.category,name:base.res_partner_category_1 @@ -8657,12 +9338,12 @@ msgstr "" #. module: base #: selection:base.language.install,lang:0 msgid "Polish / Język polski" -msgstr "" +msgstr "Polish / Język polski" #. module: base #: field:ir.exports,name:0 msgid "Export Name" -msgstr "" +msgstr "Export Name" #. module: base #: help:res.partner.address,type:0 @@ -8670,43 +9351,15 @@ msgid "" "Used to select automatically the right address according to the context in " "sales and purchases documents." msgstr "" +"A beszerzési és értékesítési dokumentumokban a megfelelő cím kiválasztásához " +"használja a rendszer." #. module: base #: model:res.country,name:base.lk msgid "Sri Lanka" -msgstr "" +msgstr "Sri Lanka" #. module: base #: selection:base.language.install,lang:0 msgid "Russian / русский язык" -msgstr "" - -#~ msgid "Planned Cost" -#~ msgstr "Tervezett költség" - -#~ msgid "Document Link" -#~ msgstr "Dokumentum hivatkozás" - -#~ msgid "Planned Revenue" -#~ msgstr "Tervezett jövedelem" - -#~ msgid "Partner State of Mind" -#~ msgstr "Partner állapota" - -#~ msgid "Report Fields" -#~ msgstr "Jelentés mezők" - -#~ msgid "Type of Event" -#~ msgstr "Esemény típusa" - -#~ msgid "Probability (0.50)" -#~ msgstr "Valószínűség (0.50)" - -#~ msgid "Partner Relation" -#~ msgstr "Partneri kapcsolat" - -#~ msgid "Status" -#~ msgstr "Státusz" - -#~ msgid "Document" -#~ msgstr "Dokumentum" +msgstr "Russian / русский язык" diff --git a/bin/addons/base/i18n/id.po b/bin/addons/base/i18n/id.po index b10c916e3be..417985af98e 100644 --- a/bin/addons/base/i18n/id.po +++ b/bin/addons/base/i18n/id.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-08-28 06:59+0000\n" "Last-Translator: Iman Sulaiman \n" "Language-Team: Indonesian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:55+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:17+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -41,6 +41,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -53,12 +61,6 @@ msgstr "Metadata" msgid "View Architecture" msgstr "Arsitektur View" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Anda tidak dapat membuat dokumen seperti ini! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -109,6 +111,14 @@ msgstr "" msgid "Created Views" msgstr "View Tercipta" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -125,11 +135,10 @@ msgid "South Korea" msgstr "Korea Selatan" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "Transisi" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -141,13 +150,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Swaziland" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -176,13 +192,13 @@ msgid "Search Partner" msgstr "Pencarian Partner" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "baru" @@ -213,7 +229,7 @@ msgid "Contact Name" msgstr "Nama Kontak" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -237,6 +253,12 @@ msgstr "aktif" msgid "Wizard Name" msgstr "Nama Wizard" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -269,7 +291,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -320,7 +341,7 @@ msgid "Netherlands Antilles" msgstr "Netherlands Antilles" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -344,11 +365,6 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "Bosnia" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -356,6 +372,12 @@ msgid "" "name, it returns the previous report." msgstr "" +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -382,6 +404,12 @@ msgstr "Kolombia" msgid "Schedule Upgrade" msgstr "" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -423,7 +451,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -670,6 +698,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -734,6 +768,14 @@ msgstr "" msgid "Type" msgstr "" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -760,6 +802,19 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "Transisi" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -864,6 +919,16 @@ msgstr "" msgid "Search" msgstr "" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -919,13 +984,13 @@ msgid "ir.exports" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -956,6 +1021,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1003,7 +1074,7 @@ msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1104,12 +1175,6 @@ msgstr "" 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 #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1149,8 +1214,8 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr "" @@ -1228,7 +1293,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1239,7 +1304,8 @@ msgid "Malawi" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1288,7 +1354,6 @@ msgstr "" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1315,6 +1380,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1366,7 +1437,7 @@ msgid "Bahamas" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1387,6 +1458,12 @@ msgstr "" msgid "Number of modules updated" msgstr "" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1462,6 +1539,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1531,7 +1614,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1616,12 +1699,6 @@ msgstr "" msgid "French (BE) / Français (BE)" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1692,6 +1769,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1702,13 +1785,19 @@ msgstr "" msgid "Slovenia" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1738,6 +1827,14 @@ msgstr "" msgid "New Zealand" msgstr "" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1787,19 +1884,13 @@ msgstr "" msgid "Valid" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "" @@ -1910,6 +2001,15 @@ msgstr "" msgid "HR sector" msgstr "" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1963,6 +2063,11 @@ msgstr "" msgid "Main Company" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2049,8 +2154,9 @@ msgid "Sir" msgstr "" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2149,7 +2255,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2173,6 +2279,12 @@ msgstr "" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2193,7 +2305,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "" @@ -2218,6 +2336,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2270,11 +2393,6 @@ msgstr "" msgid "VAT" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2311,20 +2429,28 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" " %s" msgstr "" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2400,6 +2526,12 @@ msgstr "" msgid "EAN13" msgstr "" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2457,7 +2589,7 @@ msgid "Ecuador" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2523,7 +2655,7 @@ msgid "Action to Trigger" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2718,18 +2850,13 @@ msgstr "" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2775,7 +2902,7 @@ msgid "Rules" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2843,7 +2970,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -2873,6 +3000,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2904,7 +3037,7 @@ msgid "Benin" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2934,6 +3067,14 @@ msgstr "" msgid "API ID" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3179,6 +3320,12 @@ msgstr "" msgid "Nicaragua" msgstr "" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3457,7 +3604,8 @@ msgid "Bank Type" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "" @@ -3479,7 +3627,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3497,7 +3645,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3529,7 +3677,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3604,6 +3754,11 @@ msgstr "" msgid "Cape Verde" msgstr "" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3617,6 +3772,12 @@ msgstr "" msgid "ir.actions.url" msgstr "" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3650,8 +3811,9 @@ msgid "French / Français" msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" msgstr "" #. module: base @@ -3902,6 +4064,14 @@ msgstr "" msgid "ir.attachment" msgstr "" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3940,8 +4110,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -3971,11 +4141,8 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" msgstr "" #. module: base @@ -4084,6 +4251,18 @@ msgstr "" msgid "Signature" msgstr "" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4105,7 +4284,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4146,8 +4325,10 @@ msgid "Contacts" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" msgstr "" #. module: base @@ -4177,6 +4358,12 @@ msgstr "" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4221,14 +4408,8 @@ msgid "Mongolia" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -4343,11 +4524,6 @@ msgstr "" msgid "Password" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4447,7 +4623,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4515,7 +4691,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4593,7 +4769,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4666,7 +4848,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4714,6 +4896,11 @@ msgstr "" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4828,6 +5015,14 @@ msgstr "" msgid "Nepal" msgstr "" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4857,14 +5052,14 @@ msgid "Update Modules List" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4883,6 +5078,12 @@ msgstr "" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5013,6 +5214,13 @@ msgstr "" msgid "Iteration" msgstr "" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5051,7 +5259,12 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "" @@ -5062,7 +5275,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5072,6 +5285,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5189,7 +5408,7 @@ msgid "ir.actions.todo" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5263,17 +5482,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5282,7 +5507,7 @@ msgid "Python Code" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "" @@ -5401,7 +5626,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5440,7 +5665,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5652,7 +5877,7 @@ msgid "Afghanistan, Islamic State of" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "" @@ -5673,6 +5898,12 @@ msgstr "" msgid "Kind" msgstr "" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5928,6 +6159,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5937,11 +6176,6 @@ msgstr "" msgid "Address" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6020,7 +6254,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6104,7 +6338,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6125,11 +6359,19 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6176,6 +6418,14 @@ msgstr "" msgid "Home Action" msgstr "" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6204,10 +6454,9 @@ msgid "Stop All" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6258,7 +6507,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6316,7 +6565,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6368,7 +6617,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6449,7 +6698,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6487,6 +6743,12 @@ msgstr "" msgid "Arguments" msgstr "" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6497,14 +6759,29 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" msgstr "" #. module: base @@ -6610,7 +6887,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6661,6 +6938,15 @@ msgstr "" msgid "Object" msgstr "" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6696,7 +6982,7 @@ msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6837,7 +7123,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6893,7 +7179,7 @@ msgid "Action Type" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -6996,11 +7282,23 @@ msgstr "" msgid "workflow.instance" msgstr "" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7175,6 +7473,11 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7312,7 +7615,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7510,7 +7813,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7554,6 +7857,14 @@ msgstr "" msgid "Antigua and Barbuda" msgstr "" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7612,7 +7923,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7622,6 +7933,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7678,6 +7994,35 @@ msgstr "" msgid "Turkmenistan" msgstr "" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7806,7 +8151,7 @@ msgid "Internal Header/Footer" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7845,6 +8190,14 @@ msgstr "" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7868,7 +8221,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7915,11 +8268,18 @@ msgid "Low" msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7928,7 +8288,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8082,7 +8442,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8094,6 +8454,11 @@ msgstr "" msgid "Resource" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8105,7 +8470,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8117,6 +8482,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8241,7 +8614,7 @@ msgid "Azerbaijan" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "" @@ -8268,8 +8641,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" msgstr "" #. module: base @@ -8568,7 +8941,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8628,7 +9001,7 @@ msgid "Workflow Instances" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "" @@ -8686,6 +9059,10 @@ msgstr "" msgid "Russian / русский язык" msgstr "" +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Anda tidak dapat membuat dokumen seperti ini! (%s)" + #~ msgid "%j - Day of the year as a decimal number [001,366]." #~ msgstr "%j - Hari dalam setahun sebagai angka desimal [001,366]." diff --git a/bin/addons/base/i18n/is.po b/bin/addons/base/i18n/is.po index a61cb75fad4..bb991351abe 100644 --- a/bin/addons/base/i18n/is.po +++ b/bin/addons/base/i18n/is.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2009-11-30 08:27+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: Icelandic \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:55+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:16+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -41,6 +41,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -53,12 +61,6 @@ msgstr "" msgid "View Architecture" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -109,6 +111,14 @@ msgstr "" msgid "Created Views" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -125,10 +135,9 @@ msgid "South Korea" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" msgstr "" #. module: base @@ -141,13 +150,20 @@ msgstr "" msgid "Swaziland" msgstr "" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -176,13 +192,13 @@ msgid "Search Partner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "" @@ -213,7 +229,7 @@ msgid "Contact Name" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -235,6 +251,12 @@ msgstr "" msgid "Wizard Name" msgstr "" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -267,7 +289,6 @@ msgstr "" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -318,7 +339,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -340,11 +361,6 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -352,6 +368,12 @@ msgid "" "name, it returns the previous report." msgstr "" +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -378,6 +400,12 @@ msgstr "" msgid "Schedule Upgrade" msgstr "" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -419,7 +447,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -666,6 +694,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -730,6 +764,14 @@ msgstr "" msgid "Type" msgstr "" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -756,6 +798,19 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -860,6 +915,16 @@ msgstr "" msgid "Search" msgstr "" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -915,13 +980,13 @@ msgid "ir.exports" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -952,6 +1017,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -999,7 +1070,7 @@ msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1100,12 +1171,6 @@ msgstr "" 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 #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1145,8 +1210,8 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr "" @@ -1224,7 +1289,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1235,7 +1300,8 @@ msgid "Malawi" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1284,7 +1350,6 @@ msgstr "" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1311,6 +1376,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1362,7 +1433,7 @@ msgid "Bahamas" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1383,6 +1454,12 @@ msgstr "" msgid "Number of modules updated" msgstr "" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1458,6 +1535,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1527,7 +1610,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1612,12 +1695,6 @@ msgstr "" msgid "French (BE) / Français (BE)" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1688,6 +1765,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1698,13 +1781,19 @@ msgstr "" msgid "Slovenia" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1734,6 +1823,14 @@ msgstr "" msgid "New Zealand" msgstr "" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1783,19 +1880,13 @@ msgstr "" msgid "Valid" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "" @@ -1906,6 +1997,15 @@ msgstr "" msgid "HR sector" msgstr "" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1959,6 +2059,11 @@ msgstr "" msgid "Main Company" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2045,8 +2150,9 @@ msgid "Sir" msgstr "" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2145,7 +2251,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2169,6 +2275,12 @@ msgstr "" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2189,7 +2301,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "" @@ -2214,6 +2332,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2266,11 +2389,6 @@ msgstr "" msgid "VAT" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2307,20 +2425,28 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" " %s" msgstr "" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2396,6 +2522,12 @@ msgstr "" msgid "EAN13" msgstr "" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2453,7 +2585,7 @@ msgid "Ecuador" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2519,7 +2651,7 @@ msgid "Action to Trigger" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2714,18 +2846,13 @@ msgstr "" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2771,7 +2898,7 @@ msgid "Rules" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2839,7 +2966,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -2869,6 +2996,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2900,7 +3033,7 @@ msgid "Benin" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2930,6 +3063,14 @@ msgstr "" msgid "API ID" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3175,6 +3316,12 @@ msgstr "" msgid "Nicaragua" msgstr "" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3453,7 +3600,8 @@ msgid "Bank Type" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "" @@ -3475,7 +3623,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3493,7 +3641,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3525,7 +3673,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3600,6 +3750,11 @@ msgstr "" msgid "Cape Verde" msgstr "" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3613,6 +3768,12 @@ msgstr "" msgid "ir.actions.url" msgstr "" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3646,8 +3807,9 @@ msgid "French / Français" msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" msgstr "" #. module: base @@ -3898,6 +4060,14 @@ msgstr "" msgid "ir.attachment" msgstr "" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3936,8 +4106,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -3967,11 +4137,8 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" msgstr "" #. module: base @@ -4080,6 +4247,18 @@ msgstr "" msgid "Signature" msgstr "" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4101,7 +4280,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4142,8 +4321,10 @@ msgid "Contacts" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" msgstr "" #. module: base @@ -4173,6 +4354,12 @@ msgstr "" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4217,14 +4404,8 @@ msgid "Mongolia" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -4339,11 +4520,6 @@ msgstr "" msgid "Password" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4443,7 +4619,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4511,7 +4687,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4589,7 +4765,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4662,7 +4844,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4710,6 +4892,11 @@ msgstr "" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4824,6 +5011,14 @@ msgstr "" msgid "Nepal" msgstr "" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4853,14 +5048,14 @@ msgid "Update Modules List" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4879,6 +5074,12 @@ msgstr "" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5009,6 +5210,13 @@ msgstr "" msgid "Iteration" msgstr "" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5047,7 +5255,12 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "" @@ -5058,7 +5271,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5068,6 +5281,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5185,7 +5404,7 @@ msgid "ir.actions.todo" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5259,17 +5478,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5278,7 +5503,7 @@ msgid "Python Code" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "" @@ -5397,7 +5622,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5436,7 +5661,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5648,7 +5873,7 @@ msgid "Afghanistan, Islamic State of" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "" @@ -5669,6 +5894,12 @@ msgstr "" msgid "Kind" msgstr "" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5924,6 +6155,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5933,11 +6172,6 @@ msgstr "" msgid "Address" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6016,7 +6250,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6100,7 +6334,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6121,11 +6355,19 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6172,6 +6414,14 @@ msgstr "" msgid "Home Action" msgstr "" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6200,10 +6450,9 @@ msgid "Stop All" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6254,7 +6503,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6312,7 +6561,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6364,7 +6613,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6445,7 +6694,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6483,6 +6739,12 @@ msgstr "" msgid "Arguments" msgstr "" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6493,14 +6755,29 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" msgstr "" #. module: base @@ -6606,7 +6883,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6657,6 +6934,15 @@ msgstr "" msgid "Object" msgstr "" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6692,7 +6978,7 @@ msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6833,7 +7119,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6889,7 +7175,7 @@ msgid "Action Type" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -6992,11 +7278,23 @@ msgstr "" msgid "workflow.instance" msgstr "" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7171,6 +7469,11 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7308,7 +7611,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7506,7 +7809,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7550,6 +7853,14 @@ msgstr "" msgid "Antigua and Barbuda" msgstr "" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7608,7 +7919,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7618,6 +7929,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7674,6 +7990,35 @@ msgstr "" msgid "Turkmenistan" msgstr "" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7802,7 +8147,7 @@ msgid "Internal Header/Footer" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7841,6 +8186,14 @@ msgstr "" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7864,7 +8217,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7911,11 +8264,18 @@ msgid "Low" msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7924,7 +8284,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8078,7 +8438,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8090,6 +8450,11 @@ msgstr "" msgid "Resource" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8101,7 +8466,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8113,6 +8478,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8237,7 +8610,7 @@ msgid "Azerbaijan" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "" @@ -8264,8 +8637,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" msgstr "" #. module: base @@ -8564,7 +8937,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8624,7 +8997,7 @@ msgid "Workflow Instances" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "" diff --git a/bin/addons/base/i18n/it.po b/bin/addons/base/i18n/it.po index b1dde937528..43029a8a9c1 100644 --- a/bin/addons/base/i18n/it.po +++ b/bin/addons/base/i18n/it.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-02 07:35+0000\n" "Last-Translator: Davide Corio - Domsense \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:55+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:17+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,14 @@ msgstr "Altre configurazioni" msgid "DateTime" msgstr "DateTime" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +60,6 @@ msgstr "Metadati" msgid "View Architecture" msgstr "Visualizza Architettura" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Non puoi creare questo tipo di documento! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +110,14 @@ msgstr "Mostra Suggerimenti" msgid "Created Views" msgstr "Viste Create" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,11 +134,10 @@ msgid "South Korea" msgstr "Corea del Sud" #. 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 "Transizioni" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "Errore nei Vincoli" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -140,13 +149,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Swaziland" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "Fornitori di legno" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -177,14 +193,14 @@ msgid "Search Partner" msgstr "Ricerca Partner" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" "Il server \"smtp_server\" deve essere definito per poter inviare le e-mail." #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "nuovo" @@ -215,7 +231,7 @@ msgid "Contact Name" msgstr "Nome Contatto" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -239,6 +255,12 @@ msgstr "attivo" msgid "Wizard Name" msgstr "Nome della procedura guidata" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -271,7 +293,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "Oggetto" @@ -322,7 +343,7 @@ msgid "Netherlands Antilles" msgstr "Antille olandesi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -346,11 +367,6 @@ msgstr "Greco / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "Bosniaco / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -361,6 +377,12 @@ msgstr "" "utilizzando lo stesso nome per l'allegato, verrà restituito il report " "precedente." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "Il metodo 'Lettura' non è implementato per questo oggetto." + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -388,6 +410,12 @@ msgstr "Colombia" msgid "Schedule Upgrade" msgstr "Pianifica l'aggiornamento" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -433,7 +461,7 @@ msgid "Miscellaneous Suppliers" msgstr "Fornitori generici" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "I Campi personalizzati devono avere un nome che inizia con 'x_' !" @@ -691,6 +719,12 @@ msgid "" msgstr "" "Imposta la lingua per l'interfaccia utente quando la traduzione è disponibile" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -755,6 +789,14 @@ msgstr "%B - Nome del mese completo" msgid "Type" msgstr "Tipo" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -781,6 +823,19 @@ msgstr "XML non valido per Visualizzazione Architettura!" msgid "Cayman Islands" msgstr "Isole Cayman" +#. 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 "Transizioni" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -892,6 +947,21 @@ msgstr "Haiti" msgid "Search" msgstr "Ricerca" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" +"L'operazione non può essere completata, probabilmente in seguito a:\n" +"- cancellazione: stai cercando di cancellare un record mentra altri record " +"sono referenziati a esso\n" +"- creazione/aggiornamento: un campo obbligatorio deve essere correttamente " +"impostato" + #. module: base #: view:ir.rule:0 msgid "" @@ -949,13 +1019,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "Nessuna esiste lingua con il codice \"%s\"" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -989,6 +1059,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1038,7 +1114,7 @@ msgid "On Create" msgstr "Alla Creazione" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1159,12 +1235,6 @@ msgstr "ID Allegato" msgid "Day: %(day)s" msgstr "Giorno: %(day)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Non puoi leggere questo documento ! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1213,8 +1283,8 @@ msgstr "" "object.list_price > object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (copia)" @@ -1294,7 +1364,7 @@ msgid "Formula" msgstr "Formula" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "Non posso rimuovere l'utente root" @@ -1305,7 +1375,8 @@ msgid "Malawi" msgstr "Malawi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "%s (copia)" @@ -1358,7 +1429,6 @@ msgstr "Struttura ad Albero" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1388,6 +1458,12 @@ msgstr "" "Quando usi il formato CSV, verifica che la prima linea del tuo file sia una " "delle segutenti:" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1442,7 +1518,7 @@ msgid "Bahamas" msgstr "Bahamas" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1465,6 +1541,12 @@ msgstr "Irlanda" msgid "Number of modules updated" msgstr "Numero di moduli aggiornati" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1547,6 +1629,12 @@ msgstr "" "Lista delle modalità di visualizzazione consentite separate da virgola come: " "'form', 'tree', 'calendar', ... (Default: tree,form)" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1619,7 +1707,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1710,12 +1798,6 @@ msgstr "Indirizzo di posta elettronica" msgid "French (BE) / Français (BE)" msgstr "Francese (BE) / Français (BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Non puoi scrivere in questo documento! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1788,6 +1870,12 @@ msgstr "" "Nome oggetto la cui funzione verrà chiamata quando questo scheduler verrà " "eseguito. ad esempio 'Res.partener'" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1798,13 +1886,19 @@ msgstr "" msgid "Slovenia" msgstr "Slovenia" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "Messaggi" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1834,6 +1928,14 @@ msgstr "Data Fine" msgid "New Zealand" msgstr "Nuova Zelanda" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1886,19 +1988,13 @@ msgstr "Attenzione: non puoi creare aziende ricorsive" msgid "Valid" msgstr "Valido" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Non puoi cancellare questo documento (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "Impossibile aggiornare il modulo '%s'. Non è installato.," @@ -2009,6 +2105,15 @@ msgstr "Signal (subflow.*)" msgid "HR sector" msgstr "Settore Risorse Umane" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -2065,6 +2170,11 @@ msgstr "Dipendenze" msgid "Main Company" msgstr "Azienda Principale" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2157,9 +2267,10 @@ msgid "Sir" msgstr "Sig." #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" -msgstr "Seleziona il pacchetto per il modulo da importare (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" +msgstr "" #. module: base #: field:ir.default,ref_id:0 @@ -2257,7 +2368,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "Per favore specificare una azione da lanciare !" @@ -2281,6 +2392,12 @@ msgstr "Da destra a sinistra" msgid "Filters" msgstr "Filtri" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2302,7 +2419,13 @@ msgstr "" "Se non impostato, sarà usato come valore di default per le nuove risorse" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "Errore di ricorsione delle dipendenze dei moduli !" @@ -2332,6 +2455,11 @@ msgstr "" "Numero di partita IVA. Selezionare la casella se il partner è soggetto a " "IVA. Utilizzato nelle dichiarazioni IVA" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2384,11 +2512,6 @@ msgstr "Verifica EAN" msgid "VAT" msgstr "Partita IVA" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2425,7 +2548,7 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2434,13 +2557,21 @@ msgstr "" "Impossibile creare il file di modulo:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Nauru" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "L'ID del certificato del modulo deve essere unico!" @@ -2520,6 +2651,12 @@ msgstr "Invia SMS" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2578,7 +2715,7 @@ msgid "Ecuador" msgstr "Ecuador" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2650,7 +2787,7 @@ msgid "Action to Trigger" msgstr "Azione da innescare" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2853,18 +2990,13 @@ msgstr "Autore" msgid "FYROM" msgstr "FYROM" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Ricerca Avanzata" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Rappresentazione appropriata della data e dell'ora." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2910,7 +3042,7 @@ msgid "Rules" msgstr "Regole" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2981,7 +3113,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "Non puoi rimuovere il modello '%s' !" @@ -3011,6 +3143,12 @@ msgstr "Abkhazian / аҧсуа" msgid "System Configuration Done" msgstr "La cofigurazione è stata effettuata" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -3042,7 +3180,7 @@ msgid "Benin" msgstr "Benin" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -3072,6 +3210,14 @@ msgstr "Intestazione RML" msgid "API ID" msgstr "API ID" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3328,6 +3474,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "Nicaragua" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3613,7 +3765,8 @@ msgid "Bank Type" msgstr "Tipo Conto" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "Il nome del gruppo non può iniziare con '-'" @@ -3635,7 +3788,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "Gujarati / ગુજરાતી" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3655,7 +3808,7 @@ msgid "Flow Start" msgstr "Avvia Flusso" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3689,7 +3842,9 @@ msgid "Guadeloupe (French)" msgstr "Guadalupa (Francia)" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "Errore dell'Utente" @@ -3767,6 +3922,11 @@ msgstr "" msgid "Cape Verde" msgstr "Capo Verde" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "Seleziona il pacchetto per il modulo da importare (.zip file):" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3780,6 +3940,12 @@ msgstr "Eventi" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3813,9 +3979,10 @@ msgid "French / Français" msgstr "French / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Menu Creati" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -4067,6 +4234,14 @@ msgstr "Consiglio" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -4107,8 +4282,8 @@ msgid "Project" msgstr "Progetto" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -4138,12 +4313,9 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Cliente" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "Monitoraggio" #. module: base #: model:res.country,name:base.lc @@ -4251,6 +4423,18 @@ msgstr "Vietnam" msgid "Signature" msgstr "Firma" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4272,7 +4456,7 @@ msgid "False means for every user" msgstr "Falso significa per tutti gli utenti" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "Il nome del modulo deve essere unico!" @@ -4313,9 +4497,11 @@ msgid "Contacts" msgstr "Contatti" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Isole Fær Øer" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4344,6 +4530,12 @@ msgstr "Repubblica Ceca" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4390,15 +4582,9 @@ msgid "Mongolia" msgstr "Mongolia" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Errore" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Menu Creati" #. module: base #: selection:ir.ui.view,type:0 @@ -4514,11 +4700,6 @@ msgstr "Saint Vincent e Grenadine" msgid "Password" msgstr "Password" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4622,7 +4803,7 @@ msgid "Change My Preferences" msgstr "Cambia le Mie Preferenze" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Nome di modulo non valido nella definizione dell'azione." @@ -4690,7 +4871,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4773,7 +4954,13 @@ msgid "Client Actions" msgstr "Azioni client" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4848,7 +5035,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Modulo %s: Certificato di qualità non valido" @@ -4899,6 +5086,11 @@ msgstr "Invio SMS" msgid "Accepted Users" msgstr "Utenti accettati" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -5024,6 +5216,14 @@ msgstr "" msgid "Nepal" msgstr "Nepal" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -5056,7 +5256,7 @@ msgid "Update Modules List" msgstr "Aggiorna Lista Moduli" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" @@ -5065,7 +5265,7 @@ msgstr "" "presente: %s" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5088,6 +5288,12 @@ msgstr "Continua" msgid "Thai / ภาษาไทย" msgstr "Thailandia" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5218,6 +5424,13 @@ msgstr "Il nome completo della nazione" msgid "Iteration" msgstr "Iterazione" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5258,7 +5471,12 @@ msgid "Solomon Islands" msgstr "Isole Salomone" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "Errore in Accesso" @@ -5269,7 +5487,7 @@ msgid "Waiting" msgstr "In attesa" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "Non è possibile caricare il modulo base" @@ -5279,6 +5497,12 @@ msgstr "Non è possibile caricare il modulo base" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "Copy text \t 8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5400,7 +5624,7 @@ msgid "ir.actions.todo" msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "Non è possibile trovare la precedente ir.action.todo" @@ -5474,19 +5698,25 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "Il modello %s non esiste!" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" "Impossibile eliminare il linguaggio che corrisponde al Linguaggio Preferito " "dell'Utente" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5495,7 +5725,7 @@ msgid "Python Code" msgstr "Codice Python" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "Impossibile creare il file del modulo: %s !" @@ -5616,7 +5846,7 @@ msgstr "" "altre viste" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5659,7 +5889,7 @@ msgstr "" "creazione)." #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "Per favore specificare l'opzione server: --email-from!" @@ -5877,7 +6107,7 @@ msgid "Afghanistan, Islamic State of" msgstr "Stato islamico dell'Afghanistan" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Errore !" @@ -5898,6 +6128,12 @@ msgstr "Unità di Intervallo" msgid "Kind" msgstr "Tipo" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -6166,6 +6402,14 @@ msgid "To browse official translations, you can start with these links:" msgstr "" "Per sfogliare le traduzioni ufficiali, è possibile partire con questi link:" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -6175,11 +6419,6 @@ msgstr "" msgid "Address" msgstr "Indirizzo" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6258,7 +6497,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "Saint Kitts e Nevis" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6347,7 +6586,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6372,11 +6611,19 @@ msgid "Child IDs" msgstr "ID dipendenti" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problema nella configurazione 'Record Id' nell'azione del Server!" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6425,6 +6672,14 @@ msgstr "Email" msgid "Home Action" msgstr "Azione Home" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6453,10 +6708,9 @@ msgid "Stop All" msgstr "Ferma tutto" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6509,7 +6763,7 @@ msgid "Start update" msgstr "Inizia aggiornamento" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6567,7 +6821,7 @@ msgid "HR Manager Dashboard" msgstr "Dashboard Manager Ris. Umane" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6626,7 +6880,7 @@ msgid "Module Update" msgstr "Aggiornamento modulo" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "I seguenti moduli non sono installati o sono sconosciuti: %s" @@ -6707,7 +6961,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "Il nuovo nome reale utente, usato per ricerche e in molte liste" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "Errore di integrità" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "La dimensione del campo non può mai essere minore a 1 !" @@ -6745,6 +7006,12 @@ msgstr "A" msgid "Arguments" msgstr "Argomenti" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6755,15 +7022,30 @@ msgstr "GPL Versione 2" msgid "GPL Version 3" msgstr "GPL Versione 3" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "EAN13 corretto" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" -msgstr "Monitoraggio" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Cliente" #. module: base #: selection:base.language.install,lang:0 @@ -6868,7 +7150,7 @@ msgid "Copy Object" msgstr "Copia oggetto" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6919,6 +7201,18 @@ msgstr "Rif. Tabella" msgid "Object" msgstr "Oggetto" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" +"\n" +"\n" +"[oggetto con referenza: %s - %s]" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6956,7 +7250,7 @@ msgid "User Ref." msgstr "Rif. Utente" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "Attenzione!" @@ -7097,7 +7391,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "Criteri di ricerca non validi" @@ -7155,7 +7449,7 @@ msgid "Action Type" msgstr "Tipo Azione" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7264,11 +7558,23 @@ msgstr "Codice Nazione" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7445,6 +7751,11 @@ msgstr "Invia Email" msgid "Menu Action" msgstr "Azione Menu" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Isole Fær Øer" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7589,7 +7900,7 @@ msgid "China" msgstr "Cina" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7796,7 +8107,7 @@ msgid "Account No." msgstr "Conto n." #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Il Linguaggio base 'en_US' non può essere eliminato !" @@ -7845,6 +8156,14 @@ msgstr "Valore Traduzione" msgid "Antigua and Barbuda" msgstr "Antigua e Barbuda" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7903,7 +8222,7 @@ msgid "Auto-Refresh" msgstr "Auto-Aggiornamento" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7915,6 +8234,11 @@ msgstr "" msgid "Diagram" msgstr "Diagramma" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis e Fortuna" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7971,6 +8295,35 @@ msgstr "Codice Identificazione Banca" msgid "Turkmenistan" msgstr "Turkmenistan" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Errore" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -8099,7 +8452,7 @@ msgid "Internal Header/Footer" msgstr "Intestazione/Piè di Pagina Interni" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -8140,6 +8493,14 @@ msgstr "Repubblica Dominicana" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -8166,7 +8527,7 @@ msgid "Event Logs" msgstr "Log eventi" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "Configurazione sistema effettuata" @@ -8213,11 +8574,18 @@ msgid "Low" msgstr "Bassa" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Errore! Non è possibile creare un menù ricorsivo." +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -8228,7 +8596,7 @@ msgstr "" "combinato con l'operatore logico \"OR\"" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8387,7 +8755,7 @@ msgid "View Auto-Load" msgstr "Visualizza Auto-Caricamento" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Non è possibile rimuovere il campo \"%s\"!" @@ -8399,6 +8767,11 @@ msgstr "Non è possibile rimuovere il campo \"%s\"!" msgid "Resource" msgstr "Risorse" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8410,7 +8783,7 @@ msgid "View Ordering" msgstr "Ordine visualizzazione" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "Dipendenza non trovata!" @@ -8424,6 +8797,14 @@ msgstr "" "Formato di file supportato: *.csv (Comma-separated values) o *.po (GetText " "Portable Objects)" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8553,7 +8934,7 @@ msgid "Azerbaijan" msgstr "Azerbaijan" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Avviso" @@ -8580,9 +8961,9 @@ msgid "Czech / Čeština" msgstr "Czech / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis e Fortuna" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Ricerca Avanzata" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8891,7 +9272,7 @@ msgid "Account Owner" msgstr "Titolare Conto" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "Messaggio di warning per il Cambiamento dell'Azienda" @@ -8951,7 +9332,7 @@ msgid "Workflow Instances" msgstr "Istanze Workflow" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Partners: " @@ -10190,6 +10571,10 @@ msgstr "Russian / русский язык" #~ "gruppi. Se il campo è vuoto, OpenERP calcolerà la visibilità sulla base dei " #~ "permessi di lettura dell'oggetto associato." +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Non puoi creare questo tipo di documento! (%s)" + #, python-format #~ msgid "Result (/10)" #~ msgstr "Risultato (/10)" @@ -10210,10 +10595,6 @@ msgstr "Russian / русский язык" #~ msgid "Product Quantity" #~ msgstr "Quantità prodotto" -#, python-format -#~ msgid "The read method is not implemented on this object !" -#~ msgstr "Il metodo 'Lettura' non è implementato per questo oggetto." - #, python-format #~ msgid "Tag Name" #~ msgstr "Nome del tag" @@ -10238,6 +10619,10 @@ msgstr "Russian / русский язык" #~ msgid "Pie charts need exactly two fields" #~ msgstr "I Grafici a Torta necessitano di due campi" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Non puoi leggere questo documento ! (%s)" + #~ msgid "The company this user is currently working on." #~ msgstr "L'azienda per la quale lavora attualmente l'utente." @@ -10263,6 +10648,10 @@ msgstr "Russian / русский язык" #~ msgid "This user can not connect using this company !" #~ msgstr "Questo utente non può connettersi a questa azienda!" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Non puoi scrivere in questo documento! (%s)" + #~ msgid "Confirmation" #~ msgstr "Conferma" @@ -10274,6 +10663,10 @@ msgstr "Russian / русский язык" #~ msgstr "" #~ "Rende la regola globale, altrimenti deve essere inserita in un gruppo" +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Non puoi cancellare questo documento (%s)" + #~ msgid "Installation Done" #~ msgstr "Installazione Completata" @@ -10482,37 +10875,6 @@ msgstr "Russian / русский язык" #~ msgid "Returning" #~ msgstr "Sto ritornando" -#, python-format -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "[object with reference: %s - %s]" -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "[oggetto con referenza: %s - %s]" - -#, python-format -#~ msgid "Integrity Error" -#~ msgstr "Errore di integrità" - -#, python-format -#~ msgid "" -#~ "The operation cannot be completed, probably due to the following:\n" -#~ "- deletion: you may be trying to delete a record while other records still " -#~ "reference it\n" -#~ "- creation/update: a mandatory field is not correctly set" -#~ msgstr "" -#~ "L'operazione non può essere completata, probabilmente in seguito a:\n" -#~ "- cancellazione: stai cercando di cancellare un record mentra altri record " -#~ "sono referenziati a esso\n" -#~ "- creazione/aggiornamento: un campo obbligatorio deve essere correttamente " -#~ "impostato" - -#, python-format -#~ msgid "Constraint Error" -#~ msgstr "Errore nei Vincoli" - #~ msgid "terp-folder-yellow" #~ msgstr "terp-folder-yellow" diff --git a/bin/addons/base/i18n/ja.po b/bin/addons/base/i18n/ja.po index 291c2eb96aa..419f972f259 100644 --- a/bin/addons/base/i18n/ja.po +++ b/bin/addons/base/i18n/ja.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-09-09 06:58+0000\n" "Last-Translator: Harry (Open ERP) \n" "Language-Team: Japanese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:55+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:17+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -41,6 +41,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -53,12 +61,6 @@ msgstr "メタデータ" msgid "View Architecture" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -109,6 +111,14 @@ msgstr "" msgid "Created Views" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -125,10 +135,9 @@ msgid "South Korea" msgstr "韓国" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" msgstr "" #. module: base @@ -141,13 +150,20 @@ msgstr "" msgid "Swaziland" msgstr "スワジランド" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -176,13 +192,13 @@ msgid "Search Partner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "新規" @@ -213,7 +229,7 @@ msgid "Contact Name" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -235,6 +251,12 @@ msgstr "" msgid "Wizard Name" msgstr "ウィザード名" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -267,7 +289,6 @@ msgstr "" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -318,7 +339,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -340,11 +361,6 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -352,6 +368,12 @@ msgid "" "name, it returns the previous report." msgstr "" +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -378,6 +400,12 @@ msgstr "コロンビア" msgid "Schedule Upgrade" msgstr "スケジュール更新" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -419,7 +447,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "カスタム・フィールドは、x_で始まる名前を持っていなければなりません。" @@ -666,6 +694,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -730,6 +764,14 @@ msgstr "%B - 月名" msgid "Type" msgstr "タイプ" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -756,6 +798,19 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -860,6 +915,16 @@ msgstr "ハイチ" msgid "Search" msgstr "検索" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -915,13 +980,13 @@ msgid "ir.exports" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -952,6 +1017,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -999,7 +1070,7 @@ msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1100,12 +1171,6 @@ msgstr "" 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 "あなたはこの文書を読むことができません!(%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1145,8 +1210,8 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr "" @@ -1224,7 +1289,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1235,7 +1300,8 @@ msgid "Malawi" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1284,7 +1350,6 @@ msgstr "" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1311,6 +1376,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1362,7 +1433,7 @@ msgid "Bahamas" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1383,6 +1454,12 @@ msgstr "" msgid "Number of modules updated" msgstr "" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1458,6 +1535,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1527,7 +1610,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1612,12 +1695,6 @@ msgstr "" msgid "French (BE) / Français (BE)" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1688,6 +1765,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1698,13 +1781,19 @@ msgstr "" msgid "Slovenia" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1734,6 +1823,14 @@ msgstr "" msgid "New Zealand" msgstr "" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1783,19 +1880,13 @@ msgstr "" msgid "Valid" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "" @@ -1906,6 +1997,15 @@ msgstr "" msgid "HR sector" msgstr "" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1959,6 +2059,11 @@ msgstr "" msgid "Main Company" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2045,8 +2150,9 @@ msgid "Sir" msgstr "" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2145,7 +2251,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2169,6 +2275,12 @@ msgstr "" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2189,7 +2301,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "" @@ -2214,6 +2332,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2266,11 +2389,6 @@ msgstr "" msgid "VAT" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2307,20 +2425,28 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" " %s" msgstr "" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2396,6 +2522,12 @@ msgstr "" msgid "EAN13" msgstr "" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2453,7 +2585,7 @@ msgid "Ecuador" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2519,7 +2651,7 @@ msgid "Action to Trigger" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2714,18 +2846,13 @@ msgstr "" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2771,7 +2898,7 @@ msgid "Rules" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2839,7 +2966,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "あなたは、モデル %s を削除することができません。" @@ -2869,6 +2996,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2900,7 +3033,7 @@ msgid "Benin" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2930,6 +3063,14 @@ msgstr "" msgid "API ID" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3175,6 +3316,12 @@ msgstr "" msgid "Nicaragua" msgstr "" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3453,7 +3600,8 @@ msgid "Bank Type" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "" @@ -3475,7 +3623,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3493,7 +3641,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3525,7 +3673,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3600,6 +3750,11 @@ msgstr "" msgid "Cape Verde" msgstr "" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3613,6 +3768,12 @@ msgstr "" msgid "ir.actions.url" msgstr "" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3646,8 +3807,9 @@ msgid "French / Français" msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" msgstr "" #. module: base @@ -3898,6 +4060,14 @@ msgstr "" msgid "ir.attachment" msgstr "" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3936,8 +4106,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -3967,11 +4137,8 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" msgstr "" #. module: base @@ -4080,6 +4247,18 @@ msgstr "" msgid "Signature" msgstr "" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4101,7 +4280,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4142,8 +4321,10 @@ msgid "Contacts" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" msgstr "" #. module: base @@ -4173,6 +4354,12 @@ msgstr "" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4217,14 +4404,8 @@ msgid "Mongolia" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -4339,11 +4520,6 @@ msgstr "" msgid "Password" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4443,7 +4619,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4511,7 +4687,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4589,7 +4765,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4662,7 +4844,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4710,6 +4892,11 @@ msgstr "" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4824,6 +5011,14 @@ msgstr "" msgid "Nepal" msgstr "" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4853,14 +5048,14 @@ msgid "Update Modules List" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4879,6 +5074,12 @@ msgstr "" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5009,6 +5210,13 @@ msgstr "" msgid "Iteration" msgstr "" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5047,7 +5255,12 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "" @@ -5058,7 +5271,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5068,6 +5281,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5185,7 +5404,7 @@ msgid "ir.actions.todo" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5259,17 +5478,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5278,7 +5503,7 @@ msgid "Python Code" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "" @@ -5397,7 +5622,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5436,7 +5661,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5648,7 +5873,7 @@ msgid "Afghanistan, Islamic State of" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "" @@ -5669,6 +5894,12 @@ msgstr "" msgid "Kind" msgstr "" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5924,6 +6155,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5933,11 +6172,6 @@ msgstr "" msgid "Address" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6016,7 +6250,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6100,7 +6334,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6121,11 +6355,19 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6172,6 +6414,14 @@ msgstr "" msgid "Home Action" msgstr "" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6200,10 +6450,9 @@ msgid "Stop All" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6254,7 +6503,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6312,7 +6561,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6364,7 +6613,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6445,7 +6694,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6483,6 +6739,12 @@ msgstr "" msgid "Arguments" msgstr "" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6493,14 +6755,29 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" msgstr "" #. module: base @@ -6606,7 +6883,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6657,6 +6934,15 @@ msgstr "" msgid "Object" msgstr "" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6692,7 +6978,7 @@ msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6833,7 +7119,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6889,7 +7175,7 @@ msgid "Action Type" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -6992,11 +7278,23 @@ msgstr "" msgid "workflow.instance" msgstr "" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7171,6 +7469,11 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7308,7 +7611,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7506,7 +7809,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7550,6 +7853,14 @@ msgstr "" msgid "Antigua and Barbuda" msgstr "" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7608,7 +7919,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7618,6 +7929,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7674,6 +7990,35 @@ msgstr "" msgid "Turkmenistan" msgstr "" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7802,7 +8147,7 @@ msgid "Internal Header/Footer" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7841,6 +8186,14 @@ msgstr "" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7864,7 +8217,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7911,11 +8264,18 @@ msgid "Low" msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7924,7 +8284,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8078,7 +8438,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8090,6 +8450,11 @@ msgstr "" msgid "Resource" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8101,7 +8466,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8113,6 +8478,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8237,7 +8610,7 @@ msgid "Azerbaijan" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "" @@ -8264,8 +8637,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" msgstr "" #. module: base @@ -8564,7 +8937,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8624,7 +8997,7 @@ msgid "Workflow Instances" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "" @@ -8724,5 +9097,9 @@ msgstr "" #~ "あなたは、モジュール %s をインストールしようとしていて、そのモジュールは、モジュール %s に依存しています。\n" #~ "しかし、このモジュールは、あなたのシステムでは利用可能ではありません。" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "あなたはこの文書を読むことができません!(%s)" + #~ msgid "Fixed Width" #~ msgstr "固定幅" diff --git a/bin/addons/base/i18n/ko.po b/bin/addons/base/i18n/ko.po index bdaac9c1a0c..eca19453541 100644 --- a/bin/addons/base/i18n/ko.po +++ b/bin/addons/base/i18n/ko.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-16 08:15+0000\n" "Last-Translator: ekodaq \n" "Language-Team: Korean \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:55+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:17+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -41,6 +41,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -53,12 +61,6 @@ msgstr "메타데이타" msgid "View Architecture" msgstr "아키텍처 보기" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "귀하는 이런 종류의 문서를 생성할 수 없습니다 (%s)." - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -109,6 +111,14 @@ msgstr "" msgid "Created Views" msgstr "생성된 뷰" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -125,11 +135,10 @@ msgid "South Korea" msgstr "대한민국" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "트랜지션" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -141,13 +150,20 @@ msgstr "" msgid "Swaziland" msgstr "" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -176,13 +192,13 @@ msgid "Search Partner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "새로" @@ -213,7 +229,7 @@ msgid "Contact Name" msgstr "연락처 이름" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -235,6 +251,12 @@ msgstr "활성" msgid "Wizard Name" msgstr "위저드 이름" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -267,7 +289,6 @@ msgstr "" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -318,7 +339,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -341,11 +362,6 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -353,6 +369,12 @@ msgid "" "name, it returns the previous report." msgstr "여기를 체크하면, 동일한 첨부 이름으로 사용자가 인쇄할 다음 번에, 이전 리포트를 제공합니다." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "이 읽기 방식은 이 오브젝트에 적용되지 않음!" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -379,6 +401,12 @@ msgstr "" msgid "Schedule Upgrade" msgstr "스케줄 업그레이드" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -420,7 +448,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "고객화 필드 이름은 'x_'로 시작해야 합니다!" @@ -667,6 +695,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "링크해제 방법은 이 오브젝트에 적용되지 않습니다." + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -731,6 +765,14 @@ msgstr "%B - 월 이름" msgid "Type" msgstr "타입" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -757,6 +799,19 @@ msgstr "유효하지 않은 뷰 아키텍처를 위한 XML !" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "트랜지션" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -863,6 +918,16 @@ msgstr "" msgid "Search" msgstr "" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -918,13 +983,13 @@ msgid "ir.exports" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -955,6 +1020,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "이 검색 방식은 이 오브젝트에 적용되지 않음!" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1002,7 +1073,7 @@ msgid "On Create" msgstr "생성" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1103,12 +1174,6 @@ msgstr "첨부된 ID" msgid "Day: %(day)s" msgstr "일: %(day)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "귀하는 이 문서를 볼 수 없습니다 (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1148,8 +1213,8 @@ msgid "" msgstr "액션이 실행되기 전에 테스트될 조건. e.g. object.list_price > object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr "" @@ -1228,7 +1293,7 @@ msgid "Formula" msgstr "공식" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "루트 사용자를 제거할 수는 없음!" @@ -1239,7 +1304,8 @@ msgid "Malawi" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1290,7 +1356,6 @@ msgstr "트리" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "이 사용자가 시스템에 접속하지 못하도록 하려면 체크하십시오." @@ -1317,6 +1382,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1368,7 +1439,7 @@ msgid "Bahamas" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1389,6 +1460,12 @@ msgstr "" msgid "Number of modules updated" msgstr "갱신된 모듈들의 수" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "set_memory method를 수행 못함 !" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1464,6 +1541,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1535,7 +1618,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1620,12 +1703,6 @@ msgstr "이메일 주소" msgid "French (BE) / Français (BE)" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "귀하는 이 문서에 쓰기 권한이 없음!(%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1696,6 +1773,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "perm_read 메쏘드는 이 오브젝트에 적용되지 않음!" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1706,13 +1789,19 @@ msgstr "" msgid "Slovenia" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1742,6 +1831,14 @@ msgstr "종료 날짜" msgid "New Zealand" msgstr "" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1791,19 +1888,13 @@ msgstr "에러! 재귀적 기업들을 생성할 수는 없습니다." msgid "Valid" msgstr "유효함" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "귀하는 이 문서를 삭제할 수 없습니다! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "모듈 '%s' 을 업그레이드할 수 없습니다. 설치 안됨." @@ -1914,6 +2005,15 @@ msgstr "신호 (subflow.*)" msgid "HR sector" msgstr "HR 섹터" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1967,6 +2067,11 @@ msgstr "의존성" msgid "Main Company" msgstr "메인 기업" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2053,8 +2158,9 @@ msgid "Sir" msgstr "" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2153,7 +2259,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "시작할 액션을 지정하십시오!" @@ -2177,6 +2283,12 @@ msgstr "오른쪽에서 왼쪽으로" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "모든 라인이 %d 칼럼을 가지는 지 체크하십시오." + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2197,7 +2309,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "재귀성이 탐지됨." + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "모듈 의존성에서 재귀성 오류가 발생!" @@ -2222,6 +2340,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "VAT 번호. 파트너가 VAT 부과 대상이면 이 박스를 체크하십시오. VAT 법적 조항에 이용됨." +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2274,11 +2397,6 @@ msgstr "" msgid "VAT" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2315,7 +2433,7 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2324,13 +2442,21 @@ msgstr "" "모듈 파일을 만들 수 없습니다:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2406,6 +2532,12 @@ msgstr "SMS 전송" msgid "EAN13" msgstr "" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2463,7 +2595,7 @@ msgid "Ecuador" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2532,7 +2664,7 @@ msgid "Action to Trigger" msgstr "트리거 액션" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2728,18 +2860,13 @@ msgstr "저자" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "고급 검색" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - 적절한 날짜 및 시간 표시" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2785,7 +2912,7 @@ msgid "Rules" msgstr "규칙" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "설치된 혹은 설치 예정 모듈을 제거하려 합니다." @@ -2855,7 +2982,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "귀하는 모델 '%s'을 제거할 수 없음!" @@ -2885,6 +3012,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "필드 %s를 검증하는 동안 오류 발생: %s" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2916,7 +3049,7 @@ msgid "Benin" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2946,6 +3079,14 @@ msgstr "" msgid "API ID" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3193,6 +3334,12 @@ msgstr "" msgid "Nicaragua" msgstr "" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "쓰기 메쏘드는 이 오브젝트에 적용되지 않음!" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3471,7 +3618,8 @@ msgid "Bank Type" msgstr "은행 타입" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "그룹 이름은 \"-\"로 시작할 수 없습니다." @@ -3493,7 +3641,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3511,7 +3659,7 @@ msgid "Flow Start" msgstr "흐름 시작" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3543,7 +3691,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3618,6 +3768,11 @@ msgstr "" msgid "Cape Verde" msgstr "" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3631,6 +3786,12 @@ msgstr "이벤트" msgid "ir.actions.url" msgstr "" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3664,9 +3825,10 @@ msgid "French / Français" msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "생성된 메뉴" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "이 생성 메쏘드는 이 오브젝트에 적용되지 않음!" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -3916,6 +4078,14 @@ msgstr "자문" msgid "ir.attachment" msgstr "" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3954,8 +4124,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -3985,12 +4155,9 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "고객" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "" #. module: base #: model:res.country,name:base.lc @@ -4098,6 +4265,18 @@ msgstr "" msgid "Signature" msgstr "서명" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "수행 안됨" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4119,7 +4298,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4160,8 +4339,10 @@ msgid "Contacts" msgstr "연락처" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" msgstr "" #. module: base @@ -4191,6 +4372,12 @@ msgstr "" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4235,15 +4422,9 @@ msgid "Mongolia" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "에러" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "생성된 메뉴" #. module: base #: selection:ir.ui.view,type:0 @@ -4357,11 +4538,6 @@ msgstr "" msgid "Password" msgstr "패스워드" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4461,7 +4637,7 @@ msgid "Change My Preferences" msgstr "내 설정 변경" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4529,7 +4705,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4607,7 +4783,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4682,7 +4864,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "모듈 %s: 유효하지 않은 품질 증명" @@ -4732,6 +4914,11 @@ msgstr "" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4846,6 +5033,14 @@ msgstr "" msgid "Nepal" msgstr "" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4875,14 +5070,14 @@ msgid "Update Modules List" msgstr "갱신된 모듈 리스트" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4901,6 +5096,12 @@ msgstr "계속" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5031,6 +5232,13 @@ msgstr "완전한 국가명" msgid "Iteration" msgstr "" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "사용자에러" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5069,7 +5277,12 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "접근에러" @@ -5080,7 +5293,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5090,6 +5303,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "복사 메쏘드는 이 오브젝트에 적용되지 않습니다." + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5207,7 +5426,7 @@ msgid "ir.actions.todo" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5281,17 +5500,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "get_memory 메쏘드가 실행되지 않음!" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5300,7 +5525,7 @@ msgid "Python Code" msgstr "파이썬 코드" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "모듈 파일을 생성하지 못함: %s !" @@ -5419,7 +5644,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5458,7 +5683,7 @@ msgid "" msgstr "이 액션이 동작 (읽기, 쓰기, 만들기)할 오브젝트를 선택하십시오." #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5670,7 +5895,7 @@ msgid "Afghanistan, Islamic State of" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "에러!" @@ -5691,6 +5916,12 @@ msgstr "인터벌 유닛" msgid "Kind" msgstr "종류" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "이 메쏘드는 더 이상 존재하지 않습니다." + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5946,6 +6177,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5955,11 +6194,6 @@ msgstr "" msgid "Address" msgstr "주소" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6038,7 +6272,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6122,7 +6356,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6143,11 +6377,19 @@ msgid "Child IDs" msgstr "자식 ID" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "서버 액션에서 '레코드 ID' 구성에 문제" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "검증에러" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6194,6 +6436,14 @@ msgstr "이메일" msgid "Home Action" msgstr "홈 액션" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "데이터 합계 (두번 째 필드)에 값이 없습니다." + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6222,10 +6472,9 @@ msgid "Stop All" msgstr "전부 중단" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6276,7 +6525,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6334,7 +6583,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6386,7 +6635,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6467,7 +6716,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6505,6 +6761,12 @@ msgstr "" msgid "Arguments" msgstr "" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6515,16 +6777,31 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" msgstr "" +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "고객" + #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (NI) / Español (NI)" @@ -6628,7 +6905,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6679,6 +6956,15 @@ msgstr "테이블 참조" msgid "Object" msgstr "오브젝트" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6714,7 +7000,7 @@ msgid "User Ref." msgstr "사용자 참조" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6855,7 +7141,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6911,7 +7197,7 @@ msgid "Action Type" msgstr "액션 타입" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7014,11 +7300,23 @@ msgstr "국가 코드" msgid "workflow.instance" msgstr "" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "정의되지 않은 Get 메쏘드!" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7193,6 +7491,11 @@ msgstr "메일 전송" msgid "Menu Action" msgstr "메뉴 액션" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7330,7 +7633,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7528,7 +7831,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7572,6 +7875,14 @@ msgstr "번역 값" msgid "Antigua and Barbuda" msgstr "" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7630,7 +7941,7 @@ msgid "Auto-Refresh" msgstr "자동 Refresh" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7640,6 +7951,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7696,6 +8012,35 @@ msgstr "은행 식별자 코드" msgid "Turkmenistan" msgstr "" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "에러" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7824,7 +8169,7 @@ msgid "Internal Header/Footer" msgstr "내부 헤더/푸터" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7863,6 +8208,14 @@ msgstr "" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7887,7 +8240,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7934,11 +8287,18 @@ msgid "Low" msgstr "낮음" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7947,7 +8307,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8101,7 +8461,7 @@ msgid "View Auto-Load" msgstr "뷰 자동 로드" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8113,6 +8473,11 @@ msgstr "" msgid "Resource" msgstr "리소스" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8124,7 +8489,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8136,6 +8501,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8260,7 +8633,7 @@ msgid "Azerbaijan" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "경고" @@ -8287,9 +8660,9 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "고급 검색" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8587,7 +8960,7 @@ msgid "Account Owner" msgstr "계정 소유자" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8647,7 +9020,7 @@ msgid "Workflow Instances" msgstr "워크플로우 인스턴스" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "파트너: " @@ -8708,16 +9081,16 @@ msgstr "" #~ msgid "%j - Day of the year as a decimal number [001,366]." #~ msgstr "%j - 십진수로 나타낸 1년의 일수 [001,366]." +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "귀하는 이런 종류의 문서를 생성할 수 없습니다 (%s)." + #~ msgid "Outgoing transitions" #~ msgstr "아웃고잉 트랜지션" #~ msgid "Yearly" #~ msgstr "연간" -#, python-format -#~ msgid "The unlink method is not implemented on this object !" -#~ msgstr "링크해제 방법은 이 오브젝트에 적용되지 않습니다." - #~ 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 " @@ -8771,10 +9144,6 @@ msgstr "" #~ msgid "Configure" #~ msgstr "구성" -#, python-format -#~ msgid "The read method is not implemented on this object !" -#~ msgstr "이 읽기 방식은 이 오브젝트에 적용되지 않음!" - #~ msgid "Extended Interface" #~ msgstr "확장된 인터페이스" @@ -8815,12 +9184,6 @@ msgstr "" #~ msgid "You try to bypass an access rule (Document type: %s)." #~ msgstr "접근 규칙을 우회하려 합니다 (문서 타입: %s)" -#, python-format -#~ msgid "" -#~ "The sum of the data (2nd field) is null.\n" -#~ "We can't draw a pie chart !" -#~ msgstr "데이터 합계 (두번 째 필드)에 값이 없습니다." - #~ msgid "Sequence Name" #~ msgstr "시퀀스 이름" @@ -8879,6 +9242,10 @@ msgstr "" #~ msgid "Simple domain setup" #~ msgstr "단순한 도메인 셋업" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "귀하는 이 문서를 볼 수 없습니다 (%s)" + #~ msgid "STOCK_FIND_AND_REPLACE" #~ msgstr "재고_검색_및_대체" @@ -8912,10 +9279,6 @@ msgstr "" #~ msgid "Year without century: %(y)s" #~ msgstr "100단위를 제거한 년도 표시: %(y)s" -#, python-format -#~ msgid "Not implemented set_memory method !" -#~ msgstr "set_memory method를 수행 못함 !" - #~ msgid "" #~ "This wizard will detect new terms in the application so that you can update " #~ "them manually." @@ -8940,16 +9303,16 @@ msgstr "" #~ msgid "Configure User" #~ msgstr "사용자 구성" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "귀하는 이 문서에 쓰기 권한이 없음!(%s)" + #~ msgid "left" #~ msgstr "왼쪽" #~ msgid "STOCK_PRINT_PREVIEW" #~ msgstr "재고_인쇄_미리보기" -#, python-format -#~ msgid "The perm_read method is not implemented on this object !" -#~ msgstr "perm_read 메쏘드는 이 오브젝트에 적용되지 않음!" - #~ msgid "STOCK_MEDIA_PLAY" #~ msgstr "재고_미디어_플레이" @@ -8965,6 +9328,10 @@ msgstr "" #~ msgid "right" #~ msgstr "오른쪽" +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "귀하는 이 문서를 삭제할 수 없습니다! (%s)" + #~ msgid "Others Partners" #~ msgstr "기타 파트너" @@ -9008,17 +9375,9 @@ msgstr "" #~ msgid "Report Footer" #~ msgstr "리포트 푸터" -#, python-format -#~ msgid "Please check that all your lines have %d columns." -#~ msgstr "모든 라인이 %d 칼럼을 가지는 지 체크하십시오." - #~ msgid "Import language" #~ msgstr "언어 가져오기" -#, python-format -#~ msgid "Recursivity Detected." -#~ msgstr "재귀성이 탐지됨." - #~ msgid "Categories of Modules" #~ msgstr "모듈 카테고리" @@ -9073,10 +9432,6 @@ msgstr "" #~ msgid "System Upgrade" #~ msgstr "시스템 갱신" -#, python-format -#~ msgid "The create method is not implemented on this object !" -#~ msgstr "이 생성 메쏘드는 이 오브젝트에 적용되지 않음!" - #~ msgid "Partner Address" #~ msgstr "파트너 주소" @@ -9101,10 +9456,6 @@ msgstr "" #~ msgid "Grant Access To Menus" #~ msgstr "메뉴 접근 권한 부여" -#, python-format -#~ msgid "Error occurred while validating the field(s) %s: %s" -#~ msgstr "필드 %s를 검증하는 동안 오류 발생: %s" - #~ msgid "The rule is satisfied if all test are True (AND)" #~ msgstr "이 규칙은 모든 테스트 결과가 참 (AND)일 때 적용됩니다." @@ -9133,10 +9484,6 @@ msgstr "" #~ msgid "Groups are used to defined access rights on each screen and menu." #~ msgstr "그룹은 각 스크린과 메뉴에 대한 접근 권한을 정의하는데 이용됩니다." -#, python-format -#~ msgid "The write method is not implemented on this object !" -#~ msgstr "쓰기 메쏘드는 이 오브젝트에 적용되지 않음!" - #~ msgid "Sale Opportunity" #~ msgstr "판매 기회" @@ -9244,10 +9591,6 @@ msgstr "" #~ msgid "Calculate Count" #~ msgstr "카운트 계산" -#, python-format -#~ msgid "Not Implemented" -#~ msgstr "수행 안됨" - #~ msgid "Maintenance" #~ msgstr "유지 관리" @@ -9336,17 +9679,9 @@ msgstr "" #~ msgid "Full" #~ msgstr "전부" -#, python-format -#~ msgid "UserError" -#~ msgstr "사용자에러" - #~ msgid "STOCK_MEDIA_RECORD" #~ msgstr "재고_미디어_레코드" -#, python-format -#~ msgid "The copy method is not implemented on this object !" -#~ msgstr "복사 메쏘드는 이 오브젝트에 적용되지 않습니다." - #~ msgid "None" #~ msgstr "없음" @@ -9374,10 +9709,6 @@ msgstr "" #~ msgid "You cannot perform this operation." #~ msgstr "귀하는 이 오퍼레이션을 수행할 수 없습니다." -#, python-format -#~ msgid "Not implemented get_memory method !" -#~ msgstr "get_memory 메쏘드가 실행되지 않음!" - #~ msgid "Customers Partners" #~ msgstr "고객 파트너" @@ -9418,10 +9749,6 @@ msgstr "" #~ msgid "The modules have been upgraded / installed !" #~ msgstr "모듈이 갱신/설치됨 !" -#, python-format -#~ msgid "This method does not exist anymore" -#~ msgstr "이 메쏘드는 더 이상 존재하지 않습니다." - #~ msgid "Manual" #~ msgstr "수동" @@ -9459,10 +9786,6 @@ msgstr "" #~ msgid "STOCK_HOME" #~ msgstr "재고_홈" -#, python-format -#~ msgid "ValidateError" -#~ msgstr "검증에러" - #~ msgid "Resynchronise Terms" #~ msgstr "용어를 다시 동기화" @@ -9538,10 +9861,6 @@ msgstr "" #~ msgid "Status" #~ msgstr "상태" -#, python-format -#~ msgid "undefined get method !" -#~ msgstr "정의되지 않은 Get 메쏘드!" - #~ msgid "Purchase Offer" #~ msgstr "구매 제안" @@ -9670,10 +9989,6 @@ msgstr "" #~ msgid "Add Maintenance Contract" #~ msgstr "유지관리 계약 추가" -#, python-format -#~ msgid "The search method is not implemented on this object !" -#~ msgstr "이 검색 방식은 이 오브젝트에 적용되지 않음!" - #~ msgid "Unsubscribed" #~ msgstr "등록 해지" diff --git a/bin/addons/base/i18n/lt.po b/bin/addons/base/i18n/lt.po index a2f3c58dab0..d093816d819 100644 --- a/bin/addons/base/i18n/lt.po +++ b/bin/addons/base/i18n/lt.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2009-11-30 08:32+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:56+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:17+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +60,6 @@ msgstr "" msgid "View Architecture" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +110,14 @@ msgstr "" msgid "Created Views" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,10 +134,9 @@ msgid "South Korea" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" msgstr "" #. module: base @@ -140,13 +149,20 @@ msgstr "" msgid "Swaziland" msgstr "" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -175,13 +191,13 @@ msgid "Search Partner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "" @@ -212,7 +228,7 @@ msgid "Contact Name" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -234,6 +250,12 @@ msgstr "" msgid "Wizard Name" msgstr "" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -266,7 +288,6 @@ msgstr "" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -317,7 +338,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -339,11 +360,6 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -351,6 +367,12 @@ msgid "" "name, it returns the previous report." msgstr "" +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -377,6 +399,12 @@ msgstr "" msgid "Schedule Upgrade" msgstr "" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -418,7 +446,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -665,6 +693,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -729,6 +763,14 @@ msgstr "" msgid "Type" msgstr "" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -755,6 +797,19 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -859,6 +914,16 @@ msgstr "" msgid "Search" msgstr "" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -914,13 +979,13 @@ msgid "ir.exports" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -951,6 +1016,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -998,7 +1069,7 @@ msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1099,12 +1170,6 @@ msgstr "" 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 #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1144,8 +1209,8 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr "" @@ -1223,7 +1288,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1234,7 +1299,8 @@ msgid "Malawi" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1283,7 +1349,6 @@ msgstr "" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1310,6 +1375,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1361,7 +1432,7 @@ msgid "Bahamas" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1382,6 +1453,12 @@ msgstr "" msgid "Number of modules updated" msgstr "" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1457,6 +1534,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1526,7 +1609,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1611,12 +1694,6 @@ msgstr "" msgid "French (BE) / Français (BE)" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1687,6 +1764,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1697,13 +1780,19 @@ msgstr "" msgid "Slovenia" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1733,6 +1822,14 @@ msgstr "" msgid "New Zealand" msgstr "" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1782,19 +1879,13 @@ msgstr "" msgid "Valid" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "" @@ -1905,6 +1996,15 @@ msgstr "" msgid "HR sector" msgstr "" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1958,6 +2058,11 @@ msgstr "" msgid "Main Company" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2044,8 +2149,9 @@ msgid "Sir" msgstr "" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2144,7 +2250,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2168,6 +2274,12 @@ msgstr "" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2188,7 +2300,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "" @@ -2213,6 +2331,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2265,11 +2388,6 @@ msgstr "" msgid "VAT" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2306,20 +2424,28 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" " %s" msgstr "" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2395,6 +2521,12 @@ msgstr "" msgid "EAN13" msgstr "" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2452,7 +2584,7 @@ msgid "Ecuador" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2518,7 +2650,7 @@ msgid "Action to Trigger" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2713,18 +2845,13 @@ msgstr "" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2770,7 +2897,7 @@ msgid "Rules" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2838,7 +2965,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -2868,6 +2995,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2899,7 +3032,7 @@ msgid "Benin" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2929,6 +3062,14 @@ msgstr "" msgid "API ID" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3174,6 +3315,12 @@ msgstr "" msgid "Nicaragua" msgstr "" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3452,7 +3599,8 @@ msgid "Bank Type" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "" @@ -3474,7 +3622,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3492,7 +3640,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3524,7 +3672,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3599,6 +3749,11 @@ msgstr "" msgid "Cape Verde" msgstr "" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3612,6 +3767,12 @@ msgstr "" msgid "ir.actions.url" msgstr "" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3645,8 +3806,9 @@ msgid "French / Français" msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" msgstr "" #. module: base @@ -3897,6 +4059,14 @@ msgstr "" msgid "ir.attachment" msgstr "" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3935,8 +4105,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -3966,11 +4136,8 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" msgstr "" #. module: base @@ -4079,6 +4246,18 @@ msgstr "" msgid "Signature" msgstr "" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4100,7 +4279,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4141,8 +4320,10 @@ msgid "Contacts" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" msgstr "" #. module: base @@ -4172,6 +4353,12 @@ msgstr "" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4216,14 +4403,8 @@ msgid "Mongolia" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -4338,11 +4519,6 @@ msgstr "" msgid "Password" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4442,7 +4618,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4510,7 +4686,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4588,7 +4764,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4661,7 +4843,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4709,6 +4891,11 @@ msgstr "" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4823,6 +5010,14 @@ msgstr "" msgid "Nepal" msgstr "" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4852,14 +5047,14 @@ msgid "Update Modules List" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4878,6 +5073,12 @@ msgstr "" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5008,6 +5209,13 @@ msgstr "" msgid "Iteration" msgstr "" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5046,7 +5254,12 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "" @@ -5057,7 +5270,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5067,6 +5280,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5184,7 +5403,7 @@ msgid "ir.actions.todo" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5258,17 +5477,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5277,7 +5502,7 @@ msgid "Python Code" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "" @@ -5396,7 +5621,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5435,7 +5660,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5647,7 +5872,7 @@ msgid "Afghanistan, Islamic State of" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "" @@ -5668,6 +5893,12 @@ msgstr "" msgid "Kind" msgstr "" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5923,6 +6154,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5932,11 +6171,6 @@ msgstr "" msgid "Address" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6015,7 +6249,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6099,7 +6333,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6120,11 +6354,19 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6171,6 +6413,14 @@ msgstr "" msgid "Home Action" msgstr "" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6199,10 +6449,9 @@ msgid "Stop All" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6253,7 +6502,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6311,7 +6560,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6363,7 +6612,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6444,7 +6693,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6482,6 +6738,12 @@ msgstr "" msgid "Arguments" msgstr "" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6492,14 +6754,29 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" msgstr "" #. module: base @@ -6605,7 +6882,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6656,6 +6933,15 @@ msgstr "" msgid "Object" msgstr "" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6691,7 +6977,7 @@ msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6832,7 +7118,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6888,7 +7174,7 @@ msgid "Action Type" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -6991,11 +7277,23 @@ msgstr "" msgid "workflow.instance" msgstr "" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7170,6 +7468,11 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7307,7 +7610,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7505,7 +7808,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7549,6 +7852,14 @@ msgstr "" msgid "Antigua and Barbuda" msgstr "" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7607,7 +7918,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7617,6 +7928,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7673,6 +7989,35 @@ msgstr "" msgid "Turkmenistan" msgstr "" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7801,7 +8146,7 @@ msgid "Internal Header/Footer" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7840,6 +8185,14 @@ msgstr "" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7863,7 +8216,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7910,11 +8263,18 @@ msgid "Low" msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7923,7 +8283,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8077,7 +8437,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8089,6 +8449,11 @@ msgstr "" msgid "Resource" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8100,7 +8465,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8112,6 +8477,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8236,7 +8609,7 @@ msgid "Azerbaijan" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "" @@ -8263,8 +8636,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" msgstr "" #. module: base @@ -8563,7 +8936,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8623,7 +8996,7 @@ msgid "Workflow Instances" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "" diff --git a/bin/addons/base/i18n/lv.po b/bin/addons/base/i18n/lv.po index 78f1d05206e..ff995af184f 100644 --- a/bin/addons/base/i18n/lv.po +++ b/bin/addons/base/i18n/lv.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-19 08:19+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:56+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:17+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -41,6 +41,14 @@ msgstr "Cita konfigurācija" msgid "DateTime" msgstr "Datums/Laiks" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -53,12 +61,6 @@ msgstr "Metadati" msgid "View Architecture" msgstr "Skata Arhitektūra" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Jūs nevarat izveidot šā tipa dokumentu! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -109,6 +111,14 @@ msgstr "Rādīt izvēļņu padomus" msgid "Created Views" msgstr "Izveidotie Skatījumi" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -125,11 +135,10 @@ msgid "South Korea" msgstr "Dienvidkoreja (Korejas Republika)" #. 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 "Pārejas" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -141,13 +150,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Svazilenda" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "Meža piegādātāji" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -176,14 +192,14 @@ msgid "Search Partner" msgstr "Meklēt Partneri" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" "\"smtp_server\" jābūt norādītām, lai varētu sūtīt e-pastus lietotājiem" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "Jauns" @@ -214,7 +230,7 @@ msgid "Contact Name" msgstr "Kontakts (Vārds)" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -238,6 +254,12 @@ msgstr "active" msgid "Wizard Name" msgstr "Vedņa Nosaukums" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -270,7 +292,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "Sīkrīks" @@ -321,7 +342,7 @@ msgid "Netherlands Antilles" msgstr "Nīderlandes Antiļu salas" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -345,11 +366,6 @@ msgstr "Grieķu / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "Bosniešu / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "Web ikonas" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -359,6 +375,12 @@ msgstr "" "Iezīmējot šo, atkal drukājot ar tādu pašu pievienotā faila nosaukumu, tiks " "atgriezta iepriekšējā atskaite." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "Lasīšanas funkcija nav ieviesta šim objektam!" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -385,6 +407,12 @@ msgstr "Kolumbija" msgid "Schedule Upgrade" msgstr "Ieplānot Jauninājumus" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -428,7 +456,7 @@ msgid "Miscellaneous Suppliers" msgstr "Dažādi piegādātāji" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Speciālo lauku nosaukumiem jāsākas ar 'x_' !" @@ -676,6 +704,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "Objektam nav ieviesta atsaistes funkcija!" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -740,6 +774,14 @@ msgstr "%B - Pilns mēneša nosaukums." msgid "Type" msgstr "Tips" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -766,6 +808,19 @@ msgstr "Nepareizs Skatījuma uzbūves XML!" msgid "Cayman Islands" msgstr "Kaimanu Salas" +#. 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 "Pārejas" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -874,6 +929,16 @@ msgstr "Haiti" msgid "Search" msgstr "Meklēt" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -929,13 +994,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -969,6 +1034,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "Meklēšanas funkcija nav ieviesta šim objektam!" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1016,7 +1087,7 @@ msgid "On Create" msgstr "Pie Izveides" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1117,12 +1188,6 @@ msgstr "Pievienotais ID" msgid "Day: %(day)s" msgstr "Diena: %(day)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Jums nav šī dokumenta lasīšanas tiesību! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1164,8 +1229,8 @@ msgstr "" "object.list_price > object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (kopija)" @@ -1245,7 +1310,7 @@ msgid "Formula" msgstr "Formula" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "Nevar dzēst root lietotāju!" @@ -1256,7 +1321,8 @@ msgid "Malawi" msgstr "Malāvija" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "%s (kopēt)" @@ -1308,7 +1374,6 @@ msgstr "Koks" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "Atstāt tukšu, ja vēlaties, lai lietotājs spētu pieslēgties sistēmai." @@ -1335,6 +1400,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "search_memory funkcija nav ieviesta!" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1386,7 +1457,7 @@ msgid "Bahamas" msgstr "Bahamas" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1408,6 +1479,12 @@ msgstr "Īrija" msgid "Number of modules updated" msgstr "Jaunināto moduļu skaits" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "set_memory funkcija nav ieviesta!" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1485,6 +1562,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1557,7 +1640,7 @@ msgid "Madagascar" msgstr "Madagaskara" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1647,12 +1730,6 @@ msgstr "Epasta Adrese" msgid "French (BE) / Français (BE)" msgstr "Franču (BE) / Français (BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Jums nav tiesību rakstīt šajā dokumentā! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1723,6 +1800,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "perm_read funkcija nav ieviesta šim objektam!" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1733,13 +1816,19 @@ msgstr "%y - Gads bez gadsimta [00,99]." msgid "Slovenia" msgstr "Slovēnija" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "Ziņojumi" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "Kļūda!" @@ -1769,6 +1858,14 @@ msgstr "Beigu Datums" msgid "New Zealand" msgstr "Jaunzēlande" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1818,19 +1915,13 @@ msgstr "Kļūda! Jums nav tiesību veidot rekursīvus uzņēmumus." msgid "Valid" msgstr "Derīgs" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Jums nav tiesību dzēst šo dokumentu! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "Neizdodas jaunināt moduli '%s'. Tas nav uzinstalēts." @@ -1941,6 +2032,15 @@ msgstr "Signāls (subflow.*)" msgid "HR sector" msgstr "HR Sektors" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1994,6 +2094,11 @@ msgstr "Atkarīgs no" msgid "Main Company" msgstr "Galvenais Uzņēmums" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2084,9 +2189,10 @@ msgid "Sir" msgstr "Kungs" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" -msgstr "Norādiet importam moduļa paku (.zip failu):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" +msgstr "" #. module: base #: field:ir.default,ref_id:0 @@ -2184,7 +2290,7 @@ msgid "Mayotte" msgstr "Majota" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "Lūdzu norādiet darbību, kuru palaist!" @@ -2208,6 +2314,12 @@ msgstr "No Labās uz Kreiso" msgid "Filters" msgstr "Filtri" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "Lūdzu pārbaudiet, lai visām rindām būtu attiecīgas %d kolonnas." + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2228,7 +2340,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "Noskaidrots, ka objekts ir rekursīvs." + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "Rekursijas kļūda atkarīgajos moduļos." @@ -2255,6 +2373,11 @@ msgstr "" "PVN reģistrācijas nr. Atzīmējiet, ka partneris ir ar PVN apliekamā persona. " "Tiek iekļauts PVN atskaitē." +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2307,11 +2430,6 @@ msgstr "EAN pārbaude" msgid "VAT" msgstr "PVN" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2348,7 +2466,7 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2357,13 +2475,21 @@ msgstr "" "Nevar izveidot moduļa datni:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Nauru" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2439,6 +2565,12 @@ msgstr "Sūtīt SMS" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2496,7 +2628,7 @@ msgid "Ecuador" msgstr "Ekvadora" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2568,7 +2700,7 @@ msgid "Action to Trigger" msgstr "Darbība, kas izraisa notikumu" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2767,18 +2899,13 @@ msgstr "Autors" msgid "FYROM" msgstr "FYROM" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Paplašinātā Meklēšana" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Atbilstošais datuma un laika attēlojums." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2824,7 +2951,7 @@ msgid "Rules" msgstr "Noteikumi" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2896,7 +3023,7 @@ msgid "Lesotho" msgstr "Lesoto" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "Jūs nevarat izdzēst modeli '%s' !" @@ -2926,6 +3053,12 @@ msgstr "" msgid "System Configuration Done" msgstr "Sistēmas konfigurācija pabeigta" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "Lauku %s: %s pārbaudes kļūda!" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2957,7 +3090,7 @@ msgid "Benin" msgstr "Benina" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "Šis kontakts jau ir reģistrēts sistēma" @@ -2987,6 +3120,14 @@ msgstr "RML Sākuma Iestarpinājums" msgid "API ID" msgstr "API ID" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3237,6 +3378,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "Nikaragva" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "Rakstīšanas funkcija nav ieviesta šim objektam!" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3517,7 +3664,8 @@ msgid "Bank Type" msgstr "Bankas Tips" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "Grupas nosaukums nedrīkst sākties ar \"-\"" @@ -3539,7 +3687,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3557,7 +3705,7 @@ msgid "Flow Start" msgstr "Plūsmas Sākums" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3589,7 +3737,9 @@ msgid "Guadeloupe (French)" msgstr "Gvadelupa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "Lietotāja kļūda" @@ -3664,6 +3814,11 @@ msgstr "%S - Sekundes [00,61]." msgid "Cape Verde" msgstr "Kaboverde" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "Norādiet importam moduļa paku (.zip failu):" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3677,6 +3832,13 @@ msgstr "Notikumi" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" +"Nepareizs pieprasījuma ieraksta ID, saņemts %r, tika gaidīts skaitlis." + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3710,9 +3872,10 @@ msgid "French / Français" msgstr "Franču / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Izveidotās Izvēlnes" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "Izveides funkcija nav ieviesta šim objektam!" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -3962,6 +4125,14 @@ msgstr "Padoms" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -4002,8 +4173,8 @@ msgid "Project" msgstr "Projekts" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -4033,12 +4204,9 @@ msgid "Serial Key" msgstr "Seriālā atslēga" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Klients" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "" #. module: base #: model:res.country,name:base.lc @@ -4146,6 +4314,18 @@ msgstr "Vjetnama" msgid "Signature" msgstr "Paraksts" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "Nav ieviests" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4167,7 +4347,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4208,9 +4388,11 @@ msgid "Contacts" msgstr "Kontakti" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Fēru Salas" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4239,6 +4421,12 @@ msgstr "Čehija" msgid "Widget Wizard" msgstr "Sīkrīku vednis" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4283,15 +4471,9 @@ msgid "Mongolia" msgstr "Mongolija" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Kļūda" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Izveidotās Izvēlnes" #. module: base #: selection:ir.ui.view,type:0 @@ -4405,11 +4587,6 @@ msgstr "Sentvinsenta un Grenadīnas" msgid "Password" msgstr "Parole" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "Ikonas fails" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4509,7 +4686,7 @@ msgid "Change My Preferences" msgstr "Izmainīt manus Uzstādījumus" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Procesa definīcijā nepareizs modeļa nosaukums." @@ -4577,7 +4754,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4655,7 +4832,13 @@ msgid "Client Actions" msgstr "Klienta darbības" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4730,7 +4913,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Modulim %s ir nederīgs kvalitātes sertifikāts" @@ -4781,6 +4964,11 @@ msgstr "Sūtīt SMS" msgid "Accepted Users" msgstr "Apstiprinātie lietotāji" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4897,6 +5085,14 @@ msgstr "" msgid "Nepal" msgstr "Nepāla" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4926,14 +5122,14 @@ msgid "Update Modules List" msgstr "Jaunināt moduļu sarakstu" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4952,6 +5148,12 @@ msgstr "Turpināt" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5082,6 +5284,13 @@ msgstr "Pilns valsts nosaukums" msgid "Iteration" msgstr "Iterācija" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "Lietotāja Kļūda" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5120,7 +5329,12 @@ msgid "Solomon Islands" msgstr "Zālamana Salas" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "Pieejas Kļūda" @@ -5131,7 +5345,7 @@ msgid "Waiting" msgstr "Gaidu" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "Nevar ielādēt moduli \"base\"" @@ -5141,6 +5355,12 @@ msgstr "Nevar ielādēt moduli \"base\"" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "copy funkcija nav ieviesta šim objektam!" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5258,7 +5478,7 @@ msgid "ir.actions.todo" msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5332,17 +5552,23 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "Modulis %s neeksistē!" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "get_memory funkcija nav ieviesta!" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5351,7 +5577,7 @@ msgid "Python Code" msgstr "Python pirmkods" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "Nevar izveidot moduļa datni: %s!" @@ -5470,7 +5696,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5510,7 +5736,7 @@ msgstr "" "Izvēlēties objektu uz kuru attieksies darbība (lasīt, rakstīt, izveidot)." #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5722,7 +5948,7 @@ msgid "Afghanistan, Islamic State of" msgstr "Afganistāna" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Kļūda!" @@ -5743,6 +5969,12 @@ msgstr "Intervāla Vienība" msgid "Kind" msgstr "Tips" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "Šī funkcija vairs neeksistē" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5999,6 +6231,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -6008,11 +6248,6 @@ msgstr "" msgid "Address" msgstr "Adrese" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6091,7 +6326,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "Sentkitsa un Nevisa" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6177,7 +6412,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6198,11 +6433,19 @@ msgid "Child IDs" msgstr "Child IDs" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problēma konfigurācijā `Record Id` Servera Darbības kontekstā!" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "Validācijas Kļūda" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6249,6 +6492,16 @@ msgstr "E-pasts" msgid "Home Action" msgstr "\"Home\" Darbība" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" +"Otrā lauka datu summa ir nulle.\n" +"Nevar izveidot sektoru diagrammu." + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6277,10 +6530,9 @@ msgid "Stop All" msgstr "Apturēt Visus" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6331,7 +6583,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6389,7 +6641,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6441,7 +6693,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6522,7 +6774,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6560,6 +6819,12 @@ msgstr "Kam" msgid "Arguments" msgstr "Argumenti" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6570,15 +6835,30 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" -msgstr "" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "Lauka \"%s\" vērtība \"%s\" nav atlasījumā." + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Klients" #. module: base #: selection:base.language.install,lang:0 @@ -6683,7 +6963,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6734,6 +7014,15 @@ msgstr "Tabulas Atsauce" msgid "Object" msgstr "Objekts" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6769,7 +7058,7 @@ msgid "User Ref." msgstr "Lietotāja Atsauce" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6910,7 +7199,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6968,7 +7257,7 @@ msgid "Action Type" msgstr "Darbības Tips" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7071,11 +7360,23 @@ msgstr "Valsts Kods" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "nedefinēta get funkcija!" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7252,6 +7553,11 @@ msgstr "Sūtīt e-pastu" msgid "Menu Action" msgstr "Izvēlnes Darbība" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Fēru Salas" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7389,7 +7695,7 @@ msgid "China" msgstr "Ķīna" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7587,7 +7893,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7631,6 +7937,14 @@ msgstr "Tulkojuma Vērtība" msgid "Antigua and Barbuda" msgstr "Antigva un Barbuda" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7689,7 +8003,7 @@ msgid "Auto-Refresh" msgstr "Auto-Jaunināt" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7699,6 +8013,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Volisa un Futuna" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7755,6 +8074,35 @@ msgstr "Bankas identifikācijas kods" msgid "Turkmenistan" msgstr "Turkmenistāna" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Kļūda" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7883,7 +8231,7 @@ msgid "Internal Header/Footer" msgstr "Iekšējie Augšiestarpinājums/Apakšiestarpinājums" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7924,6 +8272,14 @@ msgstr "Dominikāna" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7949,7 +8305,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7996,11 +8352,18 @@ msgid "Low" msgstr "Zems" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -8009,7 +8372,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8163,7 +8526,7 @@ msgid "View Auto-Load" msgstr "Skatīt Auto-Ielādi" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8175,6 +8538,11 @@ msgstr "" msgid "Resource" msgstr "Resurss" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8186,7 +8554,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8198,6 +8566,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8322,7 +8698,7 @@ msgid "Azerbaijan" msgstr "Azerbaidžāna" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Brīdinājums" @@ -8349,9 +8725,9 @@ msgid "Czech / Čeština" msgstr "Čehu / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Volisa un Futuna" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Paplašinātā Meklēšana" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8654,7 +9030,7 @@ msgid "Account Owner" msgstr "Konta Īpašnieks" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8714,7 +9090,7 @@ msgid "Workflow Instances" msgstr "Darbaplūsmas stāvokļi" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Partneri: " @@ -8777,16 +9153,16 @@ msgstr "Krievu / русский язык" #~ msgid "%j - Day of the year as a decimal number [001,366]." #~ msgstr "%j - Gada diena kā decimālskaitlis [001,366]." +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Jūs nevarat izveidot šā tipa dokumentu! (%s)" + #~ msgid "Outgoing transitions" #~ msgstr "Izejas pārveidojumi" #~ msgid "Yearly" #~ msgstr "Ikgadēji" -#, python-format -#~ msgid "The unlink method is not implemented on this object !" -#~ msgstr "Objektam nav ieviesta atsaistes funkcija!" - #~ 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 " @@ -8854,10 +9230,6 @@ msgstr "Krievu / русский язык" #~ msgid "Configure" #~ msgstr "Konfigurēt" -#, python-format -#~ msgid "The read method is not implemented on this object !" -#~ msgstr "Lasīšanas funkcija nav ieviesta šim objektam!" - #~ msgid "STOCK_MEDIA_REWIND" #~ msgstr "STOCK_MEDIA_REWIND" @@ -8913,14 +9285,6 @@ msgstr "Krievu / русский язык" #~ msgid "You try to bypass an access rule (Document type: %s)." #~ msgstr "Mēģinājāt apiet pieejas noteikumus (Dokumenta tips: %s)." -#, python-format -#~ msgid "" -#~ "The sum of the data (2nd field) is null.\n" -#~ "We can't draw a pie chart !" -#~ msgstr "" -#~ "Otrā lauka datu summa ir nulle.\n" -#~ "Nevar izveidot sektoru diagrammu." - #~ msgid "Sequence Name" #~ msgstr "Sērijas Nosaukums" @@ -8994,6 +9358,10 @@ msgstr "Krievu / русский язык" #~ msgid "Simple domain setup" #~ msgstr "Vienkāršā domēna uzstādīšana." +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Jums nav šī dokumenta lasīšanas tiesību! (%s)" + #~ msgid "STOCK_FIND_AND_REPLACE" #~ msgstr "STOCK_FIND_AND_REPLACE" @@ -9030,10 +9398,6 @@ msgstr "Krievu / русский язык" #~ msgid "STOCK_CLEAR" #~ msgstr "STOCK_CLEAR" -#, python-format -#~ msgid "Not implemented search_memory method !" -#~ msgstr "search_memory funkcija nav ieviesta!" - #~ msgid "STOCK_PROPERTIES" #~ msgstr "Copy text \t STOCK_PROPERTIES" @@ -9043,10 +9407,6 @@ msgstr "Krievu / русский язык" #~ msgid "Year without century: %(y)s" #~ msgstr "Gads bez gadsimta: %(y)s" -#, python-format -#~ msgid "Not implemented set_memory method !" -#~ msgstr "set_memory funkcija nav ieviesta!" - #~ msgid "Maintenance contract added !" #~ msgstr "Servisa līgums pievienots!" @@ -9076,16 +9436,16 @@ msgstr "Krievu / русский язык" #~ msgid "Configure User" #~ msgstr "Konfigurēt Lietotāju" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Jums nav tiesību rakstīt šajā dokumentā! (%s)" + #~ msgid "left" #~ msgstr "Pa kreisi" #~ msgid "STOCK_PRINT_PREVIEW" #~ msgstr "STOCK_PRINT_PREVIEW" -#, python-format -#~ msgid "The perm_read method is not implemented on this object !" -#~ msgstr "perm_read funkcija nav ieviesta šim objektam!" - #~ msgid "STOCK_MEDIA_PLAY" #~ msgstr "STOCK_MEDIA_PLAY" @@ -9101,6 +9461,10 @@ msgstr "Krievu / русский язык" #~ msgid "right" #~ msgstr "Pa labi" +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Jums nav tiesību dzēst šo dokumentu! (%s)" + #~ msgid "Others Partners" #~ msgstr "Citi Partneri" @@ -9156,17 +9520,9 @@ msgstr "Krievu / русский язык" #~ msgid "Report Footer" #~ msgstr "Iestarpinājums atskaites beigās." -#, python-format -#~ msgid "Please check that all your lines have %d columns." -#~ msgstr "Lūdzu pārbaudiet, lai visām rindām būtu attiecīgas %d kolonnas." - #~ msgid "Import language" #~ msgstr "Importēt valodu" -#, python-format -#~ msgid "Recursivity Detected." -#~ msgstr "Noskaidrots, ka objekts ir rekursīvs." - #~ msgid "terp-account" #~ msgstr "terp-account" @@ -9230,10 +9586,6 @@ msgstr "Krievu / русский язык" #~ msgid "System Upgrade" #~ msgstr "Sistēmas jauninājums" -#, python-format -#~ msgid "The create method is not implemented on this object !" -#~ msgstr "Izveides funkcija nav ieviesta šim objektam!" - #~ msgid "Partner Address" #~ msgstr "Partnera Adrese" @@ -9282,10 +9634,6 @@ msgstr "Krievu / русский язык" #~ "izmantotie lauki un iespējas automātiski tiek noslēptas. Tās iespējams vēlāk " #~ "ieslēgt caur Administrācijas izvēlni." -#, python-format -#~ msgid "Error occurred while validating the field(s) %s: %s" -#~ msgstr "Lauku %s: %s pārbaudes kļūda!" - #~ msgid "The rule is satisfied if all test are True (AND)" #~ msgstr "Noteikums ir pieņemts, ja visas pārbaudes atgriež True (AND)" @@ -9322,10 +9670,6 @@ msgstr "Krievu / русский язык" #~ "Grupas tiek izmantotas, lai definētu pieejas tiesības skatījumiem un " #~ "izvēlnēm." -#, python-format -#~ msgid "The write method is not implemented on this object !" -#~ msgstr "Rakstīšanas funkcija nav ieviesta šim objektam!" - #~ msgid "Sale Opportunity" #~ msgstr "Pārdošanas iespējamība" @@ -9391,11 +9735,6 @@ msgstr "Krievu / русский язык" #~ msgid "STOCK_MEDIA_STOP" #~ msgstr "STOCK_MEDIA_STOP" -#, python-format -#~ msgid "Wrong ID for the browse record, got %r, expected an integer." -#~ msgstr "" -#~ "Nepareizs pieprasījuma ieraksta ID, saņemts %r, tika gaidīts skaitlis." - #~ msgid "STOCK_DND_MULTIPLE" #~ msgstr "STOCK_DND_MULTIPLE" @@ -9473,10 +9812,6 @@ msgstr "Krievu / русский язык" #~ msgid "Calculate Count" #~ msgstr "Aprēķināt Skaitu" -#, python-format -#~ msgid "Not Implemented" -#~ msgstr "Nav ieviests" - #~ msgid "Maintenance" #~ msgstr "Apkalpošana" @@ -9597,17 +9932,9 @@ msgstr "Krievu / русский язык" #~ msgid "terp-stock" #~ msgstr "terp-stock" -#, python-format -#~ msgid "UserError" -#~ msgstr "Lietotāja Kļūda" - #~ msgid "STOCK_MEDIA_RECORD" #~ msgstr "STOCK_MEDIA_RECORD" -#, python-format -#~ msgid "The copy method is not implemented on this object !" -#~ msgstr "copy funkcija nav ieviesta šim objektam!" - #~ msgid "None" #~ msgstr "Nekas" @@ -9643,10 +9970,6 @@ msgstr "Krievu / русский язык" #~ msgid "You cannot perform this operation." #~ msgstr "Nevar veikt šo operāciju." -#, python-format -#~ msgid "Not implemented get_memory method !" -#~ msgstr "get_memory funkcija nav ieviesta!" - #~ msgid "Customers Partners" #~ msgstr "Klienti" @@ -9708,10 +10031,6 @@ msgstr "Krievu / русский язык" #~ msgid "terp-hr" #~ msgstr "terp-hr" -#, python-format -#~ msgid "This method does not exist anymore" -#~ msgstr "Šī funkcija vairs neeksistē" - #~ msgid "Manual" #~ msgstr "Manuāli" @@ -9776,10 +10095,6 @@ msgstr "Krievu / русский язык" #~ msgid "Ok" #~ msgstr "Labi" -#, python-format -#~ msgid "ValidateError" -#~ msgstr "Validācijas Kļūda" - #~ msgid "STOCK_DISCONNECT" #~ msgstr "STOCK_DISCONNECT" @@ -9827,10 +10142,6 @@ msgstr "Krievu / русский язык" #~ msgid "sxw" #~ msgstr "sxw" -#, python-format -#~ msgid "The value \"%s\" for the field \"%s\" is not in the selection" -#~ msgstr "Lauka \"%s\" vērtība \"%s\" nav atlasījumā." - #~ msgid "Automatic XSL:RML" #~ msgstr "Automātiski XSL:RML" @@ -9914,10 +10225,6 @@ msgstr "Krievu / русский язык" #~ msgid "Status" #~ msgstr "Stāvoklis" -#, python-format -#~ msgid "undefined get method !" -#~ msgstr "nedefinēta get funkcija!" - #~ msgid "ir.report.custom" #~ msgstr "ir.report.custom" @@ -10139,10 +10446,6 @@ msgstr "Krievu / русский язык" #~ msgid "Add Maintenance Contract" #~ msgstr "Pievienot Apkalpošanas Līgumu" -#, python-format -#~ msgid "The search method is not implemented on this object !" -#~ msgstr "Meklēšanas funkcija nav ieviesta šim objektam!" - #~ msgid "Unsubscribed" #~ msgstr "Atrakstījies" @@ -10246,6 +10549,9 @@ msgstr "Krievu / русский язык" #~ "diena).Visas jauna gada dienas, kas iekrīt pirms pirmās pirmdienas tiek " #~ "ieskaitītas 0 nedēļā." +#~ msgid "Web Icons" +#~ msgstr "Web ikonas" + #~ msgid "Mister" #~ msgstr "Kungs" @@ -10257,3 +10563,6 @@ msgstr "Krievu / русский язык" #~ msgid "Limited Company" #~ msgstr "Ierobežots uzņēmums" + +#~ msgid "Icon File" +#~ msgstr "Ikonas fails" diff --git a/bin/addons/base/i18n/mn.po b/bin/addons/base/i18n/mn.po index ecf243e42eb..2b31672c376 100644 --- a/bin/addons/base/i18n/mn.po +++ b/bin/addons/base/i18n/mn.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 6.0.0-rc1\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-16 08:03+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:56+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:18+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,14 @@ msgstr "Other Configuration" msgid "DateTime" msgstr "Огноо Цаг" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +60,6 @@ msgstr "Толгой өгөгдөл" msgid "View Architecture" msgstr "Дэлгэцийн архитектур" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Та (%s) төрлийн баримтыг үүсгэж чадахгүй!" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +110,14 @@ msgstr "Дэлгэцийн цэсний тайлбар" msgid "Created Views" msgstr "Үүссэн" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,11 +134,10 @@ msgid "South Korea" msgstr "Өмнөд Солонгос" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "Шилжилтүүд" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "Хориг, хязгаарлалтын Алдаа" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -140,13 +149,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Швецарь" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "Мод нийлүүлэгч" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -178,13 +194,13 @@ msgid "Search Partner" msgstr "Харилцагч хайх" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "\"smtp_server\" needs to be set to send mails to users" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "шинэ" @@ -215,7 +231,7 @@ msgid "Contact Name" msgstr "Харьцах хүн" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -239,6 +255,12 @@ msgstr "идэвхитэй" msgid "Wizard Name" msgstr "Визардын нэр" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -271,7 +293,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "Виджет" @@ -322,7 +343,7 @@ msgid "Netherlands Antilles" msgstr "Нидерландын Антилын арлууд" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -346,11 +367,6 @@ msgstr "Грек / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "Босни хэл / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "Веб icon" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -360,6 +376,12 @@ msgstr "" "Хэрэв та үүнийг сонговол дараагийн удаа ижил нэртэй баримт хэвлэхэд өмнө нь " "хэвлэж байсан баримт хэвлэгдэнэ." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -386,6 +408,12 @@ msgstr "Колумб" msgid "Schedule Upgrade" msgstr "Шинэчлэл төлөвлөлт" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -430,7 +458,7 @@ msgid "Miscellaneous Suppliers" msgstr "Бусад нийлүүлэгчид" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Нэмэлт талбарын нэр нь 'x_' -аар эхэлсэн байх ёстой !" @@ -685,6 +713,12 @@ msgstr "" "Уг хэрэглэгчийн интерфэйсийн хэлийг тохируулна, харагдах интерфэйсын " "орчуулга идэвхижсэн үед" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -749,6 +783,14 @@ msgstr "%B - Сарын бүтэн нэр." msgid "Type" msgstr "Төрөл" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -775,6 +817,19 @@ msgstr "Дэлгэцийн XML алдаатай!" msgid "Cayman Islands" msgstr "Кайманы арлууд" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "Шилжилтүүд" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -886,6 +941,20 @@ msgstr "Гаити" msgid "Search" msgstr "Хайх" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" +"Үйлдлийг гүйцэтгэх боломжгүй, дараах шалтгаантай байж болзошгүй:\n" +"- устгах: ондоо бичлгэгүүдэд заагдаж хэрэглэгдэж байгаа бичлэгийг устгах гэж " +"байгаа\n" +"- үүсгэх/засах: заавал утгатай байх талбарт утга байхгүй" + #. module: base #: view:ir.rule:0 msgid "" @@ -942,13 +1011,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "Кодгүй хэл \"%s\" байна" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -982,6 +1051,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1031,7 +1106,7 @@ msgid "On Create" msgstr "Үүсгэх үед" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1150,12 +1225,6 @@ msgstr "Хавсрагасан ID" msgid "Day: %(day)s" msgstr "Өдөр: %(day)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Та энэ баримтыг унших эрхгүй! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1201,8 +1270,8 @@ msgstr "" "Үйлдэл хийхийн өмнө шалгах нөхцөл, ө.х object.list_price > object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (Хуулах)" @@ -1282,7 +1351,7 @@ msgid "Formula" msgstr "Томьёолол" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "Супер хэрэглэгчийг устгах боломжгүй!" @@ -1293,7 +1362,8 @@ msgid "Malawi" msgstr "Малави" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "%s (copy)" @@ -1345,7 +1415,6 @@ msgstr "Мод" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "Уг хэрэглэгчийг системд нэвтрүүлэхгүй байх бол хоосон орхионо уу." @@ -1372,6 +1441,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1423,7 +1498,7 @@ msgid "Bahamas" msgstr "Багамийн арлууд" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1446,6 +1521,12 @@ msgstr "Ирланд" msgid "Number of modules updated" msgstr "Шинэчлэгдсэн модулийн тоо" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1525,6 +1606,12 @@ msgstr "" "Зөвшөөрөгдсөн харагдах хэлбэрүүдийг таслалаар тусгаарлан тодорхойлно. " "(Жишээлбэл: tree,form)" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1597,7 +1684,7 @@ msgid "Madagascar" msgstr "Мадагаскар" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1686,12 +1773,6 @@ msgstr "Э-мэйл хаяг" msgid "French (BE) / Français (BE)" msgstr "Франц хэл (BE) / Français (BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Та энэ баримтыг засварлах эрхгүй! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1762,6 +1843,12 @@ msgid "" "e.g. 'res.partener'" msgstr "Энэ үйлдэл ажиллахад дуудагдах функцын обьект нэр. Жш: 'res.partner'" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1772,13 +1859,19 @@ msgstr "" msgid "Slovenia" msgstr "Словени" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "Зурвас" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "Алдаа!" @@ -1808,6 +1901,14 @@ msgstr "Дуусах огноо" msgid "New Zealand" msgstr "Шинэ зеланд" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1857,19 +1958,13 @@ msgstr "Алдаа! Рекурсив компани үүсгэж болохгү msgid "Valid" msgstr "Хүчинтэй" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Та энэ баримтыг устгах эрхгүй! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "" @@ -1981,6 +2076,15 @@ msgstr "Сигнал (дэд урсгал.*)" msgid "HR sector" msgstr "ХН хэлтэс" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -2034,6 +2138,11 @@ msgstr "Уялдаа холбоо" msgid "Main Company" msgstr "Үндсэн Компани" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2122,9 +2231,10 @@ msgid "Sir" msgstr "Ноён" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" -msgstr "Импортлох модулиа сонго (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" +msgstr "" #. module: base #: field:ir.default,ref_id:0 @@ -2222,7 +2332,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "Эхлүүлэх үйлдлийг заана уу!" @@ -2246,6 +2356,12 @@ msgstr "Баруунаас зүүн" msgid "Filters" msgstr "Шүүлтүүр" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2266,7 +2382,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "Модулиудын хамааралд рекурсын алдаа байна !" @@ -2291,6 +2413,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "НӨАТ дугаар. Хэрэв харилцагч НӨАТ төлөгч бол чагтлана." +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2343,11 +2470,6 @@ msgstr "Зур.код чеклэх" msgid "VAT" msgstr "НӨАТ" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "Вэб лого" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2384,7 +2506,7 @@ msgid "M." msgstr "M." #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2393,13 +2515,21 @@ msgstr "" "Модуль файлыг үүсгэж чадахгүй:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Науру" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "Модулийн сертификат ID давхцах ёсгүй !" @@ -2475,6 +2605,12 @@ msgstr "SMS илгээх" msgid "EAN13" msgstr "Зур.код" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2532,7 +2668,7 @@ msgid "Ecuador" msgstr "Эквадор" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2603,7 +2739,7 @@ msgid "Action to Trigger" msgstr "Гол үйлдэл" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2800,18 +2936,13 @@ msgstr "Зохиогч" msgid "FYROM" msgstr "FYROM" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Дэлгэрэнгүй хайлт" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Тохиромжтой огнооны дүрслэл." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2857,7 +2988,7 @@ msgid "Rules" msgstr "Дүрэм" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "Суулгасан эсвэл суулгах модулиудыг хасаад үзэх хэрэгтэй." @@ -2927,7 +3058,7 @@ msgid "Lesotho" msgstr "Лесото" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "Та '%s' моделийг устгах боломжгүй !" @@ -2957,6 +3088,12 @@ msgstr "Abkhazian / аҧсуа" msgid "System Configuration Done" msgstr "Системийн тохиргоо хийгдсэн" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2988,7 +3125,7 @@ msgid "Benin" msgstr "Бенин" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -3018,6 +3155,14 @@ msgstr "RML толгой" msgid "API ID" msgstr "API ID" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3264,6 +3409,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "Никрагуа" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3544,7 +3695,8 @@ msgid "Bank Type" msgstr "Банкны төрөл" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "Группын нэр \"-\" тэмдэгтээр эхэлж болохгүй" @@ -3566,7 +3718,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "Gujarati / ગુજરાતી" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3584,7 +3736,7 @@ msgid "Flow Start" msgstr "Урсгалын эхлэл" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3616,7 +3768,9 @@ msgid "Guadeloupe (French)" msgstr "Гуаделоп (Франц)" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "Хэрэглэгчийн алдаа" @@ -3691,6 +3845,11 @@ msgstr "" msgid "Cape Verde" msgstr "Кэйп Вэрде" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "Импортлох модулиа сонго (.zip file):" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3704,6 +3863,12 @@ msgstr "Үйл явдал" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3737,9 +3902,10 @@ msgid "French / Français" msgstr "Франц хэл / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Үүссэн цэсүүд" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -3989,6 +4155,14 @@ msgstr "Заавар" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -4029,8 +4203,8 @@ msgid "Project" msgstr "Төсөл" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -4060,12 +4234,9 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Үйлчлүүлэгч" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "Аудит" #. module: base #: model:res.country,name:base.lc @@ -4173,6 +4344,18 @@ msgstr "Вьетнам" msgid "Signature" msgstr "Гарын үсэг" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4194,7 +4377,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "Модулийн нэр давхцах ёсгүй !" @@ -4235,9 +4418,11 @@ msgid "Contacts" msgstr "Харьцах хүмүүс" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Фарерын арлууд" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4266,6 +4451,12 @@ msgstr "Чех" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4310,15 +4501,9 @@ msgid "Mongolia" msgstr "Монгол" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Алдаа" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Үүссэн цэсүүд" #. module: base #: selection:ir.ui.view,type:0 @@ -4432,11 +4617,6 @@ msgstr "" msgid "Password" msgstr "Нууц үг" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4536,7 +4716,7 @@ msgid "Change My Preferences" msgstr "Өөрийн тохиргоог өөрчлөх" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Үйлдлийн тодорхойлолтод буруу моделийн нэр байна." @@ -4604,7 +4784,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4685,7 +4865,13 @@ msgid "Client Actions" msgstr "Клиеитийн үйлдэл" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4760,7 +4946,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "%s модуль: Буруу чанарын сертификат" @@ -4810,6 +4996,11 @@ msgstr "SMS Илгээх" msgid "Accepted Users" msgstr "Зөвшөөрөгдсөн хэрэглэгчид" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4924,6 +5115,14 @@ msgstr "" msgid "Nepal" msgstr "Непал" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4956,14 +5155,14 @@ msgid "Update Modules List" msgstr "Модулийн жагсаалтыг шинэчлэх" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4982,6 +5181,12 @@ msgstr "Үргэлжлүүлэх" msgid "Thai / ภาษาไทย" msgstr "Тай хэл / ภาษาไทย" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5112,6 +5317,13 @@ msgstr "Улсын бүтэн нэр." msgid "Iteration" msgstr "Давталт" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5150,7 +5362,12 @@ msgid "Solomon Islands" msgstr "Соломоны арлууд" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "ХандалтынАлдаа" @@ -5161,7 +5378,7 @@ msgid "Waiting" msgstr "Хүлээх" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5171,6 +5388,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5288,7 +5511,7 @@ msgid "ir.actions.todo" msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5362,17 +5585,23 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "Хэрэглэгчийн Эрхэм хэлийг устгаж болохгүй !" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5381,7 +5610,7 @@ msgid "Python Code" msgstr "Python код" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "Модулийн файлыг үүсгэж чадахгүй: %s !" @@ -5500,7 +5729,7 @@ msgid "" msgstr "Дэлгэцийн төрөл: 'мод', 'форм' болон бусад харагдац." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5541,7 +5770,7 @@ msgid "" msgstr "Үйлдэл (унших, бичих, үүсгэх) хийгдэх объектыг сонгох" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5753,7 +5982,7 @@ msgid "Afghanistan, Islamic State of" msgstr "Афганистан, Исламын муж" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Алдаа !" @@ -5774,6 +6003,12 @@ msgstr "Интервал нэгж" msgid "Kind" msgstr "Төрөл" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -6033,6 +6268,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "Энэ линк нь албан ёсны орчуулга ачааллахыг эхлүүлнэ:" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -6042,11 +6285,6 @@ msgstr "Энэ линк нь албан ёсны орчуулга ачаалла msgid "Address" msgstr "Хаяг" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6125,7 +6363,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "Saint Kitts & Nevis Anguilla" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6209,7 +6447,7 @@ msgid "Samoa" msgstr "Самоа" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6232,11 +6470,19 @@ msgid "Child IDs" msgstr "Дэд IDs" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Серверийн үйлдэлд `Record Id` тохиргооны асуудал байна!" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6283,6 +6529,14 @@ msgstr "Имэйл" msgid "Home Action" msgstr "Үндсэн Үйлдэл" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6311,10 +6565,9 @@ msgid "Stop All" msgstr "Бүгдийг зогсоох" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6366,7 +6619,7 @@ msgid "Start update" msgstr "Шинэчлэлт эхлүүлэх" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6425,7 +6678,7 @@ msgid "HR Manager Dashboard" msgstr "Хүний нөөцийн менежерийн хянах самбар" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6477,7 +6730,7 @@ msgid "Module Update" msgstr "Модул шинэчлэлт" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6558,7 +6811,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "Шинэ хэрэглэгчийн жинхэнэ нэр, хайлт болон бусад зүйлд хэрэглэгдэнэ" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "Нэгдмэл уялдааны Алдаа" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "Талбарын хэмжээ 1-с бага байж болохгүй !" @@ -6596,6 +6856,12 @@ msgstr "Хүртэл" msgid "Arguments" msgstr "Аргумент" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6606,15 +6872,30 @@ msgstr "GPL Хувилбар 2" msgid "GPL Version 3" msgstr "GPL Хувилбар 3" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "Зөв зур.код" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" -msgstr "Аудит" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Үйлчлүүлэгч" #. module: base #: selection:base.language.install,lang:0 @@ -6719,7 +7000,7 @@ msgid "Copy Object" msgstr "Хувилах Обьект" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6770,6 +7051,18 @@ msgstr "Хүснэгт дугаар." msgid "Object" msgstr "Объект" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" +"\n" +"\n" +"[обьектийн сурвалж: %s - %s]" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6805,7 +7098,7 @@ msgid "User Ref." msgstr "Хэрэглэгч дугаар." #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "Сануулга !" @@ -6946,7 +7239,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7002,7 +7295,7 @@ msgid "Action Type" msgstr "Үйлдлийн төрөл" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7105,11 +7398,23 @@ msgstr "Улсын код" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7284,6 +7589,11 @@ msgstr "Э-мэйл илгээх" msgid "Menu Action" msgstr "Цэсний үйлдэл" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Фарерын арлууд" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7421,7 +7731,7 @@ msgid "China" msgstr "Хятад" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7621,7 +7931,7 @@ msgid "Account No." msgstr "Дансны дугаар." #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Үндсэн хэл 'en_US'-ийг устгаж болохгүй !" @@ -7665,6 +7975,14 @@ msgstr "Орчуулгын утга" msgid "Antigua and Barbuda" msgstr "Antigua and Barbuda" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7723,7 +8041,7 @@ msgid "Auto-Refresh" msgstr "Автомат-Шинэчлэл" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7733,6 +8051,11 @@ msgstr "" msgid "Diagram" msgstr "Диаграм" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis and Futuna Islands" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7789,6 +8112,35 @@ msgstr "" msgid "Turkmenistan" msgstr "Туркменстан" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Алдаа" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7917,7 +8269,7 @@ msgid "Internal Header/Footer" msgstr "Дотоод Толгой/Хөл" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7958,6 +8310,14 @@ msgstr "Доминик ард улс" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7983,7 +8343,7 @@ msgid "Event Logs" msgstr "Үйл явдлын түүх" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "Системийн тохиргоо дууссан" @@ -8030,11 +8390,18 @@ msgid "Low" msgstr "Бага" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Алдаа! Та рекурсив цэс үүсгэж болохгүй." +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -8043,7 +8410,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8197,7 +8564,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Энэ талбрыг та устгаж болохгүй '%s' !" @@ -8209,6 +8576,11 @@ msgstr "Энэ талбрыг та устгаж болохгүй '%s' !" msgid "Resource" msgstr "Нөөц" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8220,7 +8592,7 @@ msgid "View Ordering" msgstr "Дэлгэц эрэмблэлт" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8232,6 +8604,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8356,7 +8736,7 @@ msgid "Azerbaijan" msgstr "Азербайжан" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Сануулга" @@ -8383,9 +8763,9 @@ msgid "Czech / Čeština" msgstr "Чех / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis and Futuna Islands" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Дэлгэрэнгүй хайлт" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8683,7 +9063,7 @@ msgid "Account Owner" msgstr "Данс эзэмшигч" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8743,7 +9123,7 @@ msgid "Workflow Instances" msgstr "Ажлын урсгалын тохиолдол" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Харилцагчид: " @@ -8819,6 +9199,10 @@ msgstr "Орос хэл / русский язык" #~ msgid "%j - Day of the year as a decimal number [001,366]." #~ msgstr "%j - Жилийн өдрийн тоон дугаар [001,366]" +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Та (%s) төрлийн баримтыг үүсгэж чадахгүй!" + #~ msgid "To browse official translations, you can visit this link: " #~ msgstr "Албан ёсны орчуулгыг ачаалах бол уг линк-д зочилно уу: " @@ -8940,6 +9324,10 @@ msgstr "Орос хэл / русский язык" #~ "'%s'.\n" #~ "Гэвч тэр модуль нь таны системээс олдохгүй байна." +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Та энэ баримтыг унших эрхгүй! (%s)" + #~ msgid "Fixed Width" #~ msgstr "Тогтмол өргөн" @@ -8978,6 +9366,10 @@ msgstr "Орос хэл / русский язык" #~ msgid "Configure User" #~ msgstr "Хэрэглэгч тохируулах" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Та энэ баримтыг засварлах эрхгүй! (%s)" + #~ msgid "My Closed Requests" #~ msgstr "Миний хаагдсан хүсэлтүүд" @@ -8993,6 +9385,10 @@ msgstr "Орос хэл / русский язык" #~ msgid "right" #~ msgstr "баруун" +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Та энэ баримтыг устгах эрхгүй! (%s)" + #~ msgid "Daily" #~ msgstr "Өдөр тутмын" @@ -10051,42 +10447,12 @@ msgstr "Орос хэл / русский язык" #~ msgid "Using a relation field which uses an unknown object" #~ msgstr "Мэдэгдэхгүй обьектийг хэрэглэдэг харьцааны талбарыг хэрэглэж" -#, python-format -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "[object with reference: %s - %s]" -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "[обьектийн сурвалж: %s - %s]" - -#, python-format -#~ msgid "Integrity Error" -#~ msgstr "Нэгдмэл уялдааны Алдаа" - -#, python-format -#~ msgid "" -#~ "The operation cannot be completed, probably due to the following:\n" -#~ "- deletion: you may be trying to delete a record while other records still " -#~ "reference it\n" -#~ "- creation/update: a mandatory field is not correctly set" -#~ msgstr "" -#~ "Үйлдлийг гүйцэтгэх боломжгүй, дараах шалтгаантай байж болзошгүй:\n" -#~ "- устгах: ондоо бичлгэгүүдэд заагдаж хэрэглэгдэж байгаа бичлэгийг устгах гэж " -#~ "байгаа\n" -#~ "- үүсгэх/засах: заавал утгатай байх талбарт утга байхгүй" - #~ msgid "The name of the Partner must be unique !" #~ msgstr "Түншийн нэр үл давхцах байх ёстой !" #~ msgid "The Code of the Partner Function must be unique !" #~ msgstr "Түншлэлийн Функцийн Код үл давхцах байх ёстой !" -#, python-format -#~ msgid "Constraint Error" -#~ msgstr "Хориг, хязгаарлалтын Алдаа" - #~ msgid "Sequence Code" #~ msgstr "Дарааллын Код" @@ -10402,5 +10768,11 @@ msgstr "Орос хэл / русский язык" #~ msgid "Mss." #~ msgstr "Хттай" +#~ msgid "Web Icons Hover" +#~ msgstr "Вэб лого" + #~ msgid "Limited Company" #~ msgstr "Хязгаарлагдмал компани" + +#~ msgid "Web Icons" +#~ msgstr "Веб icon" diff --git a/bin/addons/base/i18n/nb.po b/bin/addons/base/i18n/nb.po index 685c6d940ff..1b886cbef01 100644 --- a/bin/addons/base/i18n/nb.po +++ b/bin/addons/base/i18n/nb.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-03-11 05:06+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Norwegian Bokmal \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:56+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:18+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -41,6 +41,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -53,12 +61,6 @@ msgstr "Metadata" msgid "View Architecture" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -109,6 +111,14 @@ msgstr "" msgid "Created Views" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -125,11 +135,10 @@ msgid "South Korea" msgstr "Sør-Korea" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "Overganger" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -141,13 +150,20 @@ msgstr "" msgid "Swaziland" msgstr "Swaziland" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -176,13 +192,13 @@ msgid "Search Partner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "" @@ -213,7 +229,7 @@ msgid "Contact Name" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -235,6 +251,12 @@ msgstr "" msgid "Wizard Name" msgstr "" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -267,7 +289,6 @@ msgstr "" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -318,7 +339,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -340,11 +361,6 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -352,6 +368,12 @@ msgid "" "name, it returns the previous report." msgstr "" +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -378,6 +400,12 @@ msgstr "" msgid "Schedule Upgrade" msgstr "" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -419,7 +447,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -666,6 +694,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -730,6 +764,14 @@ msgstr "" msgid "Type" msgstr "" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -756,6 +798,19 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "Overganger" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -860,6 +915,16 @@ msgstr "" msgid "Search" msgstr "" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -915,13 +980,13 @@ msgid "ir.exports" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -952,6 +1017,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -999,7 +1070,7 @@ msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1100,12 +1171,6 @@ msgstr "" 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 #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1145,8 +1210,8 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr "" @@ -1224,7 +1289,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1235,7 +1300,8 @@ msgid "Malawi" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1284,7 +1350,6 @@ msgstr "" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1311,6 +1376,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1362,7 +1433,7 @@ msgid "Bahamas" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1383,6 +1454,12 @@ msgstr "" msgid "Number of modules updated" msgstr "" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1458,6 +1535,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1527,7 +1610,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1612,12 +1695,6 @@ msgstr "" msgid "French (BE) / Français (BE)" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1688,6 +1765,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1698,13 +1781,19 @@ msgstr "" msgid "Slovenia" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1734,6 +1823,14 @@ msgstr "" msgid "New Zealand" msgstr "" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1783,19 +1880,13 @@ msgstr "" msgid "Valid" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "" @@ -1906,6 +1997,15 @@ msgstr "" msgid "HR sector" msgstr "" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1959,6 +2059,11 @@ msgstr "" msgid "Main Company" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2045,8 +2150,9 @@ msgid "Sir" msgstr "" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2145,7 +2251,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2169,6 +2275,12 @@ msgstr "" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2189,7 +2301,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "" @@ -2214,6 +2332,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2266,11 +2389,6 @@ msgstr "" msgid "VAT" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2307,20 +2425,28 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" " %s" msgstr "" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2396,6 +2522,12 @@ msgstr "" msgid "EAN13" msgstr "" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2453,7 +2585,7 @@ msgid "Ecuador" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2519,7 +2651,7 @@ msgid "Action to Trigger" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2714,18 +2846,13 @@ msgstr "" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2771,7 +2898,7 @@ msgid "Rules" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2839,7 +2966,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -2869,6 +2996,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2900,7 +3033,7 @@ msgid "Benin" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2930,6 +3063,14 @@ msgstr "" msgid "API ID" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3175,6 +3316,12 @@ msgstr "" msgid "Nicaragua" msgstr "" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3453,7 +3600,8 @@ msgid "Bank Type" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "" @@ -3475,7 +3623,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3493,7 +3641,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3525,7 +3673,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3600,6 +3750,11 @@ msgstr "" msgid "Cape Verde" msgstr "" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3613,6 +3768,12 @@ msgstr "" msgid "ir.actions.url" msgstr "" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3646,8 +3807,9 @@ msgid "French / Français" msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" msgstr "" #. module: base @@ -3898,6 +4060,14 @@ msgstr "" msgid "ir.attachment" msgstr "" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3936,8 +4106,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -3967,11 +4137,8 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" msgstr "" #. module: base @@ -4080,6 +4247,18 @@ msgstr "" msgid "Signature" msgstr "" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4101,7 +4280,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4142,8 +4321,10 @@ msgid "Contacts" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" msgstr "" #. module: base @@ -4173,6 +4354,12 @@ msgstr "" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4217,14 +4404,8 @@ msgid "Mongolia" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -4339,11 +4520,6 @@ msgstr "" msgid "Password" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4443,7 +4619,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4511,7 +4687,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4589,7 +4765,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4662,7 +4844,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4710,6 +4892,11 @@ msgstr "" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4824,6 +5011,14 @@ msgstr "" msgid "Nepal" msgstr "" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4853,14 +5048,14 @@ msgid "Update Modules List" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4879,6 +5074,12 @@ msgstr "" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5009,6 +5210,13 @@ msgstr "" msgid "Iteration" msgstr "" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5047,7 +5255,12 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "" @@ -5058,7 +5271,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5068,6 +5281,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5185,7 +5404,7 @@ msgid "ir.actions.todo" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5259,17 +5478,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5278,7 +5503,7 @@ msgid "Python Code" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "" @@ -5397,7 +5622,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5436,7 +5661,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5648,7 +5873,7 @@ msgid "Afghanistan, Islamic State of" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "" @@ -5669,6 +5894,12 @@ msgstr "" msgid "Kind" msgstr "" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5924,6 +6155,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5933,11 +6172,6 @@ msgstr "" msgid "Address" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6016,7 +6250,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6100,7 +6334,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6121,11 +6355,19 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6172,6 +6414,14 @@ msgstr "" msgid "Home Action" msgstr "" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6200,10 +6450,9 @@ msgid "Stop All" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6254,7 +6503,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6312,7 +6561,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6364,7 +6613,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6445,7 +6694,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6483,6 +6739,12 @@ msgstr "" msgid "Arguments" msgstr "" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6493,14 +6755,29 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" msgstr "" #. module: base @@ -6606,7 +6883,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6657,6 +6934,15 @@ msgstr "" msgid "Object" msgstr "" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6692,7 +6978,7 @@ msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6833,7 +7119,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6889,7 +7175,7 @@ msgid "Action Type" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -6992,11 +7278,23 @@ msgstr "" msgid "workflow.instance" msgstr "" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7171,6 +7469,11 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7308,7 +7611,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7506,7 +7809,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7550,6 +7853,14 @@ msgstr "" msgid "Antigua and Barbuda" msgstr "" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7608,7 +7919,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7618,6 +7929,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7674,6 +7990,35 @@ msgstr "" msgid "Turkmenistan" msgstr "" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7802,7 +8147,7 @@ msgid "Internal Header/Footer" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7841,6 +8186,14 @@ msgstr "" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7864,7 +8217,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7911,11 +8264,18 @@ msgid "Low" msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7924,7 +8284,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8078,7 +8438,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8090,6 +8450,11 @@ msgstr "" msgid "Resource" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8101,7 +8466,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8113,6 +8478,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8237,7 +8610,7 @@ msgid "Azerbaijan" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "" @@ -8264,8 +8637,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" msgstr "" #. module: base @@ -8564,7 +8937,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8624,7 +8997,7 @@ msgid "Workflow Instances" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "" diff --git a/bin/addons/base/i18n/nl.po b/bin/addons/base/i18n/nl.po index 5bec695ef93..48f7e3a8b35 100644 --- a/bin/addons/base/i18n/nl.po +++ b/bin/addons/base/i18n/nl.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-19 08:29+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:53+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:15+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,14 @@ msgstr "Andere configuratie" msgid "DateTime" msgstr "DatumTijd" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +60,6 @@ msgstr "Metagegevens" msgid "View Architecture" msgstr "Opbouw weergave" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "U kunt dit soort documenten niet maken! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +110,14 @@ msgstr "Toon menu tips" msgid "Created Views" msgstr "Aangemaakte weergaves" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,11 +134,10 @@ msgid "South Korea" msgstr "Zuid-Korea" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "Overgangen" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "Voorwaarde Fout" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -140,13 +149,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Swaziland" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "Houtleveranciers" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -178,14 +194,14 @@ msgid "Search Partner" msgstr "Zoek relatie" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" "\"smtp_server\" moet ingevuld zijn om mails te versturen naar gebruikers" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "nieuw" @@ -216,7 +232,7 @@ msgid "Contact Name" msgstr "Naam contactpersoon" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -240,6 +256,12 @@ msgstr "actief" msgid "Wizard Name" msgstr "Naam assistent" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -272,7 +294,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "Widget" @@ -323,7 +344,7 @@ msgid "Netherlands Antilles" msgstr "Nederlandse Antillen" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -348,11 +369,6 @@ msgstr "Grieks / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "Bosnisch / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "Web iconen" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -362,6 +378,12 @@ msgstr "" "Als u dit aanvinkt, dan wordt de tweede keer dat de gebruiker het rapport " "met dezelfde bijlagenaam afdrukt, het vorige rapport gebruikt." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -390,6 +412,12 @@ msgstr "Colombia" msgid "Schedule Upgrade" msgstr "Upgrade inplannen" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -434,7 +462,7 @@ msgid "Miscellaneous Suppliers" msgstr "Overige leveranciers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Eigen velden dienen een naam te hebben die begint met 'x_' !" @@ -691,6 +719,12 @@ msgstr "" "Stelt de taal voor het gebruikersinterface in, als de vertalingen " "beschikbaar zijn" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -755,6 +789,14 @@ msgstr "%B - Volledige naam van de maand." msgid "Type" msgstr "Soort" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -781,6 +823,19 @@ msgstr "Ongeldige XML voor weergave!" msgid "Cayman Islands" msgstr "Kaaimaneilanden" +#. 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 "Overgangen" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -892,6 +947,20 @@ msgstr "Haïti" msgid "Search" msgstr "Zoek" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" +"De bewerking kan niet worden afgerond, waarschijnlijk vanwege:\n" +"- verwijdering: u probeert een record te verwijderen terwijl er nog door een " +"ander aan wordt gerefereerd\n" +"- maken/wijzigen: een verplicht veld is niet correct ingevuld" + #. module: base #: view:ir.rule:0 msgid "" @@ -948,13 +1017,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "Taal met code \"%s\" bestaat niet" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "Fout tijdens communicatie met de uitgevers garantie server." @@ -991,6 +1060,12 @@ msgstr "" "contract in uw OpenERP systeem. Nadat het contract is geregistreerd kunt u " "problemen rechtstreeks doorsturen naar OpenERP." +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1040,7 +1115,7 @@ msgid "On Create" msgstr "Bij aanmaken" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1159,12 +1234,6 @@ msgstr "Bijlage ID" msgid "Day: %(day)s" msgstr "Dag: %(day)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "U kunt dit document niet lezen! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1213,8 +1282,8 @@ msgstr "" "object.list_price > object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (kopie)" @@ -1294,7 +1363,7 @@ msgid "Formula" msgstr "Formule" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "U kunt de hoofdgebruiker niet verwijderen!" @@ -1305,7 +1374,8 @@ msgid "Malawi" msgstr "Malawi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "%s (kopie)" @@ -1357,7 +1427,6 @@ msgstr "Boomstructuur" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1387,6 +1456,12 @@ msgstr "" "Controleer bij gebruik van CSV formaat eveneens dat de eerste regel van uw " "bestand een van de volgende is:" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1440,7 +1515,7 @@ msgid "Bahamas" msgstr "Bahama's" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1463,6 +1538,12 @@ msgstr "Ierland" msgid "Number of modules updated" msgstr "Aantal bijgewerkte modules" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1547,6 +1628,12 @@ msgstr "" "Comma-gescheiden lijst van toegestane weergavestanden zoals 'form', 'tree', " "'calendar', etc. (Standaard: tree,form)" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1619,7 +1706,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1708,12 +1795,6 @@ msgstr "E-mailadres" msgid "French (BE) / Français (BE)" msgstr "Frans (BE) / Français (BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "U kunt niet schrijven in dit document! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1786,6 +1867,12 @@ msgstr "" "Naam van het object waarvan de functie wordt opgeroepen als deze planner " "loopt; bijv. 'res.partner'" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1796,13 +1883,19 @@ msgstr "%y - Jaar zonder eeuw [00,99]." msgid "Slovenia" msgstr "Slovenië" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "Berichten" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "Fout!" @@ -1832,6 +1925,14 @@ msgstr "Einddatum" msgid "New Zealand" msgstr "Nieuw-Zeeland" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1884,19 +1985,13 @@ msgstr "Fout! U kunt geen recursieve bedrijven aanmaken." msgid "Valid" msgstr "Geldig" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "U kunt dit document niet verwijderen! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "Kan module '%s' niet opwaarderen. Deze is niet geïnstalleerd." @@ -2007,6 +2102,15 @@ msgstr "Signaal (subflow.*)" msgid "HR sector" msgstr "HR sector" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -2063,6 +2167,11 @@ msgstr "Afhankelijkheden" msgid "Main Company" msgstr "Moederorganisatie" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2153,9 +2262,10 @@ msgid "Sir" msgstr "De heer" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" -msgstr "Selecteer te importeren modulepakket (.zip bestand):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" +msgstr "" #. module: base #: field:ir.default,ref_id:0 @@ -2253,7 +2363,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "Geef alstublieft een actie om uit te voeren !" @@ -2277,6 +2387,12 @@ msgstr "Rechts-naar-links" msgid "Filters" msgstr "Filters" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2298,7 +2414,13 @@ msgstr "" "Indien ingesteld, treedt op als standaardwaarde voor nieuwe resources" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "Recursiefout in module-afhankelijkheden !" @@ -2328,6 +2450,11 @@ msgstr "" "BTW-nummer. Kies dit vakje als de relatie BTW-plichtig is. Wordt gebruikt " "bij de BTW-aangifte." +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2380,11 +2507,6 @@ msgstr "Ean controle" msgid "VAT" msgstr "BTW" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "Web iconen bij eroverheen zweven" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2421,7 +2543,7 @@ msgid "M." msgstr "Hr." #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2430,13 +2552,21 @@ msgstr "" "Kan het module-bestand niet maken:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Nauru" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "Het kwaliteitscertificaat id van de module moet uniek zijn !" @@ -2515,6 +2645,12 @@ msgstr "SMS verzenden" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2573,7 +2709,7 @@ msgid "Ecuador" msgstr "Ecuador" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2645,7 +2781,7 @@ msgid "Action to Trigger" msgstr "Te starten actie" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2849,18 +2985,13 @@ msgstr "Auteur" msgid "FYROM" msgstr "FYROM" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Uitgebreid zoeken" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Passende weergave datum en tijd" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2908,7 +3039,7 @@ msgid "Rules" msgstr "Rechten" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2980,7 +3111,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "U kunt het model '%s' niet verwijderen !" @@ -3010,6 +3141,12 @@ msgstr "Abchazisch / Abchazië" msgid "System Configuration Done" msgstr "Systeemconfiguratie afgerond" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -3041,7 +3178,7 @@ msgid "Benin" msgstr "Benin" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "Dat contract is al geregisteerd in het systeem." @@ -3071,6 +3208,14 @@ msgstr "RML Header" msgid "API ID" msgstr "API ID" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3327,6 +3472,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "Nicaragua" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3613,7 +3764,8 @@ msgid "Bank Type" msgstr "Soort bank" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "De naam van de groep kan niet beginnen met \"-\"" @@ -3635,7 +3787,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "Gujarati / India" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3655,7 +3807,7 @@ msgid "Flow Start" msgstr "Begin werkschema" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "Basis module kan niet worden geladen! (hint: controleer addons-pad)" @@ -3687,7 +3839,9 @@ msgid "Guadeloupe (French)" msgstr "Guadeloupe (Frans)" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "Gebruikersfout" @@ -3765,6 +3919,11 @@ msgstr "%S - Seconden [00,61]." msgid "Cape Verde" msgstr "Kaapverdische Eilanden" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "Selecteer te importeren modulepakket (.zip bestand):" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3778,6 +3937,12 @@ msgstr "Gebeurtenissen" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3811,9 +3976,10 @@ msgid "French / Français" msgstr "Frans / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Aangemaakte menu's" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -4065,6 +4231,14 @@ msgstr "Advies" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -4105,8 +4279,8 @@ msgid "Project" msgstr "Project" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -4136,12 +4310,9 @@ msgid "Serial Key" msgstr "Sleutelcode" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Klant" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "Controle" #. module: base #: model:res.country,name:base.lc @@ -4250,6 +4421,18 @@ msgstr "Viëtnam" msgid "Signature" msgstr "Ondertekening" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4271,7 +4454,7 @@ msgid "False means for every user" msgstr "False betekent voor elke gebruiker" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "De modulenaam moet uniek zijn !" @@ -4312,9 +4495,11 @@ msgid "Contacts" msgstr "Contactpersonen" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Faeröereilanden" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4343,6 +4528,12 @@ msgstr "Tsjechië" msgid "Widget Wizard" msgstr "Componenten assistent" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4389,15 +4580,9 @@ msgid "Mongolia" msgstr "Mongolië" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Fout" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Aangemaakte menu's" #. module: base #: selection:ir.ui.view,type:0 @@ -4513,11 +4698,6 @@ msgstr "St. Vincent en Grenadines" msgid "Password" msgstr "Wachtwoord" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "Icoon bestand" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4623,7 +4803,7 @@ msgid "Change My Preferences" msgstr "Wijzig mijn voorkeuren" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Ongeldige modelnaam in de definitie van de actie." @@ -4691,7 +4871,7 @@ msgid "Raphaël Valyi's tweets" msgstr "Raphaël Valyi's tweets" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4774,7 +4954,13 @@ msgid "Client Actions" msgstr "Cliënt acties" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4849,7 +5035,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Module %s: Ongeldig kwaliteitscertificaat" @@ -4900,6 +5086,11 @@ msgstr "SMS versturen" msgid "Accepted Users" msgstr "Geaccepteerde gebruikers" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -5025,6 +5216,14 @@ msgstr "Olivier Dony's tweets" msgid "Nepal" msgstr "Nepal" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -5057,7 +5256,7 @@ msgid "Update Modules List" msgstr "Werk modulelijst bij" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" @@ -5066,7 +5265,7 @@ msgstr "" "afhankelijkheid is voldaan: %s" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5090,6 +5289,12 @@ msgstr "Doorgaan" msgid "Thai / ภาษาไทย" msgstr "Thais / ภาษาไทย" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5220,6 +5425,13 @@ msgstr "Volledige naam van het land" msgid "Iteration" msgstr "Herhaling" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5258,7 +5470,12 @@ msgid "Solomon Islands" msgstr "Salomoneilanden" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "AccessError" @@ -5269,7 +5486,7 @@ msgid "Waiting" msgstr "Wachtend" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "Kon basis module niet laden" @@ -5279,6 +5496,12 @@ msgstr "Kon basis module niet laden" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5400,7 +5623,7 @@ msgid "ir.actions.todo" msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "Kon vorige ir.actions.todo niet vinden" @@ -5474,17 +5697,23 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "Model %s bestaat niet!" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "U kunt geen taal verwijderen die gebruikers voorkeurstaal is !" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5493,7 +5722,7 @@ msgid "Python Code" msgstr "Python code" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "Kan het modulebestand niet maken: %s !" @@ -5614,7 +5843,7 @@ msgstr "" "of 'form' voor andere weergaves" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "Klik 'Doorgaan' om de volgende addon te configureren..." @@ -5654,7 +5883,7 @@ msgstr "" "Kies het object waarop de actie wordt uitgevoerd (lezen, schrijven, aanmaken)" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "Geef aub server optie --email-from op !" @@ -5871,7 +6100,7 @@ msgid "Afghanistan, Islamic State of" msgstr "Afghanistan" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Fout !" @@ -5892,6 +6121,12 @@ msgstr "Eenheid interval" msgid "Kind" msgstr "Soort" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -6158,6 +6393,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "Om officiële vertalingen te bekijken begint u met deze links:" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -6167,11 +6410,6 @@ msgstr "Om officiële vertalingen te bekijken begint u met deze links:" msgid "Address" msgstr "Adres" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "Icoon bestand bij eroverheen zweven" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6250,7 +6488,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "St. Kitts & Nevis Anguilla" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6339,7 +6577,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6364,11 +6602,19 @@ msgid "Child IDs" msgstr "Onderliggende ID's" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Probleem in instellingen `Record id` in server-actie!" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6417,6 +6663,14 @@ msgstr "Email" msgid "Home Action" msgstr "Actie beginscherm" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6445,11 +6699,10 @@ msgid "Stop All" msgstr "Alles stoppen" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" -msgstr "Een contract registreren" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" +msgstr "" #. module: base #: view:ir.model.data:0 @@ -6501,7 +6754,7 @@ msgid "Start update" msgstr "Start bijwerken" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "Contract bevestiging fout" @@ -6560,7 +6813,7 @@ msgid "HR Manager Dashboard" msgstr "HR Manager dashboard" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6618,7 +6871,7 @@ msgid "Module Update" msgstr "Module bijwerken" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "De volgende modules zijn niet geïnstalleerd of onbekend: %s" @@ -6700,7 +6953,14 @@ msgstr "" "De echte naam van de gebruiker, gebruikt voor zoeken en de meeste overzichten" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "Integriteit Fout" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "De veldlengte kan nooit kleiner dan 1 zijn !" @@ -6738,6 +6998,12 @@ msgstr "Aan" msgid "Arguments" msgstr "Argumenten" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6748,15 +7014,30 @@ msgstr "GPL versie 2" msgid "GPL Version 3" msgstr "GPL versie 3" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "Correcte EAN13" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" -msgstr "Controle" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Klant" #. module: base #: selection:base.language.install,lang:0 @@ -6861,7 +7142,7 @@ msgid "Copy Object" msgstr "Object kopieren" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6914,6 +7195,18 @@ msgstr "Tabelref." msgid "Object" msgstr "Object" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" +"\n" +"\n" +"[object met referentie: %s - %s]" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6951,7 +7244,7 @@ msgid "User Ref." msgstr "Ref. gebruiker" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "Waarschuwing !" @@ -7092,7 +7385,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "Ongeldige zoekcriteria" @@ -7150,7 +7443,7 @@ msgid "Action Type" msgstr "Soort actie" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7258,11 +7551,23 @@ msgstr "Landcode" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7439,6 +7744,11 @@ msgstr "E-mail verzenden" msgid "Menu Action" msgstr "Menu-actie" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Faeröereilanden" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7583,7 +7893,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7790,7 +8100,7 @@ msgid "Account No." msgstr "Rekeningnr." #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Basistaal 'en_US' kan niet worden verwijderd !" @@ -7838,6 +8148,14 @@ msgstr "Vertaling" msgid "Antigua and Barbuda" msgstr "Antigua en Barbuda" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7896,7 +8214,7 @@ msgid "Auto-Refresh" msgstr "Vanzelf verversen" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7907,6 +8225,11 @@ msgstr "" msgid "Diagram" msgstr "Diagram" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis en Futuna-eilanden" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7963,6 +8286,35 @@ msgstr "Bank ID code" msgid "Turkmenistan" msgstr "Turkmenistan" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Fout" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -8091,7 +8443,7 @@ msgid "Internal Header/Footer" msgstr "Interne kop-/voetregels" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -8132,6 +8484,14 @@ msgstr "Dominicaanse Republiek" msgid "Serbian (Cyrillic) / српски" msgstr "Servisch (Cyrillisch) / српски" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -8158,7 +8518,7 @@ msgid "Event Logs" msgstr "Logboek gebeurtenissen" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "Systeemconfiguratie afgerond" @@ -8205,11 +8565,18 @@ msgid "Low" msgstr "Laag" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Fout ! U kunt geen recursief menu maken." +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "Een contract registreren" + #. module: base #: view:ir.rule:0 msgid "" @@ -8220,7 +8587,7 @@ msgstr "" "stap 2 gecombineerd met een logische OF operator" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "Controleer aub uw uitgever garantie contact naam en geldigheid." @@ -8379,7 +8746,7 @@ msgid "View Auto-Load" msgstr "Weergave vanzelf verversen" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "U kunt het veld '%s' niet verwijderen !" @@ -8391,6 +8758,11 @@ msgstr "U kunt het veld '%s' niet verwijderen !" msgid "Resource" msgstr "Bron" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8402,7 +8774,7 @@ msgid "View Ordering" msgstr "Weergave volgorde" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "Niet voldane afhankelijkheid !" @@ -8416,6 +8788,14 @@ msgstr "" "Ondersteunde bestandsformaten: *.csv (comma gescheiden waarden) of *.po " "(GetText Portable Objecten)" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8544,7 +8924,7 @@ msgid "Azerbaijan" msgstr "Azerbeidzjan" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Waarschuwing" @@ -8571,9 +8951,9 @@ msgid "Czech / Čeština" msgstr "Tsjechisch / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis en Futuna-eilanden" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Uitgebreid zoeken" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8883,7 +9263,7 @@ msgid "Account Owner" msgstr "Rekeninghouder" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "Bedrijf overgang waarschuwing" @@ -8943,7 +9323,7 @@ msgid "Workflow Instances" msgstr "Exemplaren werkschema" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Relaties: " @@ -9803,6 +10183,10 @@ msgstr "Russisch / русский язык" #~ msgid "State of Mind" #~ msgstr "Loyaliteit" +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "U kunt dit soort documenten niet maken! (%s)" + #~ msgid "Outgoing transitions" #~ msgstr "Uitgaande overgangen" @@ -9901,6 +10285,10 @@ msgstr "Russisch / русский язык" #~ msgid "Check new modules" #~ msgstr "Zoek naar nieuwe modules" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "U kunt dit document niet lezen! (%s)" + #~ msgid "End of Request" #~ msgstr "Einde verzoek" @@ -9917,6 +10305,10 @@ msgstr "Russisch / русский язык" #~ msgid "Configure User" #~ msgstr "Gebruiker instellen" +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "U kunt dit document niet verwijderen! (%s)" + #~ msgid "%S - Second as a decimal number [00,61]." #~ msgstr "%S - Seconden als een decimaal getal [00,61]." @@ -10143,6 +10535,10 @@ msgstr "Russisch / русский язык" #~ msgid "Enter at least one field !" #~ msgstr "Geef tenminste één veld op !" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "U kunt niet schrijven in dit document! (%s)" + #~ msgid "Start Upgrade" #~ msgstr "Begin upgrade" @@ -10480,36 +10876,6 @@ msgstr "Russisch / русский язык" #~ msgid "Your maintenance contract is already subscribed in the system !" #~ msgstr "Uw onderhoudscontract is al ingeschreven in het systeem !" -#, python-format -#~ msgid "" -#~ "\n" -#~ "\n" -#~ "[object with reference: %s - %s]" -#~ msgstr "" -#~ "\n" -#~ "\n" -#~ "[object met referentie: %s - %s]" - -#, python-format -#~ msgid "Integrity Error" -#~ msgstr "Integriteit Fout" - -#, python-format -#~ msgid "Constraint Error" -#~ msgstr "Voorwaarde Fout" - -#, python-format -#~ msgid "" -#~ "The operation cannot be completed, probably due to the following:\n" -#~ "- deletion: you may be trying to delete a record while other records still " -#~ "reference it\n" -#~ "- creation/update: a mandatory field is not correctly set" -#~ msgstr "" -#~ "De bewerking kan niet worden afgerond, waarschijnlijk vanwege:\n" -#~ "- verwijdering: u probeert een record te verwijderen terwijl er nog door een " -#~ "ander aan wordt gerefereerd\n" -#~ "- maken/wijzigen: een verplicht veld is niet correct ingevuld" - #~ msgid "The Code of the Partner Function must be unique !" #~ msgstr "De code van de relatie functie moet uniek zijn !" @@ -10875,3 +11241,15 @@ msgstr "Russisch / русский язык" #, python-format #~ msgid "Invalid type" #~ msgstr "Ongeldig type" + +#~ msgid "Icon hover File" +#~ msgstr "Icoon bestand bij eroverheen zweven" + +#~ msgid "Icon File" +#~ msgstr "Icoon bestand" + +#~ msgid "Web Icons" +#~ msgstr "Web iconen" + +#~ msgid "Web Icons Hover" +#~ msgstr "Web iconen bij eroverheen zweven" diff --git a/bin/addons/base/i18n/pl.po b/bin/addons/base/i18n/pl.po index ae74d3170b6..7013ca60930 100644 --- a/bin/addons/base/i18n/pl.po +++ b/bin/addons/base/i18n/pl.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-28 19:42+0000\n" -"Last-Translator: Grzegorz Grzelak (Cirrus.pl) \n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" +"PO-Revision-Date: 2010-12-29 07:08+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-29 04:39+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:18+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,14 @@ msgstr "Inna konfiguracja" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +60,6 @@ msgstr "Metadane" msgid "View Architecture" msgstr "Architektura widoku" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Nie możesz utworzyć dokumentu tego rodzaju (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +110,14 @@ msgstr "Wyświetlaj wskazówki menu" msgid "Created Views" msgstr "Utworzone widoki" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,11 +134,10 @@ msgid "South Korea" msgstr "Korea Południowa" #. 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 "Przejścia" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -140,13 +149,20 @@ msgstr "" msgid "Swaziland" msgstr "Swaziland" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "Dostawcy drewna" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -178,14 +194,14 @@ msgid "Search Partner" msgstr "Szukaj partnera" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" "\"smtp_server\" musi być ustawiony do wysyłania maili do użytkowników" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "nowy" @@ -216,7 +232,7 @@ msgid "Contact Name" msgstr "Nazwa kontaktu" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -240,6 +256,12 @@ msgstr "aktywne" msgid "Wizard Name" msgstr "Nazwa kreatora" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -272,7 +294,6 @@ msgstr "" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "Kontrolka" @@ -323,7 +344,7 @@ msgid "Netherlands Antilles" msgstr "Antyle Holenderskie" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -347,11 +368,6 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "Bośniacki / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "Ikonay web" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -361,6 +377,12 @@ msgstr "" "Jeśli to zaznaczysz, to następnym razem użytkownik wydrukuje z tą samą nazwą " "załącznika. To przywróci poprzedni raport." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "Metoda 'read' (czytania) nie jest zaimplementowana na tym obiekcie !" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -387,6 +409,12 @@ msgstr "Kolumbia" msgid "Schedule Upgrade" msgstr "Zaplanuj aktualizację" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -431,7 +459,7 @@ msgid "Miscellaneous Suppliers" msgstr "Różni dostawcy" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Własne pole musi mieć nazwę rozpoczynającą się od 'x_' !" @@ -684,6 +712,12 @@ msgid "" msgstr "" "Ustawia język interfejsu dla użytkownika, jeśli tłumaczenie jest dostępne." +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "Metoda 'unlink' nie jest zaimplementowana na tym obiekcie !" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -748,6 +782,16 @@ msgstr "%B - Pełna nazwa miesiąca." msgid "Type" msgstr "Typ" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" +"W systemie nie zdefiniowano języka o kodzie \"%s\" !\n" +"Zdefiniuj go w menu Administracja." + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -774,6 +818,19 @@ msgstr "XML niewłaściwy dla tej architektury wyświetlania!" msgid "Cayman Islands" msgstr "Wyspy Kajmany" +#. 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 "Przejścia" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -881,6 +938,16 @@ msgstr "Haiti" msgid "Search" msgstr "Wyszukaj" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -937,13 +1004,13 @@ msgid "ir.exports" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "Brak języka z kodem \"%s\"" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -977,6 +1044,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1026,7 +1099,7 @@ msgid "On Create" msgstr "Przy tworzeniu" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1130,12 +1203,6 @@ msgstr "Związane ID" msgid "Day: %(day)s" msgstr "Dzień: %(day)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Nie możesz czytać tego dokumentu! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1181,8 +1248,8 @@ msgstr "" "object.list_price > object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (kopia)" @@ -1262,7 +1329,7 @@ msgid "Formula" msgstr "Formuła" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "Nie można usunąć użytkownika root!" @@ -1273,7 +1340,8 @@ msgid "Malawi" msgstr "Malawi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1325,7 +1393,6 @@ msgstr "Drzewo" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1356,6 +1423,12 @@ msgstr "" "Kiedy stosujesz format CSV, to sprawdź czy pierwszy wiersz pliku jest " "podobny do poniższych:" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "Nie zaimplementowano metody 'search_memory' !" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1409,7 +1482,7 @@ msgid "Bahamas" msgstr "Wyspy Bahama" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1432,6 +1505,12 @@ msgstr "Irlandia" msgid "Number of modules updated" msgstr "Liczba zaktualizowanych modułów" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "Nie zaimplementowano metody 'set_memory' !" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1512,6 +1591,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1584,7 +1669,7 @@ msgid "Madagascar" msgstr "Madagaskar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1674,12 +1759,6 @@ msgstr "Adres email" msgid "French (BE) / Français (BE)" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Nie możesz pisać w tym dokumencie! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1752,6 +1831,12 @@ msgstr "" "Nazwa obiektu, dla którego funkcja zostanie wywołana kiedy wystartuje " "planista. np. 'res.partner'." +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "Metoda 'perm_read' nie jest zaimplementowana w tym obiekcie !" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1762,13 +1847,19 @@ msgstr "%y - Rok dwucyfrowo [00,99]." msgid "Slovenia" msgstr "Słowenia" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "Wiadomości" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "Błąd!" @@ -1798,6 +1889,14 @@ msgstr "Data końcowa" msgid "New Zealand" msgstr "Nowa Zelandia" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1849,19 +1948,13 @@ msgstr "Błąd! Nie możesz tworzyć firm rekurencyjnych." msgid "Valid" msgstr "Ważna" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Nie możesz usunąć tego dokumentu! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "Nie można aktualizować modułu '%s'. Nie jest on zainstalowany." @@ -1972,6 +2065,15 @@ msgstr "Przywołanie (podobieg.*)" msgid "HR sector" msgstr "Sektor zas. ludz." +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -2027,6 +2129,11 @@ msgstr "Zależności" msgid "Main Company" msgstr "Główna firma" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2115,9 +2222,10 @@ msgid "Sir" msgstr "Pan" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" -msgstr "Wybierz pakiet modułu do importu (plik .zip)" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" +msgstr "" #. module: base #: field:ir.default,ref_id:0 @@ -2215,7 +2323,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "Podaj akcję do uruchomienia !" @@ -2239,6 +2347,12 @@ msgstr "Od prawej do lewej" msgid "Filters" msgstr "Filtry" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "Upewnij się, że wszystkie wiersze mają %d kolumn(y)." + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2260,7 +2374,13 @@ msgstr "" "Jeśli nie ustawione, to działa jak wartość domyślna dla nowych zasobów." #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "Stwierdzono rekurencję" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "Błąd rekurencji w zależności modułów !" @@ -2289,6 +2409,11 @@ msgstr "" "Numer NIP. Zaznacz pole jeśli partner jest płatnikiem podatku VAT. Stosowane " "do zgodności z prawem podatkowym. Numer wpisuj w postaci \"PL1234567898\"." +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2341,11 +2466,6 @@ msgstr "Sprawdzanie EAN" msgid "VAT" msgstr "NIP" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2382,7 +2502,7 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2391,13 +2511,21 @@ msgstr "" "Nie można utworzyć pliku modułu:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "ID certyfikatu modułu musi być unikalne !" @@ -2475,6 +2603,12 @@ msgstr "Wyślij SMS" msgid "EAN13" msgstr "" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2533,7 +2667,7 @@ msgid "Ecuador" msgstr "Ekwador" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2605,7 +2739,7 @@ msgid "Action to Trigger" msgstr "Akcja do wyzwolenia" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2804,18 +2938,13 @@ msgstr "Autor" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Wyszukiwanie zaawansowane" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Odpowiednia reprezentacja daty i czasu." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2864,7 +2993,7 @@ msgid "Rules" msgstr "Reguły" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2935,7 +3064,7 @@ msgid "Lesotho" msgstr "Lesoto" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "Nie możesz usunąć modelu '%s' !" @@ -2965,6 +3094,12 @@ msgstr "" msgid "System Configuration Done" msgstr "Wykonano konfigurację systemu" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "Wystąpił błąd przy sprawdzaniu pola (pól) %s: %s" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2996,7 +3131,7 @@ msgid "Benin" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "Umowa została zarejestrowana w systemie." @@ -3026,6 +3161,14 @@ msgstr "Nagłówek RML" msgid "API ID" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3280,6 +3423,12 @@ msgstr "" msgid "Nicaragua" msgstr "Nikaragua" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "Metoda 'write' (zapis) nie jest zaimplementowana w tym obiekcie" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3564,7 +3713,8 @@ msgid "Bank Type" msgstr "Typ banku" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "Nazwa grupy nie może rozpoczynać się od \"-\"" @@ -3586,7 +3736,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3604,7 +3754,7 @@ msgid "Flow Start" msgstr "Uruchom przepływ" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3636,7 +3786,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3714,6 +3866,11 @@ msgstr "%S - Sekundy [00,61]." msgid "Cape Verde" msgstr "" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "Wybierz pakiet modułu do importu (plik .zip)" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3727,6 +3884,14 @@ msgstr "Zdarzenia" msgid "ir.actions.url" msgstr "" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" +"Błędne ID dla przeglądanego rekordu, jest %r a oczekiwano liczby całkowitej " +"(integer)" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3760,9 +3925,11 @@ msgid "French / Français" msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Utworzone menu" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "" +"Metoda 'create' (tworzenie) nie jest zaimplementowana w tym obiekcie !" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -4012,6 +4179,14 @@ msgstr "Porada" msgid "ir.attachment" msgstr "" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -4052,8 +4227,8 @@ msgid "Project" msgstr "Projekt" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -4083,12 +4258,9 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Klient" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "" #. module: base #: model:res.country,name:base.lc @@ -4196,6 +4368,18 @@ msgstr "Wietnam" msgid "Signature" msgstr "Podpis" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "Nie zaimplementowane" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4217,7 +4401,7 @@ msgid "False means for every user" msgstr "Fałsz oznacza dla każdego użytkownika" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "Nazwa modułu musi być unikalna !" @@ -4258,8 +4442,10 @@ msgid "Contacts" msgstr "Kontakty" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" msgstr "" #. module: base @@ -4289,6 +4475,12 @@ msgstr "Republika Czeska" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4333,15 +4525,9 @@ msgid "Mongolia" msgstr "Mongolia" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Błąd" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Utworzone menu" #. module: base #: selection:ir.ui.view,type:0 @@ -4455,11 +4641,6 @@ msgstr "" msgid "Password" msgstr "Hasło" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4562,7 +4743,7 @@ msgid "Change My Preferences" msgstr "Zmień moje preferencje" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Nieprawidłowa nazwa modelu w definicji akcji." @@ -4630,7 +4811,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4710,7 +4891,13 @@ msgid "Client Actions" msgstr "Akcja klienta." #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4785,7 +4972,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Moduł %s: Niepoprawny certyfikat jakości" @@ -4836,6 +5023,11 @@ msgstr "" msgid "Accepted Users" msgstr "Akceptowani użytkownicy" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4960,6 +5152,14 @@ msgstr "" msgid "Nepal" msgstr "Nepal" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4992,14 +5192,14 @@ msgid "Update Modules List" msgstr "Zaktualizuj listę modułów" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5022,6 +5222,12 @@ msgstr "Kontynuuj" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5152,6 +5358,13 @@ msgstr "Pełna nazwa kraju" msgid "Iteration" msgstr "Iteracja" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5190,7 +5403,12 @@ msgid "Solomon Islands" msgstr "Wyspy Salomona" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "" @@ -5201,7 +5419,7 @@ msgid "Waiting" msgstr "Oczekiwanie" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "nie mozna załadowac modułu podstawowego" @@ -5211,6 +5429,12 @@ msgstr "nie mozna załadowac modułu podstawowego" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5332,7 +5556,7 @@ msgid "ir.actions.todo" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5406,17 +5630,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "Model %s nie istnieje!" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "Nie możesz usunąć języka, który jest w preferencjach użytkownika !" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5425,7 +5655,7 @@ msgid "Python Code" msgstr "Kod Python" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "Nie można utworzyć pliku modułu: %s !" @@ -5546,7 +5776,7 @@ msgstr "" "innych widoków." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "Naciśnij 'Kontynuuj', aby konfigurować następny dodatek..." @@ -5586,7 +5816,7 @@ msgstr "" "Wybierz obiekt, na którym akcja ma być wykonana (odczyt, zapis, tworzenie)" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "Określ opcję serwera --email-from !" @@ -5800,7 +6030,7 @@ msgid "Afghanistan, Islamic State of" msgstr "Afganistan, Republika Islamska" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Błąd !" @@ -5821,6 +6051,12 @@ msgstr "Jednostka interwału" msgid "Kind" msgstr "Rodzaj" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -6083,6 +6319,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -6092,11 +6336,6 @@ msgstr "" msgid "Address" msgstr "Adres" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6175,7 +6414,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6264,7 +6503,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6285,11 +6524,19 @@ msgid "Child IDs" msgstr "ID podrzędnego" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problem w konfiguracji `Record Id` w akcji serwera!" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6336,6 +6583,16 @@ msgstr "E-mail" msgid "Home Action" msgstr "Akcja startowa" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" +"Suma danych (drugie pole) wynosi 0.\n" +"Nie można narysować wykresu kołowego !" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6364,10 +6621,9 @@ msgid "Stop All" msgstr "Zatrzymaj wszystko" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6418,7 +6674,7 @@ msgid "Start update" msgstr "Uruchom aktualizację" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6479,7 +6735,7 @@ msgid "HR Manager Dashboard" msgstr "Konsola Dyrektora kadr" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6531,7 +6787,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6612,7 +6868,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "Nazwisko nowego użytkownika. Stosowane do wyszukiwań i listowania" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6650,6 +6913,12 @@ msgstr "Do" msgid "Arguments" msgstr "Argumenty" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6660,16 +6929,31 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "Popraw EAN13" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" msgstr "" +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Klient" + #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (NI) / Español (NI)" @@ -6773,7 +7057,7 @@ msgid "Copy Object" msgstr "Kopiuj obiekt" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6825,6 +7109,15 @@ msgstr "Odn. tabeli" msgid "Object" msgstr "Obiekt" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6862,7 +7155,7 @@ msgid "User Ref." msgstr "Odn. użytkownika" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "Ostrzeżenie !" @@ -7003,7 +7296,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7061,7 +7354,7 @@ msgid "Action Type" msgstr "Typ akcji" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7168,11 +7461,23 @@ msgstr "Kod kraju" msgid "workflow.instance" msgstr "" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7349,6 +7654,11 @@ msgstr "Wyślij Email" msgid "Menu Action" msgstr "Menu Akcja" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7488,7 +7798,7 @@ msgid "China" msgstr "Chiny" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7689,7 +7999,7 @@ msgid "Account No." msgstr "Nr konta" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7737,6 +8047,14 @@ msgstr "Tłumaczenie" msgid "Antigua and Barbuda" msgstr "" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7795,7 +8113,7 @@ msgid "Auto-Refresh" msgstr "Autoodświeżanie" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7805,6 +8123,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7861,6 +8184,35 @@ msgstr "Kod identyfikacyjny banku" msgid "Turkmenistan" msgstr "Turkmenistan" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Błąd" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7989,7 +8341,7 @@ msgid "Internal Header/Footer" msgstr "Wewnętrzny nagłówek/stopka" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -8030,6 +8382,14 @@ msgstr "Dominikana" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -8055,7 +8415,7 @@ msgid "Event Logs" msgstr "Dziennik zdarzeń" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "Wykonano konfiguracje systemu" @@ -8102,11 +8462,18 @@ msgid "Low" msgstr "Niski" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Błąd ! Nie możesz tworzyć rekurencyjnych menu." +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -8115,7 +8482,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8269,7 +8636,7 @@ msgid "View Auto-Load" msgstr "Autoładowanie widoku" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8281,6 +8648,11 @@ msgstr "" msgid "Resource" msgstr "Zasób" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8292,7 +8664,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8306,6 +8678,14 @@ msgstr "" "Obsługiwane formaty: *.csv (Comma-separated values) lub *.po (GetText " "Portable Objects)" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8433,7 +8813,7 @@ msgid "Azerbaijan" msgstr "Azerbejdżan" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Ostrzeżenie" @@ -8460,9 +8840,9 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Wyszukiwanie zaawansowane" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8768,7 +9148,7 @@ msgid "Account Owner" msgstr "Właściciel konta" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "Ostrzeżenie przy przełączaniu firmy" @@ -8828,7 +9208,7 @@ msgid "Workflow Instances" msgstr "Instancje obiegu" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Partnerzy: " @@ -8900,6 +9280,10 @@ msgstr "" #~ msgid "Monthly" #~ msgstr "Miesięcznie" +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Nie możesz utworzyć dokumentu tego rodzaju (%s)" + #~ msgid "%j - Day of the year as a decimal number [001,366]." #~ msgstr "%j - Dzień roku jako liczba dziesiętna [001,366]." @@ -9002,10 +9386,6 @@ msgstr "" #~ msgid "Yearly" #~ msgstr "Co rok" -#, python-format -#~ msgid "The unlink method is not implemented on this object !" -#~ msgstr "Metoda 'unlink' nie jest zaimplementowana na tym obiekcie !" - #, python-format #~ msgid "Password mismatch !" #~ msgstr "Hasło nie pasuje !" @@ -9147,14 +9527,6 @@ msgstr "" #~ msgid "Sequence Name" #~ msgstr "Nazwa numeracji" -#, python-format -#~ msgid "" -#~ "The sum of the data (2nd field) is null.\n" -#~ "We can't draw a pie chart !" -#~ msgstr "" -#~ "Suma danych (drugie pole) wynosi 0.\n" -#~ "Nie można narysować wykresu kołowego !" - #, python-format #~ msgid "September" #~ msgstr "Wrzesień" @@ -9201,6 +9573,10 @@ msgstr "" #~ msgid "Check new modules" #~ msgstr "Sprawdź nowe moduły" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Nie możesz czytać tego dokumentu! (%s)" + #, python-format #~ msgid "Products: " #~ msgstr "Produkty: " @@ -9235,14 +9611,6 @@ msgstr "" #~ msgid "Product Cost Structure" #~ msgstr "Struktura kosztów produktu" -#, python-format -#~ msgid "Not implemented search_memory method !" -#~ msgstr "Nie zaimplementowano metody 'search_memory' !" - -#, python-format -#~ msgid "Not implemented set_memory method !" -#~ msgstr "Nie zaimplementowano metody 'set_memory' !" - #~ msgid "Year without century: %(y)s" #~ msgstr "Rok dwucyfrowo: %(y)s" @@ -9268,10 +9636,6 @@ msgstr "" #~ msgid "Cannot delete a point of sale which is already confirmed !" #~ msgstr "Nie można usunąć punktu sprzedaży, który jest potwierdzony !" -#, python-format -#~ msgid "The read method is not implemented on this object !" -#~ msgstr "Metoda 'read' (czytania) nie jest zaimplementowana na tym obiekcie !" - #, python-format #~ msgid "Can't connect instance %s" #~ msgstr "Nie można się połączyć z instancją %s" @@ -9328,12 +9692,12 @@ msgstr "" #~ msgstr "Wprowadź co najmniej jedno pole !" #, python-format -#~ msgid "Product Margins" -#~ msgstr "Marża produktu" +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Nie możesz pisać w tym dokumencie! (%s)" #, python-format -#~ msgid "The perm_read method is not implemented on this object !" -#~ msgstr "Metoda 'perm_read' nie jest zaimplementowana w tym obiekcie !" +#~ msgid "Product Margins" +#~ msgstr "Marża produktu" #~ msgid "left" #~ msgstr "z lewej" @@ -9377,6 +9741,10 @@ msgstr "" #~ msgid "Please verify that an account is defined in the journal." #~ msgstr "Sprawdź, czy konto jest zdefiniowane w dzienniku." +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Nie możesz usunąć tego dokumentu! (%s)" + #, python-format #~ msgid "No Partner!" #~ msgstr "Brak partnera!" @@ -9467,10 +9835,6 @@ msgstr "" #~ msgid "Import language" #~ msgstr "Importuj język" -#, python-format -#~ msgid "Please check that all your lines have %d columns." -#~ msgstr "Upewnij się, że wszystkie wiersze mają %d kolumn(y)." - #, python-format #~ msgid "Open" #~ msgstr "Otwórz" @@ -9492,10 +9856,6 @@ msgstr "" #~ msgid "Production Order Cannot start in [%s] state" #~ msgstr "Zamówienie produkcji nie może się rozpoczynać od stanu [%s]" -#, python-format -#~ msgid "Recursivity Detected." -#~ msgstr "Stwierdzono rekurencję" - #~ msgid "Categories of Modules" #~ msgstr "Kategorie modułów" @@ -9601,11 +9961,6 @@ msgstr "" #~ msgid "System Upgrade" #~ msgstr "Aktualizacja systemu" -#, python-format -#~ msgid "The create method is not implemented on this object !" -#~ msgstr "" -#~ "Metoda 'create' (tworzenie) nie jest zaimplementowana w tym obiekcie !" - #, python-format #~ msgid "Invalid operation" #~ msgstr "Niedozwolona operacja" @@ -9629,14 +9984,6 @@ msgstr "" #~ "Nie można wysłać poczty, bo kontakt dla tego zadania (%s) nie ma adresu " #~ "mailowego!" -#, python-format -#~ msgid "" -#~ "Language with code \"%s\" is not defined in your system !\n" -#~ "Define it through the Administration menu." -#~ msgstr "" -#~ "W systemie nie zdefiniowano języka o kodzie \"%s\" !\n" -#~ "Zdefiniuj go w menu Administracja." - #, python-format #~ msgid "You can not modify an invoiced analytic line!" #~ msgstr "Nie możesz zmieniać zafakturowanych pozycji analitycznych!" @@ -9673,10 +10020,6 @@ msgstr "" #~ msgid "Accepted Links in Requests" #~ msgstr "Akceptowane łączniki w zgłoszeniach" -#, python-format -#~ msgid "Error occurred while validating the field(s) %s: %s" -#~ msgstr "Wystąpił błąd przy sprawdzaniu pola (pól) %s: %s" - #~ msgid "The rule is satisfied if all test are True (AND)" #~ msgstr "Reguła będzie spełniona, jeśli wszystkie testy będą pozytywne (AND)" @@ -9770,10 +10113,6 @@ msgstr "" #~ "Wszystkie e-maile zostały poprawnie wysłane do partnerów:.\n" #~ "\n" -#, python-format -#~ msgid "The write method is not implemented on this object !" -#~ msgstr "Metoda 'write' (zapis) nie jest zaimplementowana w tym obiekcie" - #, python-format #~ msgid "" #~ "\"\"\n" @@ -9891,12 +10230,6 @@ msgstr "" #~ msgid "Task '%s' cancelled" #~ msgstr "Zadanie '%s' anulowano" -#, python-format -#~ msgid "Wrong ID for the browse record, got %r, expected an integer." -#~ msgstr "" -#~ "Błędne ID dla przeglądanego rekordu, jest %r a oczekiwano liczby całkowitej " -#~ "(integer)" - #~ msgid "Role Required" #~ msgstr "Wymagana rola" @@ -10008,10 +10341,6 @@ msgstr "" #~ msgid "Invoices" #~ msgstr "Faktury" -#, python-format -#~ msgid "Not Implemented" -#~ msgstr "Nie zaimplementowane" - #, python-format #~ msgid "Please provide a partner for the sale." #~ msgstr "Proszę wprowadzić partnera dla sprzedaży." @@ -10626,3 +10955,6 @@ msgstr "" #, python-format #~ msgid "Make sure you have no users linked with the group(s)!" #~ msgstr "Upewnij się, że nie ma użytkowników przypisanych do grup(y)!" + +#~ msgid "Web Icons" +#~ msgstr "Ikonay web" diff --git a/bin/addons/base/i18n/pt.po b/bin/addons/base/i18n/pt.po index 240c171e68f..0c865fcbc40 100644 --- a/bin/addons/base/i18n/pt.po +++ b/bin/addons/base/i18n/pt.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-07 07:47+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:57+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:18+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,14 @@ msgstr "Outras configurações" msgid "DateTime" msgstr "Data/Hora" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +60,6 @@ msgstr "Metadados" msgid "View Architecture" msgstr "Arquitectura da vista" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Não pode criar este tipo de documento! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +110,14 @@ msgstr "Exibir dicas no menu" msgid "Created Views" msgstr "Criar vistas" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,11 +134,10 @@ msgid "South Korea" msgstr "Coreia do Sul" #. 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 "Transições" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -140,13 +149,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Suazilândia" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "Fornecedores de madeira" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -177,13 +193,13 @@ msgid "Search Partner" msgstr "Localizar Parceiro" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "Precisa definir \"smtp_server\" para enviar emails aos utilizadores" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "novo" @@ -214,7 +230,7 @@ msgid "Contact Name" msgstr "Nome do contacto" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -238,6 +254,12 @@ msgstr "activo" msgid "Wizard Name" msgstr "Nome do Assistente" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -270,7 +292,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -321,7 +342,7 @@ msgid "Netherlands Antilles" msgstr "Antilhas Holandesas" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -345,11 +366,6 @@ msgstr "Grego" msgid "Bosnian / bosanski jezik" msgstr "Bósnio / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "Ícones Web" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -359,6 +375,12 @@ msgstr "" "Se assinalar, a segunda vez que um utilizador imprimir com o mesmo nome em " "anexo, será apresentado o relatório anterior." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -385,6 +407,12 @@ msgstr "Colômbia" msgid "Schedule Upgrade" msgstr "Agendar actualização" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -430,7 +458,7 @@ msgid "Miscellaneous Suppliers" msgstr "Fornecedores diversos" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Os campos personalizados devem ter um nome que começado por 'x_'!" @@ -687,6 +715,12 @@ msgstr "" "Define o idioma para a interface do utilizador, quando a tradução estiver " "disponível" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "O método remover (unlink) não está implementado neste objecto!" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -751,6 +785,14 @@ msgstr "%B - Nome completo do mês." msgid "Type" msgstr "Tipo" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -777,6 +819,19 @@ msgstr "XML inválido para a arquitectura de vista" msgid "Cayman Islands" msgstr "Ilhas Caimão" +#. 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 "Transições" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -887,6 +942,16 @@ msgstr "Haiti" msgid "Search" msgstr "Procurar" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -943,13 +1008,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "Não existe um idioma com o código \"%s\"" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -983,6 +1048,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1032,7 +1103,7 @@ msgid "On Create" msgstr "Em criação" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1137,12 +1208,6 @@ msgstr "Id ligado" msgid "Day: %(day)s" msgstr "Dias: %(dia)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Não pode ler este documento! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1190,8 +1255,8 @@ msgstr "" "object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (cópia)" @@ -1271,7 +1336,7 @@ msgid "Formula" msgstr "Fórmula" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "Não pode remover utilizador root!" @@ -1282,7 +1347,8 @@ msgid "Malawi" msgstr "Malawi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1334,7 +1400,6 @@ msgstr "Árvore" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1364,6 +1429,12 @@ msgstr "" "Ao usar o formato CSV, verifique se a primeira linha do seu ficheiro é uma " "das seguintes:" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1418,7 +1489,7 @@ msgid "Bahamas" msgstr "Bahamas" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1441,6 +1512,12 @@ msgstr "Irlanda" msgid "Number of modules updated" msgstr "Numero de módulos actualizados" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1520,6 +1597,12 @@ msgstr "" "Lista separada por virgulas, dos modos de vistas permitidos como 'form', " "'tree', 'calendar', etc. (padrão: tree,form)" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1592,7 +1675,7 @@ msgid "Madagascar" msgstr "Madagáscar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1681,12 +1764,6 @@ msgstr "Endereço de email" msgid "French (BE) / Français (BE)" msgstr "Francês (BE) / Français (BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Não pode escrever neste documento! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1757,6 +1834,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1767,13 +1850,19 @@ msgstr "" msgid "Slovenia" msgstr "Eslovénia" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "Mensagens" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "Erro!" @@ -1803,6 +1892,14 @@ msgstr "Data final" msgid "New Zealand" msgstr "Nova Zelândia" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1852,19 +1949,13 @@ msgstr "Erro! Você não pode criar empresas recursivas" msgid "Valid" msgstr "Válido" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Não pode apagar este documento! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "Não é possível actualizar o modulo '%s'. Não esta instalado." @@ -1975,6 +2066,15 @@ msgstr "Sinal (subfluxo.*)" msgid "HR sector" msgstr "Setor de RH" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -2030,6 +2130,11 @@ msgstr "Dependências" msgid "Main Company" msgstr "Empresa principal" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2120,9 +2225,10 @@ msgid "Sir" msgstr "Senhor" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" -msgstr "Selecione pacote do módulo a importar (ficheiro zip.)" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" +msgstr "" #. module: base #: field:ir.default,ref_id:0 @@ -2220,7 +2326,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "Por favor especifique uma acção a iniciar!" @@ -2244,6 +2350,12 @@ msgstr "Da direita para a esquerda" msgid "Filters" msgstr "Filtros" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2264,7 +2376,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "Se não definido, atua como um valor padrão para novos registos." #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "Erro de recursão nas dependncias dos modulos" @@ -2294,6 +2412,11 @@ msgstr "" "Número de Contribuinte. Assinale se o parceiro é sujeito passivo de IVA. " "Usado na declaração de IVA." +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2346,11 +2469,6 @@ msgstr "Verificar EAN" msgid "VAT" msgstr "VAT" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2387,7 +2505,7 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2396,13 +2514,21 @@ msgstr "" "Não é possível cria o ficheiro do módulo:\n" "%s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Nauru" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "O ID do certificado do módulo tem de ser único!" @@ -2478,6 +2604,12 @@ msgstr "Enviar SMS" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2535,7 +2667,7 @@ msgid "Ecuador" msgstr "Equador" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2607,7 +2739,7 @@ msgid "Action to Trigger" msgstr "Acção a despoletar" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2810,18 +2942,13 @@ msgstr "Autor" msgid "FYROM" msgstr "Macedónia (ex-Jugoslávia)" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Procura avançada" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Aresentação apropriada da data e hora." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2867,7 +2994,7 @@ msgid "Rules" msgstr "Regras" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "Tentou eliminar um módulo que está instalado ou será instalado" @@ -2937,7 +3064,7 @@ msgid "Lesotho" msgstr "Lesoto" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "Não pode remover o modelo '%s'!" @@ -2967,6 +3094,12 @@ msgstr "" msgid "System Configuration Done" msgstr "Configuração do sistema concluída" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2998,7 +3131,7 @@ msgid "Benin" msgstr "Benim" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -3028,6 +3161,14 @@ msgstr "Cabeçalho RML" msgid "API ID" msgstr "ID da API" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3283,6 +3424,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "Nicarágua" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3568,7 +3715,8 @@ msgid "Bank Type" msgstr "Tipo de banco" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "O nome do grupo não pode começar com \"-\"" @@ -3590,7 +3738,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3610,7 +3758,7 @@ msgid "Flow Start" msgstr "Inicio do fluxo" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3643,7 +3791,9 @@ msgid "Guadeloupe (French)" msgstr "Guadalupe" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "Erro do utilizador" @@ -3721,6 +3871,11 @@ msgstr "" msgid "Cape Verde" msgstr "Cabo Verde" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "Selecione pacote do módulo a importar (ficheiro zip.)" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3734,6 +3889,12 @@ msgstr "Eventos" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3767,9 +3928,10 @@ msgid "French / Français" msgstr "Francês / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Menus criados" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -4019,6 +4181,14 @@ msgstr "Conselho" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -4059,8 +4229,8 @@ msgid "Project" msgstr "Projeto" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -4090,12 +4260,9 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Cliente" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "Auditoria" #. module: base #: model:res.country,name:base.lc @@ -4203,6 +4370,18 @@ msgstr "Vietname" msgid "Signature" msgstr "Assinatura" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4224,7 +4403,7 @@ msgid "False means for every user" msgstr "Falso significa para todos os utilizadores" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "O nome do módulo tem de ser único!" @@ -4265,9 +4444,11 @@ msgid "Contacts" msgstr "Contactos" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Ilhas Faroé" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4296,6 +4477,12 @@ msgstr "República Checa" msgid "Widget Wizard" msgstr "Assistente de Widget" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4342,15 +4529,9 @@ msgid "Mongolia" msgstr "Mongólia" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Erro" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Menus criados" #. module: base #: selection:ir.ui.view,type:0 @@ -4466,11 +4647,6 @@ msgstr "São Vicente & Granadinas" msgid "Password" msgstr "Senha" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "Ficheiro do Ícone" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4574,7 +4750,7 @@ msgid "Change My Preferences" msgstr "Alterar as minhas preferencias" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Nome de modelo inválido na definição da acção" @@ -4642,7 +4818,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4722,7 +4898,13 @@ msgid "Client Actions" msgstr "Ações do cliente" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4797,7 +4979,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Módulo %s: Certificado de qualidade inválido" @@ -4848,6 +5030,11 @@ msgstr "Enviar SMS" msgid "Accepted Users" msgstr "Urilizadores aceites" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4972,6 +5159,14 @@ msgstr "" msgid "Nepal" msgstr "Nepal" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -5004,7 +5199,7 @@ msgid "Update Modules List" msgstr "Atualizar a lista de módulos" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" @@ -5013,7 +5208,7 @@ msgstr "" "não satisfeita: %s" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5032,6 +5227,12 @@ msgstr "Continuar" msgid "Thai / ภาษาไทย" msgstr "Tailandês / ภาษาไทย" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5162,6 +5363,13 @@ msgstr "O nome completo do país" msgid "Iteration" msgstr "Iteração" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5200,7 +5408,12 @@ msgid "Solomon Islands" msgstr "Ilhas Salomão" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "Erro de acesso" @@ -5211,7 +5424,7 @@ msgid "Waiting" msgstr "A aguardar" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "Não pôde carregar o módulo base" @@ -5221,6 +5434,12 @@ msgstr "Não pôde carregar o módulo base" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5343,7 +5562,7 @@ msgid "ir.actions.todo" msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "Não foi encontrada a ação (ir.actions.todo) anterior" @@ -5417,17 +5636,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "O modelo %s não existe!" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "Não pode eliminar o idioma preferido de um utilizador." +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5436,7 +5661,7 @@ msgid "Python Code" msgstr "Código python" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "Não é possível criar o ficheiro do módulo: %s !" @@ -5557,7 +5782,7 @@ msgstr "" "\"form\" para outras." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5599,7 +5824,7 @@ msgstr "" "criar)." #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5816,7 +6041,7 @@ msgid "Afghanistan, Islamic State of" msgstr "Afeganistão" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Erro!" @@ -5837,6 +6062,12 @@ msgstr "Unidade do intervalo" msgid "Kind" msgstr "Tipo" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -6099,6 +6330,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "Para" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -6108,11 +6347,6 @@ msgstr "Para" msgid "Address" msgstr "Endereço" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6191,7 +6425,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "Saint Kitts & Nevis Anguilla" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6280,7 +6514,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6305,11 +6539,19 @@ msgid "Child IDs" msgstr "IDs filho" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problema na configuração `Record Id` na acção do servidor!" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6356,6 +6598,14 @@ msgstr "E-mail" msgid "Home Action" msgstr "Acção domestico" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6384,10 +6634,9 @@ msgid "Stop All" msgstr "Parar Tudo" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6438,7 +6687,7 @@ msgid "Start update" msgstr "Iniciar actualização" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6496,7 +6745,7 @@ msgid "HR Manager Dashboard" msgstr "Painel do gestor de RH" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6548,7 +6797,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "Os seguintes módulos não são conhecidos: %s" @@ -6629,7 +6878,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "O tamanho do campo nunca pode ser menor que 1 !" @@ -6667,6 +6923,12 @@ msgstr "Para" msgid "Arguments" msgstr "Argumentos" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6677,15 +6939,30 @@ msgstr "GPL Versão 2" msgid "GPL Version 3" msgstr "GPL Versão 3" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" -msgstr "Auditoria" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Cliente" #. module: base #: selection:base.language.install,lang:0 @@ -6790,7 +7067,7 @@ msgid "Copy Object" msgstr "Copiar objeto" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6843,6 +7120,15 @@ msgstr "Referencia da tabela" msgid "Object" msgstr "Objecto" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6878,7 +7164,7 @@ msgid "User Ref." msgstr "Ref. do utilizador" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "Aviso!" @@ -7019,7 +7305,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7077,7 +7363,7 @@ msgid "Action Type" msgstr "Tipo de acção" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7182,11 +7468,23 @@ msgstr "Código do país" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7363,6 +7661,11 @@ msgstr "Enviar e-mail" msgid "Menu Action" msgstr "Menu acção" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Ilhas Faroé" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7503,7 +7806,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7701,7 +8004,7 @@ msgid "Account No." msgstr "Nº da conta" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "O idioma base \"en_US\" não pode ser eliminado!" @@ -7745,6 +8048,14 @@ msgstr "Valor da tradução" msgid "Antigua and Barbuda" msgstr "Antígua e Barbuda" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7803,7 +8114,7 @@ msgid "Auto-Refresh" msgstr "Auto-refrescar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7815,6 +8126,11 @@ msgstr "" msgid "Diagram" msgstr "Diagrama" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Ilhas Wallis e Futuna" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7871,6 +8187,35 @@ msgstr "Código de identifição bancária" msgid "Turkmenistan" msgstr "Turquemenistão" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Erro" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7999,7 +8344,7 @@ msgid "Internal Header/Footer" msgstr "Cabeçalho/rodapé interno" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -8040,6 +8385,14 @@ msgstr "República Dominicana" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -8065,7 +8418,7 @@ msgid "Event Logs" msgstr "Registo dos Eventos" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "configuração do sistema pronta" @@ -8112,11 +8465,18 @@ msgid "Low" msgstr "Baixo" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Erro ! Você não pode criar menus recursivamente." +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -8127,7 +8487,7 @@ msgstr "" "são combinados com o operador lógico \"OU\"" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8281,7 +8641,7 @@ msgid "View Auto-Load" msgstr "Ver auto-carregamento" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Não pode eliminar o campo '%s'!" @@ -8293,6 +8653,11 @@ msgstr "Não pode eliminar o campo '%s'!" msgid "Resource" msgstr "Recurso" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8304,7 +8669,7 @@ msgid "View Ordering" msgstr "Ordem da vista" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "Dependência não encontrada!" @@ -8316,6 +8681,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8440,7 +8813,7 @@ msgid "Azerbaijan" msgstr "Azerbeijão" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Aviso" @@ -8467,9 +8840,9 @@ msgid "Czech / Čeština" msgstr "Checo / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Ilhas Wallis e Futuna" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Procura avançada" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8774,7 +9147,7 @@ msgid "Account Owner" msgstr "Dono da conta" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8834,7 +9207,7 @@ msgid "Workflow Instances" msgstr "Intancias do fluxo de trabalho" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Parceiros: " @@ -9709,8 +10082,8 @@ msgstr "Russo / русский язык" #~ msgstr "%j - Dia do ano como número decimal [001,366]." #, python-format -#~ msgid "The unlink method is not implemented on this object !" -#~ msgstr "O método remover (unlink) não está implementado neste objecto!" +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Não pode criar este tipo de documento! (%s)" #, python-format #~ msgid "Password mismatch !" @@ -9786,6 +10159,10 @@ msgstr "Russo / русский язык" #~ msgid "STOCK_REMOVE" #~ msgstr "STOCK_REMOVE" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Não pode ler este documento! (%s)" + #~ msgid "STOCK_COPY" #~ msgstr "STOCK_COPY" @@ -9819,6 +10196,10 @@ msgstr "Russo / русский язык" #~ msgid "STOCK_NO" #~ msgstr "STOCK_NO" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Não pode escrever neste documento! (%s)" + #~ msgid "Confirmation" #~ msgstr "Confirmação" @@ -9835,6 +10216,10 @@ msgstr "Russo / русский язык" #~ msgid "Installation Done" #~ msgstr "Instalação concluida" +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Não pode apagar este documento! (%s)" + #~ msgid "STOCK_OPEN" #~ msgstr "STOCK_OPEN" @@ -10358,9 +10743,15 @@ msgstr "Russo / русский язык" #~ msgid "You cannot have two users with the same login !" #~ msgstr "Não pode ter dois utilizadores com o mesmo código de acesso!" +#~ msgid "Web Icons" +#~ msgstr "Ícones Web" + #~ msgid "Maintenance Contracts" #~ msgstr "Contratos de manutenção" +#~ msgid "Icon File" +#~ msgstr "Ficheiro do Ícone" + #~ msgid "" #~ "Would your payment have been carried out after this mail was sent, please " #~ "consider the present one as void. Do not hesitate to contact our accounting " diff --git a/bin/addons/base/i18n/pt_BR.po b/bin/addons/base/i18n/pt_BR.po index 0dc66ab7eec..6efbc2354bd 100644 --- a/bin/addons/base/i18n/pt_BR.po +++ b/bin/addons/base/i18n/pt_BR.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: pt_BR\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-17 08:54+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" +"PO-Revision-Date: 2010-12-31 08:59+0000\n" "Last-Translator: Cristiano Korndörfer \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:59+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:00+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,14 @@ msgstr "Outras configurações" msgid "DateTime" msgstr "Data/Hora" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +60,6 @@ msgstr "Metadados" msgid "View Architecture" msgstr "Ver Arquitetura" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Você não pode criar este tipo de documento! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +110,14 @@ msgstr "Exibir dicas" msgid "Created Views" msgstr "Views Criadas" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,11 +134,10 @@ msgid "South Korea" msgstr "Coreia do Sul" #. 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 "Transições" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -140,13 +149,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Suíça" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "Fornecedores de madeira" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -177,14 +193,14 @@ msgid "Search Partner" msgstr "Buscar Parceiro" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" "\"smtp_server\" necessita enviar configuração de emails para os usuários" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "novo" @@ -215,7 +231,7 @@ msgid "Contact Name" msgstr "Nome do Contato" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -239,6 +255,12 @@ msgstr "ativo" msgid "Wizard Name" msgstr "Nome do Assistente" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -271,7 +293,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "Widget" @@ -322,7 +343,7 @@ msgid "Netherlands Antilles" msgstr "Antílhas Holandesas" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -347,11 +368,6 @@ msgstr "Grego / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "Bósnia" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "Ícones Web" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -361,6 +377,12 @@ msgstr "" "Se marcar esta opção, na segunda vez que usar a impressora com o mesmo " "anexo, usará a impressora anterior" +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -387,6 +409,12 @@ msgstr "Colômbia" msgid "Schedule Upgrade" msgstr "Agendar Atualização" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -431,7 +459,7 @@ msgid "Miscellaneous Suppliers" msgstr "Fornecedores diversos" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Campos customizados precisam ter nomes que começam com 'x_'!" @@ -571,7 +599,7 @@ msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_crm_config_opportunity msgid "Opportunities" -msgstr "" +msgstr "Oportunidades" #. module: base #: model:ir.model,name:base.model_base_language_export @@ -688,6 +716,12 @@ msgstr "" "Configura o idioma para a interface do usuário, quando a tradução para a " "interface estiver disponível" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -752,6 +786,14 @@ msgstr "%B - Nome do mes completo" msgid "Type" msgstr "Tipo" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -778,6 +820,19 @@ msgstr "XML inválido para Arquitetura da View" msgid "Cayman Islands" msgstr "Ilhas Cayman" +#. 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 "Transições" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -792,7 +847,7 @@ msgstr "Caractere" #: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_form #: model:ir.ui.menu,name:base.menu_publisher_warranty_contract msgid "Contracts" -msgstr "" +msgstr "Contratos" #. module: base #: selection:base.language.install,lang:0 @@ -888,6 +943,16 @@ msgstr "Haití" msgid "Search" msgstr "Pesquisar" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -944,16 +1009,16 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "Não existe idioma para o código \"%s\"" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." -msgstr "" +msgstr "Erro durante a comunicação com o servidor de garantia." #. module: base #: help:ir.actions.server,email:0 @@ -970,7 +1035,7 @@ msgstr "" #. module: base #: view:res.lang:0 msgid "%Y - Year with century." -msgstr "" +msgstr "%Y - Ano (4 dígitos)" #. module: base #: report:ir.module.reference.graph:0 @@ -985,6 +1050,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1034,7 +1105,7 @@ msgid "On Create" msgstr "Na Criação" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1155,12 +1226,6 @@ msgstr "ID do anexo" msgid "Day: %(day)s" msgstr "Dia: %(day)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Você não pode ler este documento! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1208,8 +1273,8 @@ msgstr "" "object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (cópia)" @@ -1289,7 +1354,7 @@ msgid "Formula" msgstr "Fórmula" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "Não posso remover o usuário root!" @@ -1300,7 +1365,8 @@ msgid "Malawi" msgstr "Malawi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "%s (cópia)" @@ -1352,7 +1418,6 @@ msgstr "Visão em árvore" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "Deixe vazio se voce não quer que o usuário conecte no sistema." @@ -1381,6 +1446,12 @@ msgstr "" "Ao usar o formato CSV, verifique se a primeira linha do seu arquivo contem " "um dos seguintes procedimentos:" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1435,7 +1506,7 @@ msgid "Bahamas" msgstr "Barramas" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1457,6 +1528,12 @@ msgstr "Irlanda" msgid "Number of modules updated" msgstr "Número de módulos atualizados" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1536,6 +1613,12 @@ msgstr "" "Lista separada por virgula, permite modos de visão como 'form', 'tree', " "'calendar', etc. (Default: tree,form)" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1608,7 +1691,7 @@ msgid "Madagascar" msgstr "Madadascar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1698,12 +1781,6 @@ msgstr "Endereço de E-mail" msgid "French (BE) / Français (BE)" msgstr "Frances(BE) / Frances(BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Voce não pode atualizar este documento! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1776,23 +1853,35 @@ msgstr "" "Nome do objeto cuja função será chamada quando o agendador for executado. " "por exemplo \"res.partner '" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." -msgstr "" +msgstr "%y - Ano (2 dígitos) [00,99]." #. module: base #: model:res.country,name:base.si msgid "Slovenia" msgstr "Eslovênia" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "Mensagens" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "Erro!" @@ -1822,6 +1911,14 @@ msgstr "Data final" msgid "New Zealand" msgstr "Nova Zelândia" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1874,19 +1971,13 @@ msgstr "Erro! Voce não pode criar empresas recursivas" msgid "Valid" msgstr "Válido" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Você não pode excluir este documento! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "Impossível atualizar o módulo '%s'. Ele não está instalado." @@ -1960,7 +2051,7 @@ msgstr "Configuração da ação de iteração" #. module: base #: selection:publisher_warranty.contract,state:0 msgid "Canceled" -msgstr "" +msgstr "Cancelado" #. module: base #: model:res.country,name:base.at @@ -1997,6 +2088,15 @@ msgstr "Sinal (subfluxo.*)" msgid "HR sector" msgstr "Setor de RH" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -2053,6 +2153,11 @@ msgstr "Dependências" msgid "Main Company" msgstr "Empresa Principal" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2143,9 +2248,10 @@ msgid "Sir" msgstr "Sr." #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" -msgstr "Selecione pacote do módulo para importar (arquivo zip.)" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" +msgstr "" #. module: base #: field:ir.default,ref_id:0 @@ -2243,7 +2349,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "Especifique uma ação a ser disparada !" @@ -2267,6 +2373,12 @@ msgstr "Direita-para-esquerda" msgid "Filters" msgstr "Filtros" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2287,7 +2399,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "Se não for definido, atua como um valor padrão para novos recursos" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "Erro de recursão nas dependências dos módulos !" @@ -2317,6 +2435,11 @@ msgstr "" "Valor do imposto adicionado. Marque a caixa se o parceiro está sujeito ao " "imposto. Usado para impostos oficiais." +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2369,11 +2492,6 @@ msgstr "Verificar EAN" msgid "VAT" msgstr "Imposto" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2410,7 +2528,7 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2419,13 +2537,21 @@ msgstr "" "Não posso criar o arquivo de módulo:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Nauru" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "O ID do certificado do módulo deve ser único !" @@ -2504,6 +2630,12 @@ msgstr "Enviar SMS" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2561,7 +2693,7 @@ msgid "Ecuador" msgstr "Equador" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2632,7 +2764,7 @@ msgid "Action to Trigger" msgstr "Ação a Disparar" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2835,18 +2967,13 @@ msgstr "Autor" msgid "FYROM" msgstr "De" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Pesquisa avançada" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - representação adequada para Data e hora." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2892,7 +3019,7 @@ msgid "Rules" msgstr "Regras" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2963,7 +3090,7 @@ msgid "Lesotho" msgstr "Lesoto" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "Você não pode remover este modelo '%s' !" @@ -2993,6 +3120,12 @@ msgstr "" msgid "System Configuration Done" msgstr "Configuração concluída" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -3024,10 +3157,10 @@ msgid "Benin" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." -msgstr "" +msgstr "Esse contrato já está registrado no sistema." #. module: base #: help:ir.sequence,suffix:0 @@ -3054,6 +3187,14 @@ msgstr "Cabeçalho RML" msgid "API ID" msgstr "API ID" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3304,6 +3445,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "Nicarágua" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3590,7 +3737,8 @@ msgid "Bank Type" msgstr "Tipo de banco" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "Nome do grupo não pode iniciar com \"-\"" @@ -3612,7 +3760,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3632,7 +3780,7 @@ msgid "Flow Start" msgstr "Iniciar fluxo" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3665,7 +3813,9 @@ msgid "Guadeloupe (French)" msgstr "Guadalupe (em francês)" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "Erro de usuário" @@ -3743,6 +3893,11 @@ msgstr "" msgid "Cape Verde" msgstr "Cabo Verde" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "Selecione pacote do módulo para importar (arquivo zip.)" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3756,6 +3911,12 @@ msgstr "Eventos" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3789,9 +3950,10 @@ msgid "French / Français" msgstr "Francês / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Menus criados" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -4041,6 +4203,14 @@ msgstr "Advertência" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -4081,8 +4251,8 @@ msgid "Project" msgstr "Projeto" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -4112,12 +4282,9 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Cliente" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "" #. module: base #: model:res.country,name:base.lc @@ -4225,6 +4392,18 @@ msgstr "Vietnã" msgid "Signature" msgstr "Assinatura" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4246,7 +4425,7 @@ msgid "False means for every user" msgstr "Falso significa para todos os usuários" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "O nome do módulo deve ser único!" @@ -4287,9 +4466,11 @@ msgid "Contacts" msgstr "Contatos" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Ilhas Feroé" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4318,6 +4499,12 @@ msgstr "República Tcheca" msgid "Widget Wizard" msgstr "Assistente de Widget" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4364,15 +4551,9 @@ msgid "Mongolia" msgstr "Mongólia" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Erro" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Menus criados" #. module: base #: selection:ir.ui.view,type:0 @@ -4454,7 +4635,7 @@ msgstr "res.config.view" #: view:res.log:0 #: field:res.log,read:0 msgid "Read" -msgstr "Leia" +msgstr "Lido" #. module: base #: sql_constraint:res.country:0 @@ -4488,11 +4669,6 @@ msgstr "Saint Vincent & Grenadines" msgid "Password" msgstr "Senha" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "Arquivo de Ícone" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4513,6 +4689,7 @@ msgstr "Colaboradores" msgid "" "If this log item has been read, get() should not send it to the client" msgstr "" +"Se este item de registro foi lido, get () não deve enviá-lo para o cliente." #. module: base #: field:res.company,rml_header2:0 @@ -4596,7 +4773,7 @@ msgid "Change My Preferences" msgstr "Alterar Preferências" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Nome do modelo inválido na definição da ação." @@ -4664,7 +4841,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4747,7 +4924,13 @@ msgid "Client Actions" msgstr "Ações do Cliente" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4822,7 +5005,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Módulo %s: Certificado de qualidad inválido" @@ -4873,6 +5056,11 @@ msgstr "Enviar SMS" msgid "Accepted Users" msgstr "Usuários Permitidos" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4967,7 +5155,7 @@ msgstr "Dominica" #: sql_constraint:publisher_warranty.contract:0 msgid "" "Your publisher warranty contract is already subscribed in the system !" -msgstr "" +msgstr "Seu contrato de garantia já está inscrito no sistema!" #. module: base #: help:ir.cron,nextcall:0 @@ -4990,6 +5178,14 @@ msgstr "" msgid "Nepal" msgstr "Nepal" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -5022,7 +5218,7 @@ msgid "Update Modules List" msgstr "Atualizar lista de módulos" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" @@ -5031,7 +5227,7 @@ msgstr "" "não satisfeita: %s" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5050,6 +5246,12 @@ msgstr "Continuar" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5180,6 +5382,13 @@ msgstr "O nome completo do país" msgid "Iteration" msgstr "Iteração" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5218,7 +5427,12 @@ msgid "Solomon Islands" msgstr "Ilhas Salomão" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "AccessError" @@ -5229,7 +5443,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5239,6 +5453,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5356,7 +5576,7 @@ msgid "ir.actions.todo" msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "Não foi encontrado a ir.actions.todo anterior" @@ -5430,17 +5650,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5449,7 +5675,7 @@ msgid "Python Code" msgstr "Código Python" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "Impossível criar o arquivo de módulo: %s !" @@ -5548,7 +5774,7 @@ msgstr "Semana do ano: %(woy)s" #. module: base #: model:res.partner.category,name:base.res_partner_category_14 msgid "Bad customers" -msgstr "Cliente ruim" +msgstr "Clientes ruins" #. module: base #: report:ir.module.reference.graph:0 @@ -5568,7 +5794,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5608,7 +5834,7 @@ msgstr "" "Selecione o objeto sobre o qual a ação irá atuar (ler, escrever, criar)" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5820,7 +6046,7 @@ msgid "Afghanistan, Islamic State of" msgstr "Afeganistão" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Erro!" @@ -5841,6 +6067,12 @@ msgstr "Intervalo de unidade" msgid "Kind" msgstr "Tipo" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -6098,6 +6330,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -6107,11 +6347,6 @@ msgstr "" msgid "Address" msgstr "Endereço" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6190,7 +6425,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "Saint Kitts & Nevis Anguilla" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6275,7 +6510,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6296,11 +6531,19 @@ msgid "Child IDs" msgstr "IDs filhos" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Prbolemas na configuracao do 'id do registro' na ação do servidor!" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "ErroDeValidação" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6347,6 +6590,14 @@ msgstr "E-mail" msgid "Home Action" msgstr "Ação Inicial" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6375,10 +6626,9 @@ msgid "Stop All" msgstr "Parar todos" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6429,7 +6679,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6488,7 +6738,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6540,7 +6790,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6621,7 +6871,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6659,6 +6916,12 @@ msgstr "Para" msgid "Arguments" msgstr "Argumentos" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6669,16 +6932,31 @@ msgstr "GPL Versão 2" msgid "GPL Version 3" msgstr "GPL Versão 3" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" msgstr "" +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Cliente" + #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (NI) / Español (NI)" @@ -6782,7 +7060,7 @@ msgid "Copy Object" msgstr "Copiar Objeto" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6833,6 +7111,15 @@ msgstr "Ref. Tabela" msgid "Object" msgstr "Objeto" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6848,7 +7135,7 @@ msgstr "Minuto: %(min)s" #: model:ir.actions.act_window,name:base.action_wizard_update_translations #: model:ir.ui.menu,name:base.menu_wizard_update_translations msgid "Synchronize Translations" -msgstr "" +msgstr "Sincronizar Traduções" #. module: base #: model:ir.ui.menu,name:base.next_id_10 @@ -6868,7 +7155,7 @@ msgid "User Ref." msgstr "Ref. Usuário" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "Aviso !" @@ -7009,7 +7296,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7066,7 +7353,7 @@ msgid "Action Type" msgstr "Tipo de ação" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7169,11 +7456,23 @@ msgstr "Código do País" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7351,6 +7650,11 @@ msgstr "Enviar email" msgid "Menu Action" msgstr "Menu Ação" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Ilhas Feroé" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7488,7 +7792,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7689,7 +7993,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7733,6 +8037,14 @@ msgstr "Texto traduzido" msgid "Antigua and Barbuda" msgstr "Antígua e Barbuda" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7791,7 +8103,7 @@ msgid "Auto-Refresh" msgstr "Auto-atualizar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7801,6 +8113,11 @@ msgstr "" msgid "Diagram" msgstr "Diagrama" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Ilhas Wallis e Futuna" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7857,6 +8174,35 @@ msgstr "Codigo de Identificação do Banco" msgid "Turkmenistan" msgstr "Turcomenistão" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Erro" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7985,7 +8331,7 @@ msgid "Internal Header/Footer" msgstr "Cabeçalho/Rodapé interno" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -8026,6 +8372,14 @@ msgstr "República Dominicana" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -8051,7 +8405,7 @@ msgid "Event Logs" msgstr "Logs de Evento" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -8098,11 +8452,18 @@ msgid "Low" msgstr "Baixo" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Erro ! Você não pode criar menu recursivo." +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -8111,7 +8472,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8265,7 +8626,7 @@ msgid "View Auto-Load" msgstr "Auto-carregar Visão" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8277,6 +8638,11 @@ msgstr "" msgid "Resource" msgstr "Recurso" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8288,7 +8654,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8300,6 +8666,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8424,7 +8798,7 @@ msgid "Azerbaijan" msgstr "Azerbaijão" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Aviso" @@ -8451,9 +8825,9 @@ msgid "Czech / Čeština" msgstr "Czech / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Ilhas Wallis e Futuna" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Pesquisa avançada" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8756,7 +9130,7 @@ msgid "Account Owner" msgstr "Titular da Conta" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8816,7 +9190,7 @@ msgid "Workflow Instances" msgstr "Instancia do workflow" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Parceiros " @@ -9920,6 +10294,10 @@ msgstr "Russo / русский язык" #~ "password." #~ msgstr "Por favor, voce precisará fazer um logout se voce trocou sua senha." +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Você não pode criar este tipo de documento! (%s)" + #~ msgid "txt" #~ msgstr "txt" @@ -9939,6 +10317,10 @@ msgstr "Russo / русский язык" #~ msgid "Pie charts need exactly two fields" #~ msgstr "Gráfico de pizza necessita de dois campos" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Você não pode ler este documento! (%s)" + #~ msgid "Commercial Prospect" #~ msgstr "Prospecção Comercial" @@ -10153,6 +10535,10 @@ msgstr "Russo / русский язык" #~ msgid "Covered Modules" #~ msgstr "Módulos cobertos" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Voce não pode atualizar este documento! (%s)" + #~ msgid "Confirmation" #~ msgstr "Confirmação" @@ -10160,6 +10546,10 @@ msgstr "Russo / русский язык" #~ msgid "Enter at least one field !" #~ msgstr "Digite pelo menos um campo !" +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Você não pode excluir este documento! (%s)" + #~ msgid "Installation Done" #~ msgstr "Instalação concluída" @@ -10504,10 +10894,6 @@ msgstr "Russo / русский язык" #~ msgid "Cannot create invoice without a partner." #~ msgstr "Não é permitido criar nota fiscal sem um parceiro." -#, python-format -#~ msgid "ValidateError" -#~ msgstr "ErroDeValidação" - #, python-format #~ msgid "No Related Models!!" #~ msgstr "Nenhum Modelo Relacionado!!" @@ -10813,3 +11199,9 @@ msgstr "Russo / русский язык" #~ "\"Email_from\" precisa ser configurado para enviar e-mails de boas vindas " #~ "\"\n" #~ " 'aos usuários" + +#~ msgid "Web Icons" +#~ msgstr "Ícones Web" + +#~ msgid "Icon File" +#~ msgstr "Arquivo de Ícone" diff --git a/bin/addons/base/i18n/ro.po b/bin/addons/base/i18n/ro.po index 823fe43e18c..2b94b371e5d 100644 --- a/bin/addons/base/i18n/ro.po +++ b/bin/addons/base/i18n/ro.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-10 07:53+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:57+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:19+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,14 @@ msgstr "Altă configuraţie" msgid "DateTime" msgstr "DateTime" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +60,6 @@ msgstr "Metadate" msgid "View Architecture" msgstr "Alcatuirea afisarii" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Nu puteti crea acest tip de document! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +110,14 @@ msgstr "" msgid "Created Views" msgstr "Afisari Create" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,11 +134,10 @@ msgid "South Korea" msgstr "Coreea de Sud" #. 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 "Tranzitii" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -140,13 +149,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Elvetia" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "Furnizori de lemn" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -178,7 +194,7 @@ msgid "Search Partner" msgstr "Cautare Partener" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" @@ -186,7 +202,7 @@ msgstr "" "utilizatori" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "nou" @@ -217,7 +233,7 @@ msgid "Contact Name" msgstr "Contact" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -241,6 +257,12 @@ msgstr "activ" msgid "Wizard Name" msgstr "Nume Asistent" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -273,7 +295,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -324,7 +345,7 @@ msgid "Netherlands Antilles" msgstr "Antilele Olandeze" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -348,11 +369,6 @@ msgstr "Greacă / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "Bosniaca / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -362,6 +378,12 @@ msgstr "" "Dacă bifaţi, atunci când utilizatorul va tipări pentru a doua oară cu " "acelaşi nume de ataşament, va primi , de fapt, raportul anterior." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -388,6 +410,12 @@ msgstr "Columbia" msgid "Schedule Upgrade" msgstr "Planificare actualizare" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -431,7 +459,7 @@ msgid "Miscellaneous Suppliers" msgstr "Furnizori diverşi" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Câmpurile client trebuie să aibă la inceputul numelui 'x_' !" @@ -691,6 +719,12 @@ msgstr "" "Setează limba folosită în cadrul interfeței utilizaor, atunci când sunt " "disponibile mai multe traduceri" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -755,6 +789,14 @@ msgstr "%B - Denumirea completa a lunii." msgid "Type" msgstr "Tip" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -781,6 +823,19 @@ msgstr "Fișierul XML pentru arhitectura planului vizual nu este valid!" msgid "Cayman Islands" msgstr "Insulele Cayman" +#. 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 "Tranzitii" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -888,6 +943,16 @@ msgstr "Haiti" msgid "Search" msgstr "Căutare" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -944,13 +1009,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "Nu există nici o limbă cu codul \"%s\"" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -984,6 +1049,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1033,7 +1104,7 @@ msgid "On Create" msgstr "In creare" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1137,12 +1208,6 @@ msgstr "ID-ul atașat" msgid "Day: %(day)s" msgstr "Ziua: %(zi)le" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Nu puteţi citi acest document ! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1185,8 +1250,8 @@ msgstr "" "object.list_price > object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (copie)" @@ -1266,7 +1331,7 @@ msgid "Formula" msgstr "Formula" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "Nu este posibilă ştergerea utilizatorului 'root' !" @@ -1277,7 +1342,8 @@ msgid "Malawi" msgstr "Malawi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "%s (copy)" @@ -1329,7 +1395,6 @@ msgstr "" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1360,6 +1425,12 @@ msgstr "" "Atunci când folosiți formatul CSV, vă rugăm să verificați că prima linie din " "fișier este identică cu una dintre următoarele :" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1413,7 +1484,7 @@ msgid "Bahamas" msgstr "Bahamas" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1436,6 +1507,12 @@ msgstr "Irlanda" msgid "Number of modules updated" msgstr "Numărul modulelor actualizate" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1518,6 +1595,12 @@ msgstr "" "Lista (cu elemente separate prin virgule) a modurilor de vizializare " "permise, cum sunt 'form', 'tree', 'calendar', etc. (Implicit: tree,form)" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1587,7 +1670,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1676,12 +1759,6 @@ msgstr "Adresă de email" msgid "French (BE) / Français (BE)" msgstr "Franceză (BE) / Français (BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Nu puteţi scrie în acest document (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1752,6 +1829,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1762,13 +1845,19 @@ msgstr "" msgid "Slovenia" msgstr "Slovenia" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "Mesaje" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "Eroare!" @@ -1798,6 +1887,14 @@ msgstr "Data de sfârşit" msgid "New Zealand" msgstr "Noua Zeelandă" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1847,19 +1944,13 @@ msgstr "Eroare ! Nu este posibilă crearea de companii recursive." msgid "Valid" msgstr "Valid" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Nu puteţi şterge acest document ! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "Modulul '%s' nu poate fi actualizat. Nu este instalat." @@ -1970,6 +2061,15 @@ msgstr "Semnal (subflow.*)" msgid "HR sector" msgstr "Sectorul HR" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -2023,6 +2123,11 @@ msgstr "Dependinţe" msgid "Main Company" msgstr "Compania mama" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2111,9 +2216,10 @@ msgid "Sir" msgstr "Domnul" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" -msgstr "Selectați modului care va fi importat (fișier .zip):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" +msgstr "" #. module: base #: field:ir.default,ref_id:0 @@ -2211,7 +2317,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "Specificaţi o acţiune care să fie lansată !" @@ -2235,6 +2341,12 @@ msgstr "De la dreapta la stânga" msgid "Filters" msgstr "Filtre" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2255,7 +2367,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "Eroare de recursivitate în dependenţele modulelor!" @@ -2283,6 +2401,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2335,11 +2458,6 @@ msgstr "Verificare cod EAN" msgid "VAT" msgstr "TVA" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2376,7 +2494,7 @@ msgid "M." msgstr "Dl." #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2385,13 +2503,21 @@ msgstr "" "Nu poate fi creat fișierul corespunzătoru modulului:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Nauru" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2467,6 +2593,12 @@ msgstr "Trimitere SMS" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2524,7 +2656,7 @@ msgid "Ecuador" msgstr "Ecuador" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2590,7 +2722,7 @@ msgid "Action to Trigger" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2785,18 +2917,13 @@ msgstr "Autor" msgid "FYROM" msgstr "FYROM (Macedonia)" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Căutare avansată" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Reprezentarea adecvată a datei şi orei" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2842,7 +2969,7 @@ msgid "Rules" msgstr "Reguli" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2914,7 +3041,7 @@ msgid "Lesotho" msgstr "Lesoto" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "Nu puteti inlatura modelul '%s' !" @@ -2944,6 +3071,12 @@ msgstr "Abkhazian / аҧсуа" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2975,7 +3108,7 @@ msgid "Benin" msgstr "Benin" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -3005,6 +3138,14 @@ msgstr "RML Header" msgid "API ID" msgstr "API ID" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3250,6 +3391,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "Nicaragua" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3530,7 +3677,8 @@ msgid "Bank Type" msgstr "Tip Bancă" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "Numele grupului nu poate incepe cu \"-\"" @@ -3552,7 +3700,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "Gujarati / ગુજરાતી" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3570,7 +3718,7 @@ msgid "Flow Start" msgstr "Flux - Start" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3602,7 +3750,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "Eroare utilizator" @@ -3677,6 +3827,11 @@ msgstr "" msgid "Cape Verde" msgstr "Capul Verde" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "Selectați modului care va fi importat (fișier .zip):" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3690,6 +3845,12 @@ msgstr "Evenimente" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3723,9 +3884,10 @@ msgid "French / Français" msgstr "Franceză / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Meniuri create" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -3975,6 +4137,14 @@ msgstr "Sfat" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -4013,8 +4183,8 @@ msgid "Project" msgstr "Proiect" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -4044,12 +4214,9 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Client" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "Audit" #. module: base #: model:res.country,name:base.lc @@ -4157,6 +4324,18 @@ msgstr "Vietnam" msgid "Signature" msgstr "Semnătura" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4178,7 +4357,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "Numele modulului trebuie să fie unic !" @@ -4219,9 +4398,11 @@ msgid "Contacts" msgstr "Adresa" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Insulele Feroe" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4250,6 +4431,12 @@ msgstr "Cehia" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4294,15 +4481,9 @@ msgid "Mongolia" msgstr "Mongolia" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Eroare" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Meniuri create" #. module: base #: selection:ir.ui.view,type:0 @@ -4416,11 +4597,6 @@ msgstr "Saint Vincent & Grenadines" msgid "Password" msgstr "Parola" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "Icon" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4520,7 +4696,7 @@ msgid "Change My Preferences" msgstr "Modificare preferinţe" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Nume invalid de model în definirea acțiunii." @@ -4588,7 +4764,7 @@ msgid "Raphaël Valyi's tweets" msgstr "Raphaël Valyi's tweets" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4666,7 +4842,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4739,7 +4921,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Modul %s: Certificat de calitate invalid" @@ -4790,6 +4972,11 @@ msgstr "Trimitere SMS" msgid "Accepted Users" msgstr "Utilizatori acceptaţi" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4906,6 +5093,14 @@ msgstr "Olivier Dony's tweets" msgid "Nepal" msgstr "Nepal" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4935,14 +5130,14 @@ msgid "Update Modules List" msgstr "Actualizarea listei de module" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4961,6 +5156,12 @@ msgstr "Continuare" msgid "Thai / ภาษาไทย" msgstr "Thai / ภาษาไทย" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5091,6 +5292,13 @@ msgstr "Numele întreg al ţării" msgid "Iteration" msgstr "Iteraţia" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5131,7 +5339,12 @@ msgid "Solomon Islands" msgstr "Insulele Solomon" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "AccessError" @@ -5142,7 +5355,7 @@ msgid "Waiting" msgstr "În așteptare" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "Modulul de bază nu a putut fi încărcat" @@ -5152,6 +5365,12 @@ msgstr "Modulul de bază nu a putut fi încărcat" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5269,7 +5488,7 @@ msgid "ir.actions.todo" msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "Nu a putut fi găsit precedentul ir.actions.todo" @@ -5343,17 +5562,23 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "Modelul %s nu există !" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5362,7 +5587,7 @@ msgid "Python Code" msgstr "Cod Python" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "Fisierul modulului %s nu poate fi creat !" @@ -5481,7 +5706,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5520,7 +5745,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5732,7 +5957,7 @@ msgid "Afghanistan, Islamic State of" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "" @@ -5753,6 +5978,12 @@ msgstr "" msgid "Kind" msgstr "Gen" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -6008,6 +6239,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -6017,11 +6256,6 @@ msgstr "" msgid "Address" msgstr "Adresa" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6100,7 +6334,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "Federaţia Saint Kitts & Nevis Anguilla" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6186,7 +6420,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6209,11 +6443,19 @@ msgid "Child IDs" msgstr "ID- urile copil" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6260,6 +6502,14 @@ msgstr "Email" msgid "Home Action" msgstr "Actiuni" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6288,10 +6538,9 @@ msgid "Stop All" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6342,7 +6591,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6400,7 +6649,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6452,7 +6701,7 @@ msgid "Module Update" msgstr "Actualizare modul" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "Modulele următoare nu există sau nu sunt instalate: %s" @@ -6533,7 +6782,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "Numele real al noului utilizator, folosit la căutare și la listare" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "Lungimea acestui câmp trebui să fie cel puțin 1 !" @@ -6571,6 +6827,12 @@ msgstr "Cerere pentru" msgid "Arguments" msgstr "Argumente" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6581,15 +6843,30 @@ msgstr "GPL Version 2" msgid "GPL Version 3" msgstr "GPL Version 3" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" -msgstr "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Client" #. module: base #: selection:base.language.install,lang:0 @@ -6694,7 +6971,7 @@ msgid "Copy Object" msgstr "Copiere obiect" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6747,6 +7024,15 @@ msgstr "Tabela de Ref." msgid "Object" msgstr "Obiect" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6784,7 +7070,7 @@ msgid "User Ref." msgstr "Ref. utilisator" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "Atenţie !" @@ -6925,7 +7211,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "Criterii de căutare invalide" @@ -6983,7 +7269,7 @@ msgid "Action Type" msgstr "Tipul acţiunii" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7091,11 +7377,23 @@ msgstr "Cod tara" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7270,6 +7568,11 @@ msgstr "Trimitere email" msgid "Menu Action" msgstr "Acţiune meniu" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Insulele Feroe" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7407,7 +7710,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7605,7 +7908,7 @@ msgid "Account No." msgstr "Nr. cont" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Limba 'en_US' nu poate fi ștearsă !" @@ -7649,6 +7952,14 @@ msgstr "Suma tranzactiei" msgid "Antigua and Barbuda" msgstr "Antigua si Barbuda" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7707,7 +8018,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7717,6 +8028,11 @@ msgstr "" msgid "Diagram" msgstr "Diagramă" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Insulele Wallis şi Futuna" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7773,6 +8089,35 @@ msgstr "" msgid "Turkmenistan" msgstr "Turkmenistan" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Eroare" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7901,7 +8246,7 @@ msgid "Internal Header/Footer" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7942,6 +8287,14 @@ msgstr "Republica Dominicană" msgid "Serbian (Cyrillic) / српски" msgstr "Sârbă (Cyrillic) / српски" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7965,7 +8318,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -8012,11 +8365,18 @@ msgid "Low" msgstr "Scăzut" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -8025,7 +8385,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8179,7 +8539,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Câmpul '%s' nu poate fi șters !" @@ -8191,6 +8551,11 @@ msgstr "Câmpul '%s' nu poate fi șters !" msgid "Resource" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8202,7 +8567,7 @@ msgid "View Ordering" msgstr "Ordinea de afișare" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "Dependență nesatisfăcută !" @@ -8216,6 +8581,14 @@ msgstr "" "Tipurile de fișier suportate sunt: *.csv (Comma-separated values) și *.po " "(GetText Portable Objects)" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8340,7 +8713,7 @@ msgid "Azerbaijan" msgstr "Azerbaidjan" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Atenție" @@ -8367,9 +8740,9 @@ msgid "Czech / Čeština" msgstr "Cehă / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Insulele Wallis şi Futuna" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Căutare avansată" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8668,7 +9041,7 @@ msgid "Account Owner" msgstr "Titularul contului" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8730,7 +9103,7 @@ msgid "Workflow Instances" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Parteneri: " @@ -8880,6 +9253,10 @@ msgstr "Rusă / русский язык" #~ msgid "State of Mind" #~ msgstr "Stare spirit" +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Nu puteti crea acest tip de document! (%s)" + #~ msgid "To browse official translations, you can visit this link: " #~ msgstr "" #~ "Pentru a naviga printre traducerile oficiale, puteti vizita acest link: " @@ -9018,6 +9395,18 @@ msgstr "Rusă / русский язык" #~ msgid ">=" #~ msgstr ">=" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Nu puteţi citi acest document ! (%s)" + +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Nu puteţi scrie în acest document (%s)" + +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Nu puteţi şterge acest document ! (%s)" + #~ msgid "%S - Second as a decimal number [00,61]." #~ msgstr "%S - Secunde ca număr zecimal [00,61]." @@ -9048,6 +9437,9 @@ msgstr "Rusă / русский язык" #~ msgid "Partial" #~ msgstr "Parțial" +#~ msgid "Icon File" +#~ msgstr "Icon" + #~ msgid "Your maintenance contract is already subscribed in the system !" #~ msgstr "Contractul de mentenanță este deja înregistrat în sistem !" diff --git a/bin/addons/base/i18n/ru.po b/bin/addons/base/i18n/ru.po index df65210640f..979b2de0488 100644 --- a/bin/addons/base/i18n/ru.po +++ b/bin/addons/base/i18n/ru.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-28 07:20+0000\n" "Last-Translator: Chertykov Denis \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-29 04:39+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:19+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,14 @@ msgstr "Другие настройки" msgid "DateTime" msgstr "Дата и время" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +60,6 @@ msgstr "Метаданные" msgid "View Architecture" msgstr "Просмотреть архитектуру" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Вы не можете создать документ данного типа! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +110,14 @@ msgstr "Выводить советы" msgid "Created Views" msgstr "Созданные виды" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,11 +134,10 @@ msgid "South Korea" msgstr "Южная Корея" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "Переходы состояний" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -140,13 +149,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Свазиленд" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -178,13 +194,13 @@ msgid "Search Partner" msgstr "Искать партнера" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "Настройте \"smtp_server\" для отправки эл. почты пользователям" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "новый" @@ -215,7 +231,7 @@ msgid "Contact Name" msgstr "Имя контакта" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -239,6 +255,12 @@ msgstr "активен" msgid "Wizard Name" msgstr "Название мастера" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -271,7 +293,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "Виджет" @@ -322,7 +343,7 @@ msgid "Netherlands Antilles" msgstr "Нидерландские Антиллы" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -346,11 +367,6 @@ msgstr "Греческий / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "Боснийский / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -360,6 +376,12 @@ msgstr "" "Если Вы поставите здесь отметку, в следующий раз, когда пользователь введёт " "точно такое же название вложения, появится предыдущий отчёт." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -386,6 +408,12 @@ msgstr "Колумбия" msgid "Schedule Upgrade" msgstr "Запланировать обновление" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -429,7 +457,7 @@ msgid "Miscellaneous Suppliers" msgstr "Прочие поставщики" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Названия пользовательских полей должны начинаться с 'x_' !" @@ -678,6 +706,12 @@ msgid "" "available" msgstr "Установит язык интерфейса пользователя, если есть переводы" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -742,6 +776,14 @@ msgstr "%B - Полное название месяца." msgid "Type" msgstr "Тип" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -768,6 +810,19 @@ msgstr "Неправильный XML для просмотра архитект msgid "Cayman Islands" msgstr "Каймановы острова" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "Переходы состояний" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -875,6 +930,16 @@ msgstr "Гаити" msgid "Search" msgstr "Найти" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -930,13 +995,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "Нет языка с кодом \"%s\"" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -969,6 +1034,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1016,7 +1087,7 @@ msgid "On Create" msgstr "При создании" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1132,12 +1203,6 @@ msgstr "Вложенный ID" msgid "Day: %(day)s" msgstr "Дней: %(day)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Вы не можете читать данный документ! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1179,8 +1244,8 @@ msgstr "" "object.list_price> object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (копия)" @@ -1260,7 +1325,7 @@ msgid "Formula" msgstr "Формула" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "Невозможно удалить суперпользователя!" @@ -1271,7 +1336,8 @@ msgid "Malawi" msgstr "Малави" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "%s (копия)" @@ -1323,7 +1389,6 @@ msgstr "В виде дерева" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1354,6 +1419,12 @@ msgstr "" "При использовании формата CSV, пожалуйста, убедитесь, что первая строка " "вашего файла одна из следующих:" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1407,7 +1478,7 @@ msgid "Bahamas" msgstr "Багамские острова" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1430,6 +1501,12 @@ msgstr "Ирландия" msgid "Number of modules updated" msgstr "Количество обновленных модулей" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1505,6 +1582,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1577,7 +1660,7 @@ msgid "Madagascar" msgstr "Мадагаскар" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1668,12 +1751,6 @@ msgstr "Адрес эл. почты" msgid "French (BE) / Français (BE)" msgstr "Французский (Бельгия) / Français (BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Вы не можете записывать в данный документ! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1746,6 +1823,12 @@ msgstr "" "Название объекта, функция которого будет вызвана, когда этот планировщик " "будет запущен. Прим. 'res.partener'" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1756,13 +1839,19 @@ msgstr "%y - год кратко [00,99]." msgid "Slovenia" msgstr "Словения" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "Сообщения" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "Ошибка !" @@ -1792,6 +1881,14 @@ msgstr "Дата окончания" msgid "New Zealand" msgstr "Новая Зеландия" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1841,19 +1938,13 @@ msgstr "Ошибка! Невозможно создать рекурсивную msgid "Valid" msgstr "Действительный" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Вы не можете удалить данный документ! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "Невозможно обновить модуль '%s'. Он не установлен." @@ -1964,6 +2055,15 @@ msgstr "Сигнал (subflow.*)" msgid "HR sector" msgstr "Отдел кадров" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -2017,6 +2117,11 @@ msgstr "Зависимости" msgid "Main Company" msgstr "Головная компания" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2105,9 +2210,10 @@ msgid "Sir" msgstr "Г-н" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" -msgstr "Выберите пакет модуля для импорта (.zip файл)" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" +msgstr "" #. module: base #: field:ir.default,ref_id:0 @@ -2205,7 +2311,7 @@ msgid "Mayotte" msgstr "Майотта" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "Пожалуйста, укажите действие для запуска!" @@ -2229,6 +2335,12 @@ msgstr "Справа-налево" msgid "Filters" msgstr "Фильтры" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2249,7 +2361,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "Ошибка рекурсии в зависимостях модулей!" @@ -2276,6 +2394,11 @@ msgstr "" "Идентификационный номер налогоплательщика. Сделайте отметку, если партнер " "является плательщиком НДС. Используется для расчета НДС." +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2328,11 +2451,6 @@ msgstr "Проверка кода Ean" msgid "VAT" msgstr "ИНН" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2369,7 +2487,7 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2378,13 +2496,21 @@ msgstr "" "Невозможно создать файл модуля:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Науру" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "Идентификатор сертификата модуля должен быть уникальным !" @@ -2460,6 +2586,12 @@ msgstr "Отправить SMS" msgid "EAN13" msgstr "Штрих-код 13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2517,7 +2649,7 @@ msgid "Ecuador" msgstr "Эквадор" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2589,7 +2721,7 @@ msgid "Action to Trigger" msgstr "Действие триггера" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2786,18 +2918,13 @@ msgstr "Автор" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Расширенный поиск" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Подходящий формат даты и времени." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2846,7 +2973,7 @@ msgid "Rules" msgstr "Правила" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "Вы пытаетесь удалить модуль, который установлен или будет установлен" @@ -2918,7 +3045,7 @@ msgid "Lesotho" msgstr "Лесото" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "Вы не можете удалить модель'%s' !" @@ -2948,6 +3075,12 @@ msgstr "" msgid "System Configuration Done" msgstr "Настройка системы выполнена" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2979,7 +3112,7 @@ msgid "Benin" msgstr "Бенин" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "Договор уже зарегистрирован в системе." @@ -3009,6 +3142,14 @@ msgstr "Заголовок RML" msgid "API ID" msgstr "API ID" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3259,6 +3400,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "Никарагуа" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3539,7 +3686,8 @@ msgid "Bank Type" msgstr "Тип банка" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "Название группы не может начинаться с \"-\"" @@ -3561,7 +3709,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3581,7 +3729,7 @@ msgid "Flow Start" msgstr "Начало процесса" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3613,7 +3761,9 @@ msgid "Guadeloupe (French)" msgstr "Гваделупа (Франция)" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "Oшибка пользователя" @@ -3688,6 +3838,11 @@ msgstr "%S - секунды [00,61]." msgid "Cape Verde" msgstr "Кабо-Верде" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "Выберите пакет модуля для импорта (.zip файл)" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3701,6 +3856,12 @@ msgstr "События" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3734,9 +3895,10 @@ msgid "French / Français" msgstr "Французский / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Созданные меню" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -3986,6 +4148,14 @@ msgstr "Совет" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -4026,8 +4196,8 @@ msgid "Project" msgstr "Проект" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -4057,12 +4227,9 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Клиент" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "Аудит" #. module: base #: model:res.country,name:base.lc @@ -4170,6 +4337,18 @@ msgstr "Вьетнам" msgid "Signature" msgstr "Подпись" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4191,7 +4370,7 @@ msgid "False means for every user" msgstr "Ложь - для любого пользователя" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "Название модуля должно быть уникальным !" @@ -4232,9 +4411,11 @@ msgid "Contacts" msgstr "Контакты" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Фарерские острова" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4263,6 +4444,12 @@ msgstr "Чешская республика" msgid "Widget Wizard" msgstr "Помощник для виджетов" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4307,15 +4494,9 @@ msgid "Mongolia" msgstr "Монголия" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Ошибка" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Созданные меню" #. module: base #: selection:ir.ui.view,type:0 @@ -4429,11 +4610,6 @@ msgstr "Сент-Винсент и Гренадины" msgid "Password" msgstr "Пароль" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4533,7 +4709,7 @@ msgid "Change My Preferences" msgstr "Изменить мои предпочтения" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Недопустимое имя модели в определении действия" @@ -4601,7 +4777,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4684,7 +4860,13 @@ msgid "Client Actions" msgstr "Действия клиента" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4759,7 +4941,7 @@ msgid "ir.server.object.lines" msgstr "События сервера" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Модуль %s: Недействительный сертификат качества" @@ -4810,6 +4992,11 @@ msgstr "Послать SMS" msgid "Accepted Users" msgstr "Акцептованные пользователи" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4925,6 +5112,14 @@ msgstr "" msgid "Nepal" msgstr "Непал" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4954,7 +5149,7 @@ msgid "Update Modules List" msgstr "Обновить список модулей" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" @@ -4963,7 +5158,7 @@ msgstr "" "удовлетворена: %s" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4982,6 +5177,12 @@ msgstr "Далее" msgid "Thai / ภาษาไทย" msgstr "Тайский" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5112,6 +5313,13 @@ msgstr "Полное название страны" msgid "Iteration" msgstr "Повтор" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5150,7 +5358,12 @@ msgid "Solomon Islands" msgstr "Соломоновы Острова" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "Ошибка доступа" @@ -5161,7 +5374,7 @@ msgid "Waiting" msgstr "Ожидание" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "Не удалось загрузить базовый модуль" @@ -5171,6 +5384,12 @@ msgstr "Не удалось загрузить базовый модуль" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5288,7 +5507,7 @@ msgid "ir.actions.todo" msgstr "ТОДО" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5362,17 +5581,23 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "Модель %s не существует !" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5381,7 +5606,7 @@ msgid "Python Code" msgstr "Код на Python" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "Невозможно создать файл модуля: %s !" @@ -5500,7 +5725,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "Нажмите 'Продолжить' для настройки следующего модуля..." @@ -5541,7 +5766,7 @@ msgstr "" "создавать)." #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "Пожалуйста, задайте серверу опцию --email-from !" @@ -5755,7 +5980,7 @@ msgid "Afghanistan, Islamic State of" msgstr "Афганистан" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Ошибка !" @@ -5776,6 +6001,12 @@ msgstr "Ед. изм. интервала" msgid "Kind" msgstr "Тип" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -6036,6 +6267,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "Для просмотра официальных переводов начните с этой ссылки:" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -6045,11 +6284,6 @@ msgstr "Для просмотра официальных переводов на msgid "Address" msgstr "Адрес" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6128,7 +6362,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "Сент-Киттс и Невис Ангилья" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6217,7 +6451,7 @@ msgid "Samoa" msgstr "Самоа" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6242,11 +6476,19 @@ msgid "Child IDs" msgstr "Подчиненные идентификаторы" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Проблемы в конфигурации `Record Id` в серверном действии!" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6293,6 +6535,14 @@ msgstr "Эл. почта" msgid "Home Action" msgstr "Действие со стороны пользователя" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6321,10 +6571,9 @@ msgid "Stop All" msgstr "Остановить все" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6375,7 +6624,7 @@ msgid "Start update" msgstr "Начать обновление" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6433,7 +6682,7 @@ msgid "HR Manager Dashboard" msgstr "Инф. панель менеджера отдела кадров" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6487,7 +6736,7 @@ msgid "Module Update" msgstr "Обновление модуля" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "Следующие модули не установлены или не известны: %s" @@ -6568,7 +6817,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "Настоящее имя пользователя, используется для поиска и в списках" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "Размер поля никогда не может быть меньше 1 !" @@ -6606,6 +6862,12 @@ msgstr "Кому" msgid "Arguments" msgstr "Аргументы" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6616,15 +6878,30 @@ msgstr "GPL версия 2" msgid "GPL Version 3" msgstr "GPL версия 3" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "Правильный штрих-код" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" -msgstr "Аудит" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Клиент" #. module: base #: selection:base.language.install,lang:0 @@ -6729,7 +7006,7 @@ msgid "Copy Object" msgstr "Копировать объект" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6782,6 +7059,15 @@ msgstr "Ссылка на таблицу" msgid "Object" msgstr "Объект" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6819,7 +7105,7 @@ msgid "User Ref." msgstr "Ссылка на пользователя" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "Внимание !" @@ -6960,7 +7246,7 @@ msgid "workflow.triggers" msgstr "События процесса" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "Неверные критерии поиска" @@ -7018,7 +7304,7 @@ msgid "Action Type" msgstr "Тип действия" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7123,11 +7409,23 @@ msgstr "Код страны" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7304,6 +7602,11 @@ msgstr "Отправить e-mail" msgid "Menu Action" msgstr "Меню действий" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Фарерские острова" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7441,7 +7744,7 @@ msgid "China" msgstr "Китай" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7641,7 +7944,7 @@ msgid "Account No." msgstr "Счет номер" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Базовый язык 'en_US' нельзя удалить !" @@ -7685,6 +7988,14 @@ msgstr "Значение перевода" msgid "Antigua and Barbuda" msgstr "Антигуа и Барбуда" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7743,7 +8054,7 @@ msgid "Auto-Refresh" msgstr "Автообновление" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7753,6 +8064,11 @@ msgstr "" msgid "Diagram" msgstr "Диаграмма" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Острова Уоллис и Футуна" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7809,6 +8125,35 @@ msgstr "БИК" msgid "Turkmenistan" msgstr "Туркменистан" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Ошибка" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7937,7 +8282,7 @@ msgid "Internal Header/Footer" msgstr "Внутренние верхний / нижний колонтитулы" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7978,6 +8323,14 @@ msgstr "Доминиканская республика" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -8003,7 +8356,7 @@ msgid "Event Logs" msgstr "Логи событий" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "Конфигурация системы завершена" @@ -8050,11 +8403,18 @@ msgid "Low" msgstr "Низкий" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Ошибка ! Нельзя создать зацикленные меню." +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -8063,7 +8423,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8217,7 +8577,7 @@ msgid "View Auto-Load" msgstr "Автозагрузка вида" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Вы не можете удалить поле '%s' !" @@ -8229,6 +8589,11 @@ msgstr "Вы не можете удалить поле '%s' !" msgid "Resource" msgstr "Объект" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8240,7 +8605,7 @@ msgid "View Ordering" msgstr "Просмотр заказа" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "Не удовлетворенная зависимость !" @@ -8252,6 +8617,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8376,7 +8749,7 @@ msgid "Azerbaijan" msgstr "Азербайджан" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Внимание" @@ -8403,9 +8776,9 @@ msgid "Czech / Čeština" msgstr "Чешский / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Острова Уоллис и Футуна" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Расширенный поиск" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8704,7 +9077,7 @@ msgid "Account Owner" msgstr "Владелец счёта" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8764,7 +9137,7 @@ msgid "Workflow Instances" msgstr "Последовательности действий" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Партнеры: " @@ -9662,6 +10035,10 @@ msgstr "Русский / русский язык" #~ msgid "Choose a language to install:" #~ msgstr "Выберите устанавливаемый язык" +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Вы не можете создать документ данного типа! (%s)" + #~ 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 " @@ -9754,6 +10131,10 @@ msgstr "Русский / русский язык" #~ msgid "Model %s Does not Exist !" #~ msgstr "Модель %s не существует !" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Вы не можете читать данный документ! (%s)" + #~ msgid "" #~ "Would your payment have been carried out after this mail was sent, please " #~ "consider the present one as void. Do not hesitate to contact our accounting " @@ -9795,6 +10176,10 @@ msgstr "Русский / русский язык" #~ "Этот мастер определит новые термины в приложении, так что их можно будет " #~ "обновить вручную." +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Вы не можете записывать в данный документ! (%s)" + #~ msgid "Confirmation" #~ msgstr "Подтверждение" @@ -9805,6 +10190,10 @@ msgstr "Русский / русский язык" #~ msgid "My Closed Requests" #~ msgstr "Мои закрытые запросы" +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Вы не можете удалить данный документ! (%s)" + #~ msgid "Year with century: %(year)s" #~ msgstr "Год с указанием века: %(year)" diff --git a/bin/addons/base/i18n/sk.po b/bin/addons/base/i18n/sk.po index 7cf4803f89a..fb096606372 100644 --- a/bin/addons/base/i18n/sk.po +++ b/bin/addons/base/i18n/sk.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-19 08:23+0000\n" "Last-Translator: Peter Kohaut \n" "Language-Team: Slovak \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:58+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:19+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -41,6 +41,14 @@ msgstr "Iné nastavenia" msgid "DateTime" msgstr "DateTime" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -53,12 +61,6 @@ msgstr "Metadáta" msgid "View Architecture" msgstr "Štruktúra pohľadu" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Nemôžte vytvoriť tento typ dokumentu! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -109,6 +111,14 @@ msgstr "Zobraziť tipy menu" msgid "Created Views" msgstr "Vytvorené pohľady" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -125,11 +135,10 @@ msgid "South Korea" msgstr "Južná Kórea" #. 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 "Prechody" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -141,13 +150,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Svazijsko" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "Dodávatelia dreva" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -178,7 +194,7 @@ msgid "Search Partner" msgstr "Hľadať partnera" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" @@ -186,7 +202,7 @@ msgstr "" "emaily" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "nový" @@ -217,7 +233,7 @@ msgid "Contact Name" msgstr "Meno kontaktu" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -241,6 +257,12 @@ msgstr "aktívny" msgid "Wizard Name" msgstr "Meno sprievodcu" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -273,7 +295,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "Widget" @@ -324,7 +345,7 @@ msgid "Netherlands Antilles" msgstr "Holandské Antily" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -348,11 +369,6 @@ msgstr "Grécky / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "Bosniačtina / banski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "Web ikony" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -362,6 +378,12 @@ msgstr "" "Ak toto označíte, tak sa pri ďalšej tlači prílohy s rovnakým názvom vráti " "predchádzajúci výkaz." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "Metóda nie je implementovaná na tento objekt!" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -388,6 +410,12 @@ msgstr "Kolumbia" msgid "Schedule Upgrade" msgstr "Aktualizávia kalendára" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "Kľúč / hodnota '%s' nebola nájdená vo výbere poľa '%s'" + #. module: base #: help:res.country,code:0 msgid "" @@ -431,7 +459,7 @@ msgid "Miscellaneous Suppliers" msgstr "Rôzny dodávatelia" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Vlastné pole musí mať meno, ktoré začína 'x_'!" @@ -685,6 +713,12 @@ msgid "" "available" msgstr "Nastaví jazyk používateľovho rozhrania, ak je dostupný jeho preklad" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -749,6 +783,14 @@ msgstr "%B - Plné meno mesiaca." msgid "Type" msgstr "Typ" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -775,6 +817,19 @@ msgstr "Neplatné XML pre štruktúru pohľadu!" msgid "Cayman Islands" msgstr "Kajmanské Ostrovy" +#. 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 "Prechody" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -885,6 +940,16 @@ msgstr "Haity" msgid "Search" msgstr "Hľadanie" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -940,13 +1005,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "Neexistuje jazyk s kódom \"%s\"" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "Chyba počas komunikácie so serverom záruky vydavateľa" @@ -983,6 +1048,12 @@ msgstr "" "OpenERP systému. Po registrácii zmluvy, budete môcť posielať otázky a " "problémy priamo do OpenERP." +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1032,7 +1103,7 @@ msgid "On Create" msgstr "Pri vytvorení" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1152,12 +1223,6 @@ msgstr "ID prílohy" msgid "Day: %(day)s" msgstr "Deň: %(day)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Nemôžte čítať tento dokument! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1204,8 +1269,8 @@ msgstr "" "object.list_price > object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (kopírovať)" @@ -1285,7 +1350,7 @@ msgid "Formula" msgstr "Vzorec" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "Nie je možné odstrániť root používateľa!" @@ -1296,7 +1361,8 @@ msgid "Malawi" msgstr "Malawi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "%s (kópia)" @@ -1347,7 +1413,6 @@ msgstr "Strom" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1377,6 +1442,12 @@ msgstr "" "Ak používate CSV formát, prosím skontrolujte, že prvý riadok Vášho súboru je " "jeden z nasledovných:" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "Nie je implementovaná search_memory metóda!" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1430,7 +1501,7 @@ msgid "Bahamas" msgstr "Bahamy" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1452,6 +1523,12 @@ msgstr "Írsko" msgid "Number of modules updated" msgstr "Počet aktualizovaných modulov" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1537,6 +1614,12 @@ msgstr "" "Čiarkou oddelený zoznam povolených typov pohľadov, ako 'form', 'tree', " "'calendar', atď. (prevolené: tree, form)" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1609,7 +1692,7 @@ msgid "Madagascar" msgstr "Madagaskar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1697,12 +1780,6 @@ msgstr "Emailová adresa" msgid "French (BE) / Français (BE)" msgstr "Francúzky (BE) / Français (BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Nemožete zapisovať do tohto dokumentu! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1775,6 +1852,12 @@ msgstr "" "Meno objektu, ktorého funkcie budu volané, keď sa spustí tento kalendár, " "napr.: \"res.partner\"" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1785,13 +1868,19 @@ msgstr "%y - Rok bez storočia [00,99]." msgid "Slovenia" msgstr "Slovinsko" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "Správy" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "Chyba!" @@ -1821,6 +1910,14 @@ msgstr "Dátum ukončenia" msgid "New Zealand" msgstr "Nový Zéland" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1873,19 +1970,13 @@ msgstr "Chyba! Nemôžte vytvárať rekurzívne spoločnosti." msgid "Valid" msgstr "Platný" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Nedá sa odstrániť tento dokument! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "Nie je možné aktualizovať modul '%s'. Nie je nainštalovaný." @@ -1996,6 +2087,15 @@ msgstr "Signál (subflow.*)" msgid "HR sector" msgstr "Sektor HR" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -2051,6 +2151,11 @@ msgstr "Závislosti" msgid "Main Company" msgstr "Hlavná spoločnosť" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2139,9 +2244,10 @@ msgid "Sir" msgstr "Pán" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" -msgstr "Vyberte balík modulu na import (.zip súbor):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" +msgstr "" #. module: base #: field:ir.default,ref_id:0 @@ -2239,7 +2345,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "Prosím vyberte akciu na spustenie!" @@ -2263,6 +2369,12 @@ msgstr "Zprava do ľava" msgid "Filters" msgstr "Filtre" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2284,7 +2396,13 @@ msgstr "" "Ak nie je nastavený, funguje ako predvolená hodnota pre nové prostriedky" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "Chyba rekurzie v závislostiach modulov!" @@ -2312,6 +2430,11 @@ msgid "" msgstr "" "Zašktnite pole ak je partner platcom DPH. Používa sa v právnych vyhláseniach." +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2364,11 +2487,6 @@ msgstr "Ean kontrola" msgid "VAT" msgstr "DPH" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "Vysvietené web ikony" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2405,7 +2523,7 @@ msgid "M." msgstr "pán" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2414,13 +2532,21 @@ msgstr "" "Nevytvárať súbor modulu:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Nauru" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "ID certifikátu modulu musí byť jedinečné!" @@ -2498,6 +2624,12 @@ msgstr "Odoslať SMS" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2555,7 +2687,7 @@ msgid "Ecuador" msgstr "Ekvádor" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2626,7 +2758,7 @@ msgid "Action to Trigger" msgstr "Akcia pre spúštač" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2829,18 +2961,13 @@ msgstr "Autor" msgid "FYROM" msgstr "Macedónsko" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Pokročilé hľadanie" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Vhodná reprezentácia dátumu a času." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2889,7 +3016,7 @@ msgid "Rules" msgstr "Pravidlá" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2960,7 +3087,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "Nemôžete odstrániť model '%s'!" @@ -2990,6 +3117,12 @@ msgstr "Abcházština / аҧсуа" msgid "System Configuration Done" msgstr "Systémove nastavenie dokončené" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -3021,7 +3154,7 @@ msgid "Benin" msgstr "Benin" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "Táto zmluva je už registrovaná v systéme." @@ -3051,6 +3184,14 @@ msgstr "RML hlavička" msgid "API ID" msgstr "API ID" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3305,6 +3446,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "Nikaragua" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3588,7 +3735,8 @@ msgid "Bank Type" msgstr "Typ banky" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "Meno skupiny sa nemôže začínať s \"-\"" @@ -3610,7 +3758,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "Gudžarátština / ગુજરાતી" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3630,7 +3778,7 @@ msgid "Flow Start" msgstr "Začiatie toku" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "Základný modul sa nedá nahrať! (skontrolujte addons-path)" @@ -3662,7 +3810,9 @@ msgid "Guadeloupe (French)" msgstr "Guadeloupe (Francúzcko)" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "Používateľská chyba" @@ -3740,6 +3890,11 @@ msgstr "%S - Skundy [00,61]." msgid "Cape Verde" msgstr "Kapverdy" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "Vyberte balík modulu na import (.zip súbor):" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3753,6 +3908,12 @@ msgstr "Udalosti" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3786,9 +3947,10 @@ msgid "French / Français" msgstr "Francúzky / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Vytvorené menu" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -4038,6 +4200,14 @@ msgstr "Rada" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -4078,8 +4248,8 @@ msgid "Project" msgstr "Projekt" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -4109,12 +4279,9 @@ msgid "Serial Key" msgstr "Sériové číslo" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Zákazník" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "Audit" #. module: base #: model:res.country,name:base.lc @@ -4222,6 +4389,18 @@ msgstr "Vietnam" msgid "Signature" msgstr "Podpis" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4243,7 +4422,7 @@ msgid "False means for every user" msgstr "Zápor znamená pre každého používateľa" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "Meno modulu musí byť jedinečné!" @@ -4284,9 +4463,11 @@ msgid "Contacts" msgstr "Kontakty" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Faerské ostrovy" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4315,6 +4496,12 @@ msgstr "Česká republika" msgid "Widget Wizard" msgstr "Sprievodca widgetom" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4361,15 +4548,9 @@ msgid "Mongolia" msgstr "Mongolsko" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Chyba" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Vytvorené menu" #. module: base #: selection:ir.ui.view,type:0 @@ -4485,11 +4666,6 @@ msgstr "Svätý Vincent a Grenadíny" msgid "Password" msgstr "Heslo" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "Súbor ikony" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4592,7 +4768,7 @@ msgid "Change My Preferences" msgstr "Zmeniť moje predvoľby" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Nesprávne meno modulu v definícii aktivity." @@ -4660,7 +4836,7 @@ msgid "Raphaël Valyi's tweets" msgstr "Tweety Raphaël Valyi" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4740,7 +4916,13 @@ msgid "Client Actions" msgstr "Aktivity klienta" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4815,7 +4997,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Modul %s: Nesprávny certifikát kvality" @@ -4866,6 +5048,11 @@ msgstr "Odoslať SMS" msgid "Accepted Users" msgstr "Povolený používatelia" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4987,6 +5174,14 @@ msgstr "Tweety Olivier Dony" msgid "Nepal" msgstr "Nepál" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -5019,7 +5214,7 @@ msgid "Update Modules List" msgstr "Aktualizovať zoznam modulov" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" @@ -5028,7 +5223,7 @@ msgstr "" "závislosti: %s" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5051,6 +5246,12 @@ msgstr "Pokračovať" msgid "Thai / ภาษาไทย" msgstr "Thajčina / ภาษาไทย" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5181,6 +5382,13 @@ msgstr "Celé meno krajiny." msgid "Iteration" msgstr "Iterácia" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5219,7 +5427,12 @@ msgid "Solomon Islands" msgstr "Šalamúnove ostrovy" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "Chyba prístupu" @@ -5230,7 +5443,7 @@ msgid "Waiting" msgstr "Čaká" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "Nie je možné nahrať základný modul" @@ -5240,6 +5453,12 @@ msgstr "Nie je možné nahrať základný modul" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5361,7 +5580,7 @@ msgid "ir.actions.todo" msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "Nie je možné nájsť predošlé ir.actions.todo" @@ -5435,17 +5654,23 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "Model %s neexistuje!" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "Nemôžte vymazať jazyk ktorý je predvoleným jazykom používateľov!" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5454,7 +5679,7 @@ msgid "Python Code" msgstr "Kód Pyton" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "Nedá sa vytvoriť súbor modulu: %s!" @@ -5575,7 +5800,7 @@ msgstr "" "na 'form' pre iné pohľady" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "Kliknite na 'Pokračovať' pre nastavenie ďalšieho doplnku..." @@ -5615,7 +5840,7 @@ msgstr "" "Vyberte objen nad ktorým bude akcia pracovať (čítať, zapisovať, vytvoriť)." #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "Prosím uveďte prepínač servera --email-from!" @@ -5830,7 +6055,7 @@ msgid "Afghanistan, Islamic State of" msgstr "Afganista, Islamská republika" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Chyba!" @@ -5851,6 +6076,12 @@ msgstr "Jednotka intervalu" msgid "Kind" msgstr "Druh" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -6117,6 +6348,14 @@ msgid "To browse official translations, you can start with these links:" msgstr "" "Ak chcete prezerať oficiálne preklady, možte začať nasledovnými odkazmi:" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -6126,11 +6365,6 @@ msgstr "" msgid "Address" msgstr "Adresa" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "Súbor vysvietenej ikony" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6209,7 +6443,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "Svätý Krištof a Nevis" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6298,7 +6532,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6323,11 +6557,19 @@ msgid "Child IDs" msgstr "ID potomka" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problémv nastavení `Record Id` v Akcii servera!" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6376,6 +6618,14 @@ msgstr "Email" msgid "Home Action" msgstr "Akcia po príhlásení" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6404,11 +6654,10 @@ msgid "Stop All" msgstr "Zastaviť všetko" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" -msgstr "Registrovať zmluvu" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" +msgstr "" #. module: base #: view:ir.model.data:0 @@ -6460,7 +6709,7 @@ msgid "Start update" msgstr "Začat aktualizáciu" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "Chyba platnosti zmliuvy" @@ -6519,7 +6768,7 @@ msgid "HR Manager Dashboard" msgstr "Nástenka manažéra ľudských zdrojov" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6577,7 +6826,7 @@ msgid "Module Update" msgstr "Aktualizácia modulu" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "Nasledovné moduly nie sú nainštalové alebo sú neznáme: %s" @@ -6660,7 +6909,14 @@ msgstr "" "zoznamov" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "Veľkosť pola nemôže byť nikdy menšia ako 1!" @@ -6698,6 +6954,12 @@ msgstr "Pre" msgid "Arguments" msgstr "Argumenty" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6708,15 +6970,30 @@ msgstr "GPL verzia 2" msgid "GPL Version 3" msgstr "GPL verzia 3" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "Správny EAN13" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" -msgstr "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Zákazník" #. module: base #: selection:base.language.install,lang:0 @@ -6821,7 +7098,7 @@ msgid "Copy Object" msgstr "Kopírovať objekt" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6872,6 +7149,15 @@ msgstr "Odkaz na tabuľku" msgid "Object" msgstr "Objekt" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6909,7 +7195,7 @@ msgid "User Ref." msgstr "Odkaz na používateľa" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "Varovanie!" @@ -7050,7 +7336,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "Zlé podmienky hľadania" @@ -7108,7 +7394,7 @@ msgid "Action Type" msgstr "Typ akcie" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7215,11 +7501,23 @@ msgstr "Kód krajiny" msgid "workflow.instance" msgstr "workflow.instace" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7396,6 +7694,11 @@ msgstr "Odoslať Email" msgid "Menu Action" msgstr "Akcia menu" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Faerské ostrovy" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7538,7 +7841,7 @@ msgid "China" msgstr "Čína" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7744,7 +8047,7 @@ msgid "Account No." msgstr "Číslo účtu" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Základný jazyk 'en_US' nemôže byť vymazaný!" @@ -7792,6 +8095,14 @@ msgstr "Preklad" msgid "Antigua and Barbuda" msgstr "Antigua a Barbuda" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7850,7 +8161,7 @@ msgid "Auto-Refresh" msgstr "Automatická obnova" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "Pole osv_memory sa dá porovnávať iba pomocou operátora = alebo !=." @@ -7860,6 +8171,11 @@ msgstr "Pole osv_memory sa dá porovnávať iba pomocou operátora = alebo !=." msgid "Diagram" msgstr "Diagram" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis a Futuna" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7916,6 +8232,35 @@ msgstr "Kód banky" msgid "Turkmenistan" msgstr "Turkmenistan" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Chyba" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -8044,7 +8389,7 @@ msgid "Internal Header/Footer" msgstr "Interná hlavička/pätička" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -8085,6 +8430,14 @@ msgstr "Dominikánska republika" msgid "Serbian (Cyrillic) / српски" msgstr "Srbština (Cyrilika) / српски" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -8110,7 +8463,7 @@ msgid "Event Logs" msgstr "Protokol udalosti" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "Systémové nastavenie dokončené" @@ -8157,11 +8510,18 @@ msgid "Low" msgstr "Nízka" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Chyba! Nemôžte vytvoriť rekurzívne Menu." +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "Registrovať zmluvu" + #. module: base #: view:ir.rule:0 msgid "" @@ -8172,7 +8532,7 @@ msgstr "" "pomocou logického OR" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "Prosím skontrolujte meno a platnosť záručnej zmluvy vydavateľa" @@ -8330,7 +8690,7 @@ msgid "View Auto-Load" msgstr "Automatické načítanie pohľadu" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Nemôžte odstrániť pole '%s' !" @@ -8342,6 +8702,11 @@ msgstr "Nemôžte odstrániť pole '%s' !" msgid "Resource" msgstr "Prostriedok" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8353,7 +8718,7 @@ msgid "View Ordering" msgstr "Usporiadanie pohľadu" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "Nesplnené závislosti!" @@ -8367,6 +8732,14 @@ msgstr "" "Podporované formáty súborov: *.csv (čiarkou oddelené hodnoty) alebo *.po " "(GetText Portable Objects)" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8495,7 +8868,7 @@ msgid "Azerbaijan" msgstr "Azerbajdžán" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Varovanie" @@ -8522,9 +8895,9 @@ msgid "Czech / Čeština" msgstr "Čeština / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis a Futuna" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Pokročilé hľadanie" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8833,7 +9206,7 @@ msgid "Account Owner" msgstr "Vlastník účtu" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "Varovanie prepnutia spoločnosti" @@ -8893,7 +9266,7 @@ msgid "Workflow Instances" msgstr "Inštancie pracovného toku" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Partneri: " @@ -9002,10 +9375,6 @@ msgstr "Rusčina / русский язык" #~ msgid "Feed back About Workflow of Module" #~ msgstr "Spätná väzba o Workflow modulu" -#, python-format -#~ msgid "The read method is not implemented on this object !" -#~ msgstr "Metóda nie je implementovaná na tento objekt!" - #~ msgid "STOCK_MEDIA_REWIND" #~ msgstr "STOCK_MEDIA_REWIND" @@ -9013,10 +9382,6 @@ msgstr "Rusčina / русский язык" #~ msgid "Product Quantity" #~ msgstr "Množstvo produktu" -#, python-format -#~ msgid "Key/value '%s' not found in selection field '%s'" -#~ msgstr "Kľúč / hodnota '%s' nebola nájdená vo výbere poľa '%s'" - #~ msgid "STOCK_CUT" #~ msgstr "STOCK_CUT" @@ -9285,10 +9650,6 @@ msgstr "Rusčina / русский язык" #~ msgid "Product Cost Structure" #~ msgstr "Štruktúra nákladov produktu" -#, python-format -#~ msgid "Not implemented search_memory method !" -#~ msgstr "Nie je implementovaná search_memory metóda!" - #~ msgid "STOCK_PROPERTIES" #~ msgstr "STOCK_PROPERTIES" @@ -9353,6 +9714,10 @@ msgstr "Rusčina / русский язык" #~ msgid "right" #~ msgstr "vpravo" +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Nedá sa odstrániť tento dokument! (%s)" + #, python-format #~ msgid "No Partner!" #~ msgstr "Žiadny partner!" @@ -9452,6 +9817,10 @@ msgstr "Rusčina / русский язык" #~ msgid "Model %s Does not Exist !" #~ msgstr "Model %s neexistuje!" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Nemôžte čítať tento dokument! (%s)" + #~ msgid "" #~ "Would your payment have been carried out after this mail was sent, please " #~ "consider the present one as void. Do not hesitate to contact our accounting " @@ -9651,12 +10020,26 @@ msgstr "Rusčina / русский язык" #~ msgid "Maintenance contract added !" #~ msgstr "Zmluva o podpore pridaná!" +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Nemôžte vytvoriť tento typ dokumentu! (%s)" + +#~ msgid "Web Icons" +#~ msgstr "Web ikony" + #~ msgid "maintenance contract modules" #~ msgstr "moduly zmluvy o údržbe" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Nemožete zapisovať do tohto dokumentu! (%s)" + #~ msgid "%S - Second as a decimal number [00,61]." #~ msgstr "%S - Sekundy ako desatinné číslo [00,61]." +#~ msgid "Web Icons Hover" +#~ msgstr "Vysvietené web ikony" + #~ msgid "%H - Hour (24-hour clock) as a decimal number [00,23]." #~ msgstr "%H - Hodina (24-hodinový formát) ako celé čislo [00,23]." @@ -9781,6 +10164,12 @@ msgstr "Rusčina / русский язык" #~ msgid "Unvalid" #~ msgstr "Neplatný" +#~ msgid "Icon File" +#~ msgstr "Súbor ikony" + +#~ msgid "Icon hover File" +#~ msgstr "Súbor vysvietenej ikony" + #~ msgid "The BVR adherent number must be unique !" #~ msgstr "BVR číslo musí byť jedinečné!" diff --git a/bin/addons/base/i18n/sl.po b/bin/addons/base/i18n/sl.po index e2d2e72e1dd..f2d94d220f7 100644 --- a/bin/addons/base/i18n/sl.po +++ b/bin/addons/base/i18n/sl.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-01 06:59+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:58+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:20+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +60,6 @@ msgstr "Metapodatki" msgid "View Architecture" msgstr "Arhitektura pogleda" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Ne morete ustvariti te vrste dokumenta. (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +110,14 @@ msgstr "Prikaži tip menija" msgid "Created Views" msgstr "Izdelani pogledi" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,11 +134,10 @@ msgid "South Korea" msgstr "Južna Koreja" #. 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 "Prehodi" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -140,13 +149,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Svazi" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "Dobavitelji lesa" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -175,13 +191,13 @@ msgid "Search Partner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "novo" @@ -212,7 +228,7 @@ msgid "Contact Name" msgstr "Naziv stika" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -236,6 +252,12 @@ msgstr "aktivno" msgid "Wizard Name" msgstr "Ime čarovnika" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -268,7 +290,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -319,7 +340,7 @@ msgid "Netherlands Antilles" msgstr "Nizozemski Antili" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -343,11 +364,6 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "Bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -355,6 +371,12 @@ msgid "" "name, it returns the previous report." msgstr "" +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "Metoda 'read' ni implementirana za ta objekt." + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -381,6 +403,12 @@ msgstr "Kolumbija" msgid "Schedule Upgrade" msgstr "Razporedi nadgradnjo" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -424,7 +452,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Nazivi polj po meri se morajo začeti z 'x_'." @@ -671,6 +699,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "Metoda 'unlink' ni implementirana za ta objekt." + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -735,6 +769,14 @@ msgstr "%B - polno ime meseca." msgid "Type" msgstr "Vrsta" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -761,6 +803,19 @@ msgstr "Neveljaven XML za arhitekturo pogleda." msgid "Cayman Islands" msgstr "Kajmanski otoki" +#. 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 "Prehodi" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -865,6 +920,16 @@ msgstr "Haiti" msgid "Search" msgstr "" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -920,13 +985,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -957,6 +1022,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "Metoda 'search' ni implementirana za ta objekt." + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1004,7 +1075,7 @@ msgid "On Create" msgstr "Pri ustvarjanju" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1105,12 +1176,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "Dan: %(day)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Tega dokumenta ne morete prebrati. (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1150,8 +1215,8 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr "" @@ -1229,7 +1294,7 @@ msgid "Formula" msgstr "Formula" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "Ne morete odstaniti uporabnika 'root'." @@ -1240,7 +1305,8 @@ msgid "Malawi" msgstr "Malavi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1289,7 +1355,6 @@ msgstr "Drevo" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1316,6 +1381,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "Metoda 'search_memory' ni implementirana." + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1367,7 +1438,7 @@ msgid "Bahamas" msgstr "Bahami" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1390,6 +1461,12 @@ msgstr "Irska" msgid "Number of modules updated" msgstr "Število osveženih modulov" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "Metoda 'set_memory' ni implementirana." + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1465,6 +1542,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1534,7 +1617,7 @@ msgid "Madagascar" msgstr "Madagaskar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1620,12 +1703,6 @@ msgstr "E-poštni naslov" msgid "French (BE) / Français (BE)" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Ne morete pisati v ta dokument. (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1696,6 +1773,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "Metoda 'perm_read' ni implementirana za ta objekt." + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1706,13 +1789,19 @@ msgstr "" msgid "Slovenia" msgstr "Slovenija" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "Napaka!" @@ -1742,6 +1831,14 @@ msgstr "Končni datum" msgid "New Zealand" msgstr "Nova Zelandija" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1791,19 +1888,13 @@ msgstr "Napaka. Ne morete ustvariti rekurzivnih družb." msgid "Valid" msgstr "Veljaven" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Tega dokumenta ne morete zbrisati. (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "Modula '%s' ne morete nadgraditi, ker ni nameščen." @@ -1914,6 +2005,15 @@ msgstr "" msgid "HR sector" msgstr "" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1967,6 +2067,11 @@ msgstr "Odvisnosti" msgid "Main Company" msgstr "Glavna družba" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2053,8 +2158,9 @@ msgid "Sir" msgstr "Gospod" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2153,7 +2259,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2177,6 +2283,12 @@ msgstr "" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "Preverite, če imajo vse vaše vrstice %d stolpcev." + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2197,7 +2309,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "Napaka rekurzije v odvisnostih modulov." @@ -2222,6 +2340,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2274,11 +2397,6 @@ msgstr "" msgid "VAT" msgstr "DDV ID" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2315,7 +2433,7 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2324,13 +2442,21 @@ msgstr "" "Ustvarjenje datoteke modula ni možno:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2406,6 +2532,12 @@ msgstr "Pošlji SMS" msgid "EAN13" msgstr "Črtna koda (EAN13)" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2463,7 +2595,7 @@ msgid "Ecuador" msgstr "Ekvador" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2534,7 +2666,7 @@ msgid "Action to Trigger" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2729,18 +2861,13 @@ msgstr "Avtor" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Napredno iskanje" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2786,7 +2913,7 @@ msgid "Rules" msgstr "Pravila" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "Poskušate odstraniti modul, ki je nameščen ali bo nameščen" @@ -2856,7 +2983,7 @@ msgid "Lesotho" msgstr "Lesoto" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "Ne morete odstraniti modela '%s'." @@ -2886,6 +3013,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2917,7 +3050,7 @@ msgid "Benin" msgstr "Benin" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2947,6 +3080,14 @@ msgstr "RML glava" msgid "API ID" msgstr "ID API" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3192,6 +3333,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "Nikaragva" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "Metoda 'write' ni implementirana za ta objekt." + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3471,7 +3618,8 @@ msgid "Bank Type" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "Ime skupine se ne sme začeti z \"-\"" @@ -3493,7 +3641,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3511,7 +3659,7 @@ msgid "Flow Start" msgstr "Začetek poteka dela" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3543,7 +3691,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "Napaka uporabnika" @@ -3618,6 +3768,11 @@ msgstr "" msgid "Cape Verde" msgstr "Zelenortski otoki" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3631,6 +3786,12 @@ msgstr "Dogodki" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3664,9 +3825,10 @@ msgid "French / Français" msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "Metoda 'create' ni implementirana za ta objekt." #. module: base #: field:workflow.triggers,workitem_id:0 @@ -3916,6 +4078,14 @@ msgstr "Nasvet" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3954,8 +4124,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -3985,12 +4155,9 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Kupec" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "" #. module: base #: model:res.country,name:base.lc @@ -4098,6 +4265,18 @@ msgstr "Vietnam" msgid "Signature" msgstr "Podpis" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "Ni implementirano" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4119,7 +4298,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4160,9 +4339,11 @@ msgid "Contacts" msgstr "Stiki" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Ferski otoki" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4191,6 +4372,12 @@ msgstr "Češka republika" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4235,15 +4422,9 @@ msgid "Mongolia" msgstr "Mongolija" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Napaka" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "" #. module: base #: selection:ir.ui.view,type:0 @@ -4357,11 +4538,6 @@ msgstr "" msgid "Password" msgstr "Geslo" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4461,7 +4637,7 @@ msgid "Change My Preferences" msgstr "Spremeni moje nastavitve" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Napačno ime modela v definiciji dejanja." @@ -4529,7 +4705,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4607,7 +4783,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4680,7 +4862,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4728,6 +4910,11 @@ msgstr "" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4842,6 +5029,14 @@ msgstr "" msgid "Nepal" msgstr "Nepal" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4871,14 +5066,14 @@ msgid "Update Modules List" msgstr "Posodobi seznam modulov" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4897,6 +5092,12 @@ msgstr "Naprej" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5027,6 +5228,13 @@ msgstr "Polni ime države" msgid "Iteration" msgstr "" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "NapakaUporabnika" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5065,7 +5273,12 @@ msgid "Solomon Islands" msgstr "Solomonovi otoki" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "Napaka dostopa" @@ -5076,7 +5289,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5086,6 +5299,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "Metoda 'copy' ni implementirana za ta objekt." + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5203,7 +5422,7 @@ msgid "ir.actions.todo" msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5277,17 +5496,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "Metoda 'get_memory' ni implementirana." + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5296,7 +5521,7 @@ msgid "Python Code" msgstr "Python kod" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "Datoteke modula: %s ni mogoče ustvariti." @@ -5415,7 +5640,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5454,7 +5679,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5666,7 +5891,7 @@ msgid "Afghanistan, Islamic State of" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Napaka!" @@ -5687,6 +5912,12 @@ msgstr "Enota intervala" msgid "Kind" msgstr "Vrsta" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "Ta metoda ne obstaja več" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5942,6 +6173,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5951,11 +6190,6 @@ msgstr "" msgid "Address" msgstr "Naslov" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6034,7 +6268,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6118,7 +6352,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6139,11 +6373,19 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "Napaka preverjanja" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6190,6 +6432,14 @@ msgstr "E-pošta" msgid "Home Action" msgstr "" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6218,10 +6468,9 @@ msgid "Stop All" msgstr "Vse ustavi" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6272,7 +6521,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6330,7 +6579,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6382,7 +6631,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6463,7 +6712,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6501,6 +6757,12 @@ msgstr "Za" msgid "Arguments" msgstr "Argumenti" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6511,15 +6773,30 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" -msgstr "" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "Vrednost \"%s\" za polje \"%s\" ni na voljo pri izbiri" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Kupec" #. module: base #: selection:base.language.install,lang:0 @@ -6624,7 +6901,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6675,6 +6952,15 @@ msgstr "Sklic tabele" msgid "Object" msgstr "Objekt" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6710,7 +6996,7 @@ msgid "User Ref." msgstr "Sklic uporabnika" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "Opozorilo!" @@ -6851,7 +7137,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6907,7 +7193,7 @@ msgid "Action Type" msgstr "Vrsta akcije" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7010,11 +7296,23 @@ msgstr "Oznaka države" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "Nedefinirana metoda 'get'" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7189,6 +7487,11 @@ msgstr "Pošlji E-pošto" msgid "Menu Action" msgstr "Menuji" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Ferski otoki" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7326,7 +7629,7 @@ msgid "China" msgstr "Kitajska" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7524,7 +7827,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7568,6 +7871,14 @@ msgstr "Prevod" msgid "Antigua and Barbuda" msgstr "Antigva in Barbuda" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7626,7 +7937,7 @@ msgid "Auto-Refresh" msgstr "Samoosvežitev" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7636,6 +7947,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Otoki Wallis in Futuna" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7692,6 +8008,35 @@ msgstr "Identifikacijska oznaka banke (Bank Identifier Code)" msgid "Turkmenistan" msgstr "Turkmenistan" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Napaka" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7820,7 +8165,7 @@ msgid "Internal Header/Footer" msgstr "Interna glava/noga" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7861,6 +8206,14 @@ msgstr "Dominikanska republika" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7884,7 +8237,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7931,11 +8284,18 @@ msgid "Low" msgstr "Nizka" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7944,7 +8304,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8098,7 +8458,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8110,6 +8470,11 @@ msgstr "" msgid "Resource" msgstr "Resurs" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8121,7 +8486,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8133,6 +8498,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8257,7 +8630,7 @@ msgid "Azerbaijan" msgstr "Azerbajdžan" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Opozorilo" @@ -8284,9 +8657,9 @@ msgid "Czech / Čeština" msgstr "Češčina" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Otoki Wallis in Futuna" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Napredno iskanje" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8584,7 +8957,7 @@ msgid "Account Owner" msgstr "Lastnik konta" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8644,7 +9017,7 @@ msgid "Workflow Instances" msgstr "Primerki poteka dela" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Partnerji: " @@ -9636,12 +10009,12 @@ msgstr "rusko" #~ msgstr "Količina izdelka" #, python-format -#~ msgid "Result (/10)" -#~ msgstr "Rezultat (/10)" +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Ne morete ustvariti te vrste dokumenta. (%s)" #, python-format -#~ msgid "The unlink method is not implemented on this object !" -#~ msgstr "Metoda 'unlink' ni implementirana za ta objekt." +#~ msgid "Result (/10)" +#~ msgstr "Rezultat (/10)" #, python-format #~ msgid "Password mismatch !" @@ -9665,10 +10038,6 @@ msgstr "rusko" #~ msgid "June" #~ msgstr "junij" -#, python-format -#~ msgid "The read method is not implemented on this object !" -#~ msgstr "Metoda 'read' ni implementirana za ta objekt." - #, python-format #~ msgid "Tag Name" #~ msgstr "Ime oznake" @@ -9716,16 +10085,12 @@ msgstr "rusko" #~ msgstr "Proizvodi: " #, python-format -#~ msgid "Not implemented search_memory method !" -#~ msgstr "Metoda 'search_memory' ni implementirana." +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Tega dokumenta ne morete prebrati. (%s)" #~ msgid "Year without century: %(y)s" #~ msgstr "Leto brez stoletja: %(y)s" -#, python-format -#~ msgid "Not implemented set_memory method !" -#~ msgstr "Metoda 'set_memory' ni implementirana." - #, python-format #~ msgid "Error, no partner !" #~ msgstr "Napaka, ni partnerja!" @@ -9741,12 +10106,12 @@ msgstr "rusko" #~ msgstr "Vpišite vsaj eno polje." #, python-format -#~ msgid "CHECK: " -#~ msgstr "KONTROLA: " +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Ne morete pisati v ta dokument. (%s)" #, python-format -#~ msgid "The perm_read method is not implemented on this object !" -#~ msgstr "Metoda 'perm_read' ni implementirana za ta objekt." +#~ msgid "CHECK: " +#~ msgstr "KONTROLA: " #, python-format #~ msgid "Message !" @@ -9755,6 +10120,10 @@ msgstr "rusko" #~ msgid "Installation Done" #~ msgstr "Namestitev končana" +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Tega dokumenta ne morete zbrisati. (%s)" + #, python-format #~ msgid "No Partner!" #~ msgstr "Ni partnerja!" @@ -9782,10 +10151,6 @@ msgstr "rusko" #~ msgid "Open" #~ msgstr "Odpri" -#, python-format -#~ msgid "Please check that all your lines have %d columns." -#~ msgstr "Preverite, če imajo vse vaše vrstice %d stolpcev." - #~ msgid "Not Started" #~ msgstr "ni pričeto" @@ -9816,10 +10181,6 @@ msgstr "rusko" #~ msgid "Subscribed" #~ msgstr "Naročen" -#, python-format -#~ msgid "The create method is not implemented on this object !" -#~ msgstr "Metoda 'create' ni implementirana za ta objekt." - #, python-format #~ msgid "1" #~ msgstr "1" @@ -9852,10 +10213,6 @@ msgstr "rusko" #~ msgid "SUBTOTAL" #~ msgstr "VMESNA VSOTA" -#, python-format -#~ msgid "The write method is not implemented on this object !" -#~ msgstr "Metoda 'write' ni implementirana za ta objekt." - #, python-format #~ msgid "Unable to change tax !" #~ msgstr "Ne morem spremeniti davka!" @@ -9924,10 +10281,6 @@ msgstr "rusko" #~ msgid "cancel" #~ msgstr "prekliči" -#, python-format -#~ msgid "Not Implemented" -#~ msgstr "Ni implementirano" - #, python-format #~ msgid "Invoices" #~ msgstr "Računi" @@ -9992,14 +10345,6 @@ msgstr "rusko" #~ msgid "March" #~ msgstr "marec" -#, python-format -#~ msgid "UserError" -#~ msgstr "NapakaUporabnika" - -#, python-format -#~ msgid "The copy method is not implemented on this object !" -#~ msgstr "Metoda 'copy' ni implementirana za ta objekt." - #, python-format #~ msgid "Integrity Error !" #~ msgstr "Napaka celovitosti!" @@ -10015,10 +10360,6 @@ msgstr "rusko" #~ msgid "Fri" #~ msgstr "pet" -#, python-format -#~ msgid "Not implemented get_memory method !" -#~ msgstr "Metoda 'get_memory' ni implementirana." - #, python-format #~ msgid "Thu" #~ msgstr "čet" @@ -10030,10 +10371,6 @@ msgstr "rusko" #~ msgid "Bad file format" #~ msgstr "Napačna oblika datoteke" -#, python-format -#~ msgid "This method does not exist anymore" -#~ msgstr "Ta metoda ne obstaja več" - #~ msgid "Preview" #~ msgstr "Predogled" @@ -10075,10 +10412,6 @@ msgstr "rusko" #~ msgid "No price available !" #~ msgstr "Ni razpoložljive cene!" -#, python-format -#~ msgid "ValidateError" -#~ msgstr "Napaka preverjanja" - #, python-format #~ msgid "Field %d should be a figure" #~ msgstr "Polje %d mora biti številka" @@ -10116,10 +10449,6 @@ msgstr "rusko" #~ msgid "May" #~ msgstr "maj" -#, python-format -#~ msgid "The value \"%s\" for the field \"%s\" is not in the selection" -#~ msgstr "Vrednost \"%s\" za polje \"%s\" ni na voljo pri izbiri" - #, python-format #~ msgid "Analytic account incomplete" #~ msgstr "Nepopoln analitični konto" @@ -10147,10 +10476,6 @@ msgstr "rusko" #~ msgid "Bad Configuration !" #~ msgstr "Nepravilna konfiguracija!" -#, python-format -#~ msgid "undefined get method !" -#~ msgstr "Nedefinirana metoda 'get'" - #, python-format #~ msgid "Workflow Test" #~ msgstr "Test delovnega toka" @@ -10277,10 +10602,6 @@ msgstr "rusko" #~ msgid "Contract ID" #~ msgstr "Oznaka pogodbe" -#, python-format -#~ msgid "The search method is not implemented on this object !" -#~ msgstr "Metoda 'search' ni implementirana za ta objekt." - #, python-format #~ msgid "Sun" #~ msgstr "ned" diff --git a/bin/addons/base/i18n/sq.po b/bin/addons/base/i18n/sq.po index 1e416015fef..a4386000314 100644 --- a/bin/addons/base/i18n/sq.po +++ b/bin/addons/base/i18n/sq.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2009-11-30 08:55+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:52+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:13+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +60,6 @@ msgstr "" msgid "View Architecture" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +110,14 @@ msgstr "" msgid "Created Views" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,10 +134,9 @@ msgid "South Korea" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" msgstr "" #. module: base @@ -140,13 +149,20 @@ msgstr "" msgid "Swaziland" msgstr "" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -175,13 +191,13 @@ msgid "Search Partner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "i ri" @@ -212,7 +228,7 @@ msgid "Contact Name" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -234,6 +250,12 @@ msgstr "" msgid "Wizard Name" msgstr "" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -266,7 +288,6 @@ msgstr "" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -317,7 +338,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -339,11 +360,6 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -351,6 +367,12 @@ msgid "" "name, it returns the previous report." msgstr "" +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -377,6 +399,12 @@ msgstr "" msgid "Schedule Upgrade" msgstr "" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -418,7 +446,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -665,6 +693,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -729,6 +763,14 @@ msgstr "" msgid "Type" msgstr "" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -755,6 +797,19 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -859,6 +914,16 @@ msgstr "" msgid "Search" msgstr "" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -914,13 +979,13 @@ msgid "ir.exports" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -951,6 +1016,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -998,7 +1069,7 @@ msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1099,12 +1170,6 @@ msgstr "" 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 #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1144,8 +1209,8 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr "" @@ -1223,7 +1288,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1234,7 +1299,8 @@ msgid "Malawi" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1283,7 +1349,6 @@ msgstr "" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1310,6 +1375,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1361,7 +1432,7 @@ msgid "Bahamas" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1382,6 +1453,12 @@ msgstr "" msgid "Number of modules updated" msgstr "" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1457,6 +1534,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1526,7 +1609,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1611,12 +1694,6 @@ msgstr "" msgid "French (BE) / Français (BE)" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1687,6 +1764,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1697,13 +1780,19 @@ msgstr "" msgid "Slovenia" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1733,6 +1822,14 @@ msgstr "" msgid "New Zealand" msgstr "" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1782,19 +1879,13 @@ msgstr "" msgid "Valid" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "" @@ -1905,6 +1996,15 @@ msgstr "" msgid "HR sector" msgstr "" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1958,6 +2058,11 @@ msgstr "" msgid "Main Company" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2044,8 +2149,9 @@ msgid "Sir" msgstr "" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2144,7 +2250,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2168,6 +2274,12 @@ msgstr "" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2188,7 +2300,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "" @@ -2213,6 +2331,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2265,11 +2388,6 @@ msgstr "" msgid "VAT" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2306,20 +2424,28 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" " %s" msgstr "" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2395,6 +2521,12 @@ msgstr "" msgid "EAN13" msgstr "" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2452,7 +2584,7 @@ msgid "Ecuador" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2518,7 +2650,7 @@ msgid "Action to Trigger" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2713,18 +2845,13 @@ msgstr "" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2770,7 +2897,7 @@ msgid "Rules" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2838,7 +2965,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -2868,6 +2995,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2899,7 +3032,7 @@ msgid "Benin" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2929,6 +3062,14 @@ msgstr "" msgid "API ID" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3174,6 +3315,12 @@ msgstr "" msgid "Nicaragua" msgstr "" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3452,7 +3599,8 @@ msgid "Bank Type" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "" @@ -3474,7 +3622,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3492,7 +3640,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3524,7 +3672,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3599,6 +3749,11 @@ msgstr "" msgid "Cape Verde" msgstr "" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3612,6 +3767,12 @@ msgstr "" msgid "ir.actions.url" msgstr "" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3645,8 +3806,9 @@ msgid "French / Français" msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" msgstr "" #. module: base @@ -3897,6 +4059,14 @@ msgstr "" msgid "ir.attachment" msgstr "" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3935,8 +4105,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -3966,11 +4136,8 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" msgstr "" #. module: base @@ -4079,6 +4246,18 @@ msgstr "" msgid "Signature" msgstr "" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4100,7 +4279,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4141,8 +4320,10 @@ msgid "Contacts" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" msgstr "" #. module: base @@ -4172,6 +4353,12 @@ msgstr "" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4216,14 +4403,8 @@ msgid "Mongolia" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -4338,11 +4519,6 @@ msgstr "" msgid "Password" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4442,7 +4618,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4510,7 +4686,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4588,7 +4764,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4661,7 +4843,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4709,6 +4891,11 @@ msgstr "" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4823,6 +5010,14 @@ msgstr "" msgid "Nepal" msgstr "" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4852,14 +5047,14 @@ msgid "Update Modules List" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4878,6 +5073,12 @@ msgstr "" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5008,6 +5209,13 @@ msgstr "" msgid "Iteration" msgstr "" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5046,7 +5254,12 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "" @@ -5057,7 +5270,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5067,6 +5280,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5184,7 +5403,7 @@ msgid "ir.actions.todo" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5258,17 +5477,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5277,7 +5502,7 @@ msgid "Python Code" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "" @@ -5396,7 +5621,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5435,7 +5660,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5647,7 +5872,7 @@ msgid "Afghanistan, Islamic State of" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "" @@ -5668,6 +5893,12 @@ msgstr "" msgid "Kind" msgstr "" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5923,6 +6154,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5932,11 +6171,6 @@ msgstr "" msgid "Address" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6015,7 +6249,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6099,7 +6333,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6120,11 +6354,19 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6171,6 +6413,14 @@ msgstr "" msgid "Home Action" msgstr "" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6199,10 +6449,9 @@ msgid "Stop All" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6253,7 +6502,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6311,7 +6560,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6363,7 +6612,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6444,7 +6693,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6482,6 +6738,12 @@ msgstr "" msgid "Arguments" msgstr "" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6492,14 +6754,29 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" msgstr "" #. module: base @@ -6605,7 +6882,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6656,6 +6933,15 @@ msgstr "" msgid "Object" msgstr "" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6691,7 +6977,7 @@ msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6832,7 +7118,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6888,7 +7174,7 @@ msgid "Action Type" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -6991,11 +7277,23 @@ msgstr "" msgid "workflow.instance" msgstr "" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7170,6 +7468,11 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7307,7 +7610,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7505,7 +7808,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7549,6 +7852,14 @@ msgstr "" msgid "Antigua and Barbuda" msgstr "" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7607,7 +7918,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7617,6 +7928,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7673,6 +7989,35 @@ msgstr "" msgid "Turkmenistan" msgstr "" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7801,7 +8146,7 @@ msgid "Internal Header/Footer" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7840,6 +8185,14 @@ msgstr "" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7863,7 +8216,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7910,11 +8263,18 @@ msgid "Low" msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7923,7 +8283,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8077,7 +8437,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8089,6 +8449,11 @@ msgstr "" msgid "Resource" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8100,7 +8465,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8112,6 +8477,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8236,7 +8609,7 @@ msgid "Azerbaijan" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "" @@ -8263,8 +8636,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" msgstr "" #. module: base @@ -8563,7 +8936,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8623,7 +8996,7 @@ msgid "Workflow Instances" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "" diff --git a/bin/addons/base/i18n/sr.po b/bin/addons/base/i18n/sr.po index df4fafb648a..c69456d81c9 100644 --- a/bin/addons/base/i18n/sr.po +++ b/bin/addons/base/i18n/sr.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-11-15 08:29+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Serbian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:57+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:19+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -41,6 +41,14 @@ msgstr "Ostale Konfiguracije" msgid "DateTime" msgstr "Datum i vreme" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -53,12 +61,6 @@ msgstr "Meta podaci" msgid "View Architecture" msgstr "Arhitektura pregleda" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Ne možete da kreirate ovu vrstu dokumenta (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -109,6 +111,14 @@ msgstr "Prikaži savete menija" msgid "Created Views" msgstr "Kreirani pregledi" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -125,11 +135,10 @@ msgid "South Korea" msgstr "Južna Koreja" #. 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 "Prelazi" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -141,13 +150,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Švedska" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "Dobavljač Drveta" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -179,14 +195,14 @@ msgid "Search Partner" msgstr "Pronađi partnera" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" "\"smtp_server\" treba da je postavljen tako da šalje Emailove korisnicima" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "novo" @@ -217,7 +233,7 @@ msgid "Contact Name" msgstr "Ime kontakta" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -241,6 +257,12 @@ msgstr "aktivno" msgid "Wizard Name" msgstr "Naziv čarobnjaka" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -273,7 +295,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "Vidžet" @@ -324,7 +345,7 @@ msgid "Netherlands Antilles" msgstr "Holandski Antili" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -348,11 +369,6 @@ msgstr "Greek / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "Bosanski / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -362,6 +378,12 @@ msgstr "" "Ako ovo obeležite, kada drugi put korisnik štampa sa istim nazivom priloga, " "vratiće prethodni izveštaj." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "Metoda za čitanje nije implementirana u ovaj objekat !" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -388,6 +410,12 @@ msgstr "Kolumbija" msgid "Schedule Upgrade" msgstr "Planiraj nadogradnju" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -432,7 +460,7 @@ msgid "Miscellaneous Suppliers" msgstr "Ostali sitni Dobavljači" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Posebnim poljima naziv mora da počinje sa 'x_' !" @@ -688,6 +716,12 @@ msgid "" "available" msgstr "Postavi jezik za korisnički interfejs, kada je UI dostupan" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "Metoda za prekid veze nije implementirana u ovaj objekat !" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -752,6 +786,14 @@ msgstr "%B - Pun naziv meseca." msgid "Type" msgstr "Tip" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -778,6 +820,19 @@ msgstr "Neispravan XML za arhitekturu pregleda!" msgid "Cayman Islands" msgstr "Kajmanska ostrva" +#. 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 "Prelazi" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -888,6 +943,16 @@ msgstr "Haiti" msgid "Search" msgstr "Pronađi" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -945,13 +1010,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "Ne postoji jezik sa %s kodom" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -985,6 +1050,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "Metoda pretrage nije implementirana za ovaj objekat !" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1032,7 +1103,7 @@ msgid "On Create" msgstr "Pri kreiranju" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1151,12 +1222,6 @@ msgstr "Priključena šifra" msgid "Day: %(day)s" msgstr "Dan: %(day)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Ne možete da pročitate ovaj dokument! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1198,8 +1263,8 @@ msgstr "" "object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (kopija)" @@ -1279,7 +1344,7 @@ msgid "Formula" msgstr "Formula" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "Ne mogu ukloniti root korisnika!" @@ -1290,7 +1355,8 @@ msgid "Malawi" msgstr "Malavi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "%s (kopija)" @@ -1342,7 +1408,6 @@ msgstr "Stablo" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1372,6 +1437,12 @@ msgstr "" "Kada koristite CSV format, molim, takođe proverite da prva linija fašeg " "fajla sadrži jedno od sledećih:" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "Nije implementirana search_memory metoda !" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1426,7 +1497,7 @@ msgid "Bahamas" msgstr "Bahami" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1449,6 +1520,12 @@ msgstr "Irska" msgid "Number of modules updated" msgstr "Broj ažuriranih modula" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "Nije implementirana set_memory metoda !" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1528,6 +1605,12 @@ msgstr "" "Zarezom razdvojena lista dozvoljenih modova kao što su 'form', 'tree', " "'calendar', itd. ( Podrazumevano: tree,form)" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1600,7 +1683,7 @@ msgid "Madagascar" msgstr "Madagaskar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1690,12 +1773,6 @@ msgstr "Email adresa" msgid "French (BE) / Français (BE)" msgstr "Francuski (BE) / Français (BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Ne možete da pišete u ovom dokumentu! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1768,6 +1845,12 @@ msgstr "" "Ime objekta čije će funkcije biti pozvane kada šeduler bude pokrenut npr " "'res.partener'" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "Metoda perm_rad nije implementirana u ovaj objekat !" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1778,13 +1861,19 @@ msgstr "" msgid "Slovenia" msgstr "Slovenija" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1814,6 +1903,14 @@ msgstr "Datum završetka" msgid "New Zealand" msgstr "Novi Zeland" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1863,19 +1960,13 @@ msgstr "Greška! Ne možete da napravite rekurzivna preduzeća." msgid "Valid" msgstr "Potvrđeno" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Ne možete da izbrišete ovaj dokument! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "Ne možete da nadogradite modul '%s'. Nije instaliran." @@ -1986,6 +2077,15 @@ msgstr "Signal (podtok.*)" msgid "HR sector" msgstr "Sektor ljudskih resursa" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -2039,6 +2139,11 @@ msgstr "Zavisnosti" msgid "Main Company" msgstr "Glavno preduzeće" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2129,9 +2234,10 @@ msgid "Sir" msgstr "Gospodin" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" -msgstr "Selektuj paket modula za Uvoz (npr. ,zip fajl):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" +msgstr "" #. module: base #: field:ir.default,ref_id:0 @@ -2229,7 +2335,7 @@ msgid "Mayotte" msgstr "Majote" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "Odaberite akciju koju želite da pokrenete !" @@ -2253,6 +2359,12 @@ msgstr "Desno na levo" msgid "Filters" msgstr "Filteri" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "Proverite da svi redovi imaju %d kolona." + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2274,7 +2386,13 @@ msgstr "" "Ukoliko nije postavljeno, deluje kao podrazumevana vrednost za nove resurse" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "Detektovana rekurzivnost." + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "Rekurzivna greška u zavisnosti modula !" @@ -2304,6 +2422,11 @@ msgstr "" "PDV broj. Obeležite polje ako partner podpada pod PDV. Koristi se pri " "zakonskim PDV izveštajima." +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2356,11 +2479,6 @@ msgstr "EAN provera" msgid "VAT" msgstr "PDV" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2397,7 +2515,7 @@ msgid "M." msgstr "M." #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2406,13 +2524,21 @@ msgstr "" "Ne mogu da kreiram datoteku modula:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Narau" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2488,6 +2614,12 @@ msgstr "Pošalji SMS" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2545,7 +2677,7 @@ msgid "Ecuador" msgstr "Evkador" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2616,7 +2748,7 @@ msgid "Action to Trigger" msgstr "Akcija do okidača" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2817,18 +2949,13 @@ msgstr "Autor" msgid "FYROM" msgstr "Makedonia" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Napredna pretraga" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Odgovarajući prikaz datuma i vremena." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2874,7 +3001,7 @@ msgid "Rules" msgstr "Pravila" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2946,7 +3073,7 @@ msgid "Lesotho" msgstr "Lesoto" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "Ne možete izbrisati model '%s' !" @@ -2976,6 +3103,12 @@ msgstr "" msgid "System Configuration Done" msgstr "Konfiguracija Sistema je završena" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "Greška prilikom provere polja %s: %s" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -3007,7 +3140,7 @@ msgid "Benin" msgstr "Benin" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -3037,6 +3170,14 @@ msgstr "RML zaglavlje" msgid "API ID" msgstr "Šifra API-ja" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3287,6 +3428,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "Nikaragva" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "Metoda pisanja nije implementirana u ovom objektu !" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3573,7 +3720,8 @@ msgid "Bank Type" msgstr "Vrsta banke" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "Naziv grupe ne može da počinje sa \"-\"" @@ -3595,7 +3743,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3613,7 +3761,7 @@ msgid "Flow Start" msgstr "Početak toka" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3645,7 +3793,9 @@ msgid "Guadeloupe (French)" msgstr "Gvadelup (Francuska)" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "Greška Korisnika" @@ -3723,6 +3873,11 @@ msgstr "" msgid "Cape Verde" msgstr "Zelenortska ostrva" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "Selektuj paket modula za Uvoz (npr. ,zip fajl):" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3736,6 +3891,12 @@ msgstr "Događaji" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "Pogrešna šifra za pregled zapisa, dobijen %r, a očekivan celi broj." + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3769,9 +3930,10 @@ msgid "French / Français" msgstr "Francuski / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Kreirani meniji" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "Metoda kreiranje nije implemenirana u ovaj objekat !" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -4022,6 +4184,14 @@ msgstr "Savet" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -4062,8 +4232,8 @@ msgid "Project" msgstr "Projekat" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -4093,12 +4263,9 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Kupac" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "Revizija( Audit)" #. module: base #: model:res.country,name:base.lc @@ -4206,6 +4373,18 @@ msgstr "Vijetnam" msgid "Signature" msgstr "Potpis" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "Nije implementirano" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4227,7 +4406,7 @@ msgid "False means for every user" msgstr "Neistina se podrazumeva za sve korisnike" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4268,9 +4447,11 @@ msgid "Contacts" msgstr "Kontakti" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Farska ostrva" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4299,6 +4480,12 @@ msgstr "Češka Republika" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4345,15 +4532,9 @@ msgid "Mongolia" msgstr "Mongolija" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Greška" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Kreirani meniji" #. module: base #: selection:ir.ui.view,type:0 @@ -4467,11 +4648,6 @@ msgstr "Sveti Vinsent & Grenadini" msgid "Password" msgstr "Lozinka" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4572,7 +4748,7 @@ msgid "Change My Preferences" msgstr "Izmena postavki" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Neispravno ime modela u definiciji akcije" @@ -4640,7 +4816,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4723,7 +4899,13 @@ msgid "Client Actions" msgstr "Akcije Klijenata" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4798,7 +4980,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Modul %s: Nevaljan certifikat o kvaliteti" @@ -4849,6 +5031,11 @@ msgstr "Pošalji SMS" msgid "Accepted Users" msgstr "Prihvaćeni korisnici" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4966,6 +5153,14 @@ msgstr "" msgid "Nepal" msgstr "Nepal" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4998,14 +5193,14 @@ msgid "Update Modules List" msgstr "Ažuriraj listu modula" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -5024,6 +5219,12 @@ msgstr "Nastavi" msgid "Thai / ภาษาไทย" msgstr "Thai / ภาษาไทย" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5154,6 +5355,13 @@ msgstr "Puno ime države." msgid "Iteration" msgstr "Ponavljanje" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "Korisnička greška" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5192,7 +5400,12 @@ msgid "Solomon Islands" msgstr "Solomonska ostrva" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "Greška u pristupu" @@ -5203,7 +5416,7 @@ msgid "Waiting" msgstr "Čekanje" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5213,6 +5426,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "Metoda copy nije implementirana u ovaj objekat !" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5334,7 +5553,7 @@ msgid "ir.actions.todo" msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "Ne mogu da pronađem predhodnu ir.actions.todo" @@ -5408,17 +5627,23 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "Ne možeš izbrisati jezik koji je kirisnikov izabrani jezik !" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "Nije implementirana metoda get_memory !" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5427,7 +5652,7 @@ msgid "Python Code" msgstr "Python kod" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "Ne može da se kreira datoteka modula: %s !" @@ -5548,7 +5773,7 @@ msgstr "" "\"forma\" za drugačiji pregled" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5591,7 +5816,7 @@ msgstr "" "kreiranje)." #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "Molim Specifiviraj opciju srevera --email-from !" @@ -5808,7 +6033,7 @@ msgid "Afghanistan, Islamic State of" msgstr "Avganistan, Islamska država" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Greška !" @@ -5829,6 +6054,12 @@ msgstr "Jedinica intervala" msgid "Kind" msgstr "Vrsta" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "Ova metoda više ne postoji" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -6091,6 +6322,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "Za pretragu oficijelnih prevoda, možeš početii sa ovim vezama:" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -6100,11 +6339,6 @@ msgstr "Za pretragu oficijelnih prevoda, možeš početii sa ovim vezama:" msgid "Address" msgstr "Adresa" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6183,7 +6417,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "Sveti Kits & Nevis Angvila" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6269,7 +6503,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6294,11 +6528,19 @@ msgid "Child IDs" msgstr "Šifre potomaka" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Problem u konfiguraciji 'Šifre zapisa' u serverskoj akciji!" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "Greška u potvrdi" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6347,6 +6589,16 @@ msgstr "E-mail" msgid "Home Action" msgstr "Početna akcija" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" +"Zbir podataka (2. polje) je nula.\n" +"Ne možemo da iscrtamo grafikon u obliku pite !" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6375,10 +6627,9 @@ msgid "Stop All" msgstr "Zaustavi sve" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6431,7 +6682,7 @@ msgid "Start update" msgstr "Počni Nadogradnju" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6489,7 +6740,7 @@ msgid "HR Manager Dashboard" msgstr "Tabla Menadžmenta Ljudskih Resursa" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6541,7 +6792,7 @@ msgid "Module Update" msgstr "Nadogradi Module" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6623,7 +6874,14 @@ msgstr "" "Novo Pravo Korisničko ime, koristiće se za pretrage i većinu listinga." #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6661,6 +6919,12 @@ msgstr "Za" msgid "Arguments" msgstr "Argumenti" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6671,15 +6935,30 @@ msgstr "GPL Version 2" msgid "GPL Version 3" msgstr "GPL Version 3" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "Ispravan EAN13" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" -msgstr "Revizija( Audit)" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "Vrednost \"%s\" za polje \"%s\" nije u izabranom" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Kupac" #. module: base #: selection:base.language.install,lang:0 @@ -6784,7 +7063,7 @@ msgid "Copy Object" msgstr "Kopiraj Objekat" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6835,6 +7114,15 @@ msgstr "Vezana tabela" msgid "Object" msgstr "Objekt" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6872,7 +7160,7 @@ msgid "User Ref." msgstr "Vezani korisnik" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "Upozorenje !" @@ -7013,7 +7301,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -7071,7 +7359,7 @@ msgid "Action Type" msgstr "Tip akcije" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7174,11 +7462,23 @@ msgstr "Šifra države" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "nedefinisana get metoda !" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7355,6 +7655,11 @@ msgstr "Pošalji e-mail" msgid "Menu Action" msgstr "Meni akcija" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Farska ostrva" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7497,7 +7802,7 @@ msgid "China" msgstr "Kina" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7700,7 +8005,7 @@ msgid "Account No." msgstr "Br Naloga" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Osnovni jezik 'en_US' ne može biti izbrisan !" @@ -7744,6 +8049,14 @@ msgstr "Prevedene vrednosti" msgid "Antigua and Barbuda" msgstr "Antiga i Barbuda" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7802,7 +8115,7 @@ msgid "Auto-Refresh" msgstr "Automatsko osvežavanje" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7812,6 +8125,11 @@ msgstr "" msgid "Diagram" msgstr "Dijagram" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis and Futuna Ostrva" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7868,6 +8186,35 @@ msgstr "Šifra identifikatora banke" msgid "Turkmenistan" msgstr "Turkmenistan" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Greška" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7996,7 +8343,7 @@ msgid "Internal Header/Footer" msgstr "Unutrašnje zaglavlje/podnožje" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -8037,6 +8384,14 @@ msgstr "Dominikanska Republika" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -8062,7 +8417,7 @@ msgid "Event Logs" msgstr "Logovi Događaja" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "Konfiguracija sistema je završena" @@ -8109,11 +8464,18 @@ msgid "Low" msgstr "Nizak" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Greška ! Ne možeš kreirati rekursivni meni." +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -8124,7 +8486,7 @@ msgstr "" "kombinovan sa logičkim OR operatorom." #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8278,7 +8640,7 @@ msgid "View Auto-Load" msgstr "Automatsko učitavanje pregleda" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Ne možeš ukloniti polje '%s' !" @@ -8290,6 +8652,11 @@ msgstr "Ne možeš ukloniti polje '%s' !" msgid "Resource" msgstr "Resurs" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8301,7 +8668,7 @@ msgid "View Ordering" msgstr "pregeld Zahteva" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8315,6 +8682,14 @@ msgstr "" "POdržani formati fajlova: *,csv (zarezom razdvojene vrednosti) ili *,po " "(GetText Portable Objekti)" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8439,7 +8814,7 @@ msgid "Azerbaijan" msgstr "Azerbejdžan" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Upozorenje" @@ -8466,9 +8841,9 @@ msgid "Czech / Čeština" msgstr "Češki / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis and Futuna Ostrva" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Napredna pretraga" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8774,7 +9149,7 @@ msgid "Account Owner" msgstr "Vlasnik računa" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8834,7 +9209,7 @@ msgid "Workflow Instances" msgstr "Instance toka posla" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Partneri: " @@ -8897,16 +9272,16 @@ msgstr "Ruski / русский язык" #~ msgid "%j - Day of the year as a decimal number [001,366]." #~ msgstr "%j - Dan u godini kao decimalni broj [001,366]." +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Ne možete da kreirate ovu vrstu dokumenta (%s)" + #~ msgid "Outgoing transitions" #~ msgstr "Odlazni prelazi" #~ msgid "Yearly" #~ msgstr "Godišnji" -#, python-format -#~ msgid "The unlink method is not implemented on this object !" -#~ msgstr "Metoda za prekid veze nije implementirana u ovaj objekat !" - #~ 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 " @@ -8974,10 +9349,6 @@ msgstr "Ruski / русский язык" #~ msgid "Configure" #~ msgstr "Podesi" -#, python-format -#~ msgid "The read method is not implemented on this object !" -#~ msgstr "Metoda za čitanje nije implementirana u ovaj objekat !" - #~ msgid "STOCK_MEDIA_REWIND" #~ msgstr "STOCK_MEDIA_REWIND" @@ -9033,14 +9404,6 @@ msgstr "Ruski / русский язык" #~ msgid "You try to bypass an access rule (Document type: %s)." #~ msgstr "Pokušavate da zaobiđete pravilo za pristup (Dokument tipa: %s)." -#, python-format -#~ msgid "" -#~ "The sum of the data (2nd field) is null.\n" -#~ "We can't draw a pie chart !" -#~ msgstr "" -#~ "Zbir podataka (2. polje) je nula.\n" -#~ "Ne možemo da iscrtamo grafikon u obliku pite !" - #~ msgid "Sequence Name" #~ msgstr "Naziv sekvence" @@ -9114,6 +9477,10 @@ msgstr "Ruski / русский язык" #~ msgid "Simple domain setup" #~ msgstr "Jednostavna podešavanja domena" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Ne možete da pročitate ovaj dokument! (%s)" + #~ msgid "STOCK_FIND_AND_REPLACE" #~ msgstr "STOCK_FIND_AND_REPLACE" @@ -9141,20 +9508,12 @@ msgstr "Ruski / русский язык" #~ msgid "STOCK_CLEAR" #~ msgstr "STOCK_CLEAR" -#, python-format -#~ msgid "Not implemented search_memory method !" -#~ msgstr "Nije implementirana search_memory metoda !" - #~ msgid "Commercial Prospect" #~ msgstr "Komercijalna očekivanja" #~ msgid "Year without century: %(y)s" #~ msgstr "Godina bez veka: %(y)s" -#, python-format -#~ msgid "Not implemented set_memory method !" -#~ msgstr "Nije implementirana set_memory metoda !" - #~ msgid "Maintenance contract added !" #~ msgstr "Dodat je ugovor o održavanju !" @@ -9181,16 +9540,16 @@ msgstr "Ruski / русский язык" #~ msgid "Configure User" #~ msgstr "Podešavanje korisnika" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Ne možete da pišete u ovom dokumentu! (%s)" + #~ msgid "left" #~ msgstr "levo" #~ msgid "STOCK_PRINT_PREVIEW" #~ msgstr "STOCK_PRINT_PREVIEW" -#, python-format -#~ msgid "The perm_read method is not implemented on this object !" -#~ msgstr "Metoda perm_rad nije implementirana u ovaj objekat !" - #~ msgid "STOCK_MEDIA_PLAY" #~ msgstr "STOCK_MEDIA_PLAY" @@ -9206,6 +9565,10 @@ msgstr "Ruski / русский язык" #~ msgid "right" #~ msgstr "desno" +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Ne možete da izbrišete ovaj dokument! (%s)" + #~ msgid "Others Partners" #~ msgstr "Drugi partneri" @@ -9261,17 +9624,9 @@ msgstr "Ruski / русский язык" #~ msgid "Report Footer" #~ msgstr "Podnožje izveštaja" -#, python-format -#~ msgid "Please check that all your lines have %d columns." -#~ msgstr "Proverite da svi redovi imaju %d kolona." - #~ msgid "Import language" #~ msgstr "Uvezi jezik" -#, python-format -#~ msgid "Recursivity Detected." -#~ msgstr "Detektovana rekurzivnost." - #~ msgid "Categories of Modules" #~ msgstr "Kategorije modula" @@ -9326,10 +9681,6 @@ msgstr "Ruski / русский язык" #~ msgid "System Upgrade" #~ msgstr "Nadogradnja sistema" -#, python-format -#~ msgid "The create method is not implemented on this object !" -#~ msgstr "Metoda kreiranje nije implemenirana u ovaj objekat !" - #~ msgid "Partner Address" #~ msgstr "Adresa partnera" @@ -9375,10 +9726,6 @@ msgstr "Ruski / русский язык" #~ "korišćene opcije ili polja su automatski skrivena. Bićete u mogućnosti " #~ "dapromeniti ovo kasnije kroz administracijski meni." -#, python-format -#~ msgid "Error occurred while validating the field(s) %s: %s" -#~ msgstr "Greška prilikom provere polja %s: %s" - #~ msgid "The rule is satisfied if all test are True (AND)" #~ msgstr "Pravilo je zadovoljeno ako su svi testovi istina (logičko I (AND))" @@ -9411,10 +9758,6 @@ msgstr "Ruski / русский язык" #~ msgstr "" #~ "Grupe se koriste za definisanje prava pristupa svakom ekranu i meniju." -#, python-format -#~ msgid "The write method is not implemented on this object !" -#~ msgstr "Metoda pisanja nije implementirana u ovom objektu !" - #~ msgid "Sale Opportunity" #~ msgstr "Prodajna prilika" @@ -9480,10 +9823,6 @@ msgstr "Ruski / русский язык" #~ msgid "STOCK_MEDIA_STOP" #~ msgstr "STOCK_MEDIA_STOP" -#, python-format -#~ msgid "Wrong ID for the browse record, got %r, expected an integer." -#~ msgstr "Pogrešna šifra za pregled zapisa, dobijen %r, a očekivan celi broj." - #~ msgid "STOCK_DND_MULTIPLE" #~ msgstr "STOCK_DND_MULTIPLE" @@ -9555,10 +9894,6 @@ msgstr "Ruski / русский язык" #~ msgid "Calculate Count" #~ msgstr "Izbroji" -#, python-format -#~ msgid "Not Implemented" -#~ msgstr "Nije implementirano" - #~ msgid "Maintenance" #~ msgstr "Održavanje" @@ -9661,17 +9996,9 @@ msgstr "Ruski / русский язык" #~ msgid "html" #~ msgstr "html" -#, python-format -#~ msgid "UserError" -#~ msgstr "Korisnička greška" - #~ msgid "STOCK_MEDIA_RECORD" #~ msgstr "STOCK_MEDIA_RECORD" -#, python-format -#~ msgid "The copy method is not implemented on this object !" -#~ msgstr "Metoda copy nije implementirana u ovaj objekat !" - #~ msgid "None" #~ msgstr "Ništa" @@ -9705,10 +10032,6 @@ msgstr "Ruski / русский язык" #~ msgid "You cannot perform this operation." #~ msgstr "Ne možete da izvršite ovu operaciju." -#, python-format -#~ msgid "Not implemented get_memory method !" -#~ msgstr "Nije implementirana metoda get_memory !" - #~ msgid "Customers Partners" #~ msgstr "Partneri kupci" @@ -9767,10 +10090,6 @@ msgstr "Ruski / русский язык" #~ msgid "Number too large '%d', can not translate it" #~ msgstr "Broj je prevelik '%d', ne mogu da ga prevedem" -#, python-format -#~ msgid "This method does not exist anymore" -#~ msgstr "Ova metoda više ne postoji" - #~ msgid "Manual" #~ msgstr "Ručno" @@ -9841,10 +10160,6 @@ msgstr "Ruski / русский язык" #~ msgid "Ok" #~ msgstr "Ok" -#, python-format -#~ msgid "ValidateError" -#~ msgstr "Greška u potvrdi" - #~ msgid "STOCK_DISCONNECT" #~ msgstr "STOCK_DISCONNECT" @@ -9892,10 +10207,6 @@ msgstr "Ruski / русский язык" #~ msgid "sxw" #~ msgstr "sxw" -#, python-format -#~ msgid "The value \"%s\" for the field \"%s\" is not in the selection" -#~ msgstr "Vrednost \"%s\" za polje \"%s\" nije u izabranom" - #~ msgid "Automatic XSL:RML" #~ msgstr "Automatski XSL:RML" @@ -9979,10 +10290,6 @@ msgstr "Ruski / русский язык" #~ msgid "Status" #~ msgstr "Stanje" -#, python-format -#~ msgid "undefined get method !" -#~ msgstr "nedefinisana get metoda !" - #~ msgid "ir.report.custom" #~ msgstr "ir.report.custom" @@ -10191,10 +10498,6 @@ msgstr "Ruski / русский язык" #~ msgid "Add Maintenance Contract" #~ msgstr "Dodavanje ugovora o održavanju" -#, python-format -#~ msgid "The search method is not implemented on this object !" -#~ msgstr "Metoda pretrage nije implementirana za ovaj objekat !" - #~ msgid "Unsubscribed" #~ msgstr "Odjavljen" diff --git a/bin/addons/base/i18n/sr@latin.po b/bin/addons/base/i18n/sr@latin.po index 3169d9d1609..9c9bff8b13a 100644 --- a/bin/addons/base/i18n/sr@latin.po +++ b/bin/addons/base/i18n/sr@latin.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-10 14:35+0000\n" "Last-Translator: Dejan Milosavljevic \n" "Language-Team: Serbian latin \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 05:00+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:22+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -41,6 +41,14 @@ msgstr "Ostale Konfiguracije" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -53,12 +61,6 @@ msgstr "Meta podaci" msgid "View Architecture" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -109,6 +111,14 @@ msgstr "" msgid "Created Views" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -125,10 +135,9 @@ msgid "South Korea" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" msgstr "" #. module: base @@ -141,13 +150,20 @@ msgstr "" msgid "Swaziland" msgstr "" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -176,13 +192,13 @@ msgid "Search Partner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "" @@ -213,7 +229,7 @@ msgid "Contact Name" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -235,6 +251,12 @@ msgstr "" msgid "Wizard Name" msgstr "" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -267,7 +289,6 @@ msgstr "" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -318,7 +339,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -340,11 +361,6 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -352,6 +368,12 @@ msgid "" "name, it returns the previous report." msgstr "" +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -378,6 +400,12 @@ msgstr "" msgid "Schedule Upgrade" msgstr "" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -419,7 +447,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -666,6 +694,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -730,6 +764,14 @@ msgstr "" msgid "Type" msgstr "" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -756,6 +798,19 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -860,6 +915,16 @@ msgstr "" msgid "Search" msgstr "" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -915,13 +980,13 @@ msgid "ir.exports" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -952,6 +1017,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -999,7 +1070,7 @@ msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1100,12 +1171,6 @@ msgstr "" 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 #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1145,8 +1210,8 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr "" @@ -1224,7 +1289,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1235,7 +1300,8 @@ msgid "Malawi" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1284,7 +1350,6 @@ msgstr "" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1311,6 +1376,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1362,7 +1433,7 @@ msgid "Bahamas" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1383,6 +1454,12 @@ msgstr "" msgid "Number of modules updated" msgstr "" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1458,6 +1535,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1527,7 +1610,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1612,12 +1695,6 @@ msgstr "" msgid "French (BE) / Français (BE)" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1688,6 +1765,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1698,13 +1781,19 @@ msgstr "" msgid "Slovenia" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1734,6 +1823,14 @@ msgstr "" msgid "New Zealand" msgstr "" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1783,19 +1880,13 @@ msgstr "" msgid "Valid" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "" @@ -1906,6 +1997,15 @@ msgstr "" msgid "HR sector" msgstr "" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1959,6 +2059,11 @@ msgstr "" msgid "Main Company" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2045,8 +2150,9 @@ msgid "Sir" msgstr "" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2145,7 +2251,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2169,6 +2275,12 @@ msgstr "" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2189,7 +2301,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "" @@ -2214,6 +2332,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2266,11 +2389,6 @@ msgstr "" msgid "VAT" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2307,20 +2425,28 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" " %s" msgstr "" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2396,6 +2522,12 @@ msgstr "" msgid "EAN13" msgstr "" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2453,7 +2585,7 @@ msgid "Ecuador" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2519,7 +2651,7 @@ msgid "Action to Trigger" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2714,18 +2846,13 @@ msgstr "" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2771,7 +2898,7 @@ msgid "Rules" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2839,7 +2966,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -2869,6 +2996,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2900,7 +3033,7 @@ msgid "Benin" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2930,6 +3063,14 @@ msgstr "" msgid "API ID" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3175,6 +3316,12 @@ msgstr "" msgid "Nicaragua" msgstr "" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3453,7 +3600,8 @@ msgid "Bank Type" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "" @@ -3475,7 +3623,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3493,7 +3641,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3525,7 +3673,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3600,6 +3750,11 @@ msgstr "" msgid "Cape Verde" msgstr "" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3613,6 +3768,12 @@ msgstr "" msgid "ir.actions.url" msgstr "" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3646,8 +3807,9 @@ msgid "French / Français" msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" msgstr "" #. module: base @@ -3898,6 +4060,14 @@ msgstr "" msgid "ir.attachment" msgstr "" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3936,8 +4106,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -3967,11 +4137,8 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" msgstr "" #. module: base @@ -4080,6 +4247,18 @@ msgstr "" msgid "Signature" msgstr "" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4101,7 +4280,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4142,8 +4321,10 @@ msgid "Contacts" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" msgstr "" #. module: base @@ -4173,6 +4354,12 @@ msgstr "" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4217,14 +4404,8 @@ msgid "Mongolia" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -4339,11 +4520,6 @@ msgstr "" msgid "Password" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4443,7 +4619,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4511,7 +4687,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4589,7 +4765,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4662,7 +4844,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4710,6 +4892,11 @@ msgstr "" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4824,6 +5011,14 @@ msgstr "" msgid "Nepal" msgstr "" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4853,14 +5048,14 @@ msgid "Update Modules List" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4879,6 +5074,12 @@ msgstr "" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5009,6 +5210,13 @@ msgstr "" msgid "Iteration" msgstr "" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5047,7 +5255,12 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "" @@ -5058,7 +5271,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5068,6 +5281,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5185,7 +5404,7 @@ msgid "ir.actions.todo" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5259,17 +5478,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5278,7 +5503,7 @@ msgid "Python Code" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "" @@ -5397,7 +5622,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5436,7 +5661,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5648,7 +5873,7 @@ msgid "Afghanistan, Islamic State of" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "" @@ -5669,6 +5894,12 @@ msgstr "" msgid "Kind" msgstr "" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5924,6 +6155,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5933,11 +6172,6 @@ msgstr "" msgid "Address" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6016,7 +6250,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6100,7 +6334,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6121,11 +6355,19 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6172,6 +6414,14 @@ msgstr "" msgid "Home Action" msgstr "" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6200,10 +6450,9 @@ msgid "Stop All" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6254,7 +6503,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6312,7 +6561,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6364,7 +6613,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6445,7 +6694,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6483,6 +6739,12 @@ msgstr "" msgid "Arguments" msgstr "" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6493,14 +6755,29 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" msgstr "" #. module: base @@ -6606,7 +6883,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6657,6 +6934,15 @@ msgstr "" msgid "Object" msgstr "" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6692,7 +6978,7 @@ msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6833,7 +7119,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6889,7 +7175,7 @@ msgid "Action Type" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -6992,11 +7278,23 @@ msgstr "" msgid "workflow.instance" msgstr "" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7171,6 +7469,11 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7308,7 +7611,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7506,7 +7809,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7550,6 +7853,14 @@ msgstr "" msgid "Antigua and Barbuda" msgstr "" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7608,7 +7919,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7618,6 +7929,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7674,6 +7990,35 @@ msgstr "" msgid "Turkmenistan" msgstr "" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7802,7 +8147,7 @@ msgid "Internal Header/Footer" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7841,6 +8186,14 @@ msgstr "" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7864,7 +8217,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7911,11 +8264,18 @@ msgid "Low" msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7924,7 +8284,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8078,7 +8438,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8090,6 +8450,11 @@ msgstr "" msgid "Resource" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8101,7 +8466,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8113,6 +8478,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8237,7 +8610,7 @@ msgid "Azerbaijan" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "" @@ -8264,8 +8637,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" msgstr "" #. module: base @@ -8564,7 +8937,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8624,7 +8997,7 @@ msgid "Workflow Instances" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "" diff --git a/bin/addons/base/i18n/sv.po b/bin/addons/base/i18n/sv.po index c75ccbbf778..51fbc01e23d 100644 --- a/bin/addons/base/i18n/sv.po +++ b/bin/addons/base/i18n/sv.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-28 20:45+0000\n" -"Last-Translator: Anders Eriksson, Aspirix AB \n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" +"PO-Revision-Date: 2010-12-29 07:16+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: <>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-29 04:40+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:20+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,14 @@ msgstr "Övrig Konfiguration" msgid "DateTime" msgstr "DatumTid" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +60,6 @@ msgstr "Metadata" msgid "View Architecture" msgstr "Visa arkitektur" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Du saknar rättigheter att skapa denna typ av dokument! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +110,14 @@ msgstr "Visa Meny Tips" msgid "Created Views" msgstr "Skapade vyer" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,11 +134,10 @@ msgid "South Korea" msgstr "Sydkorea" #. 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 "Övergångar" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -140,13 +149,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Swaziland" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "Träleverantör" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -178,13 +194,13 @@ msgid "Search Partner" msgstr "Sök företag" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "\"Smtp_server\" måste ställas in för att skicka mail till användare" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "ny" @@ -215,7 +231,7 @@ msgid "Contact Name" msgstr "Kontaktnamn" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -239,6 +255,12 @@ msgstr "aktiv" msgid "Wizard Name" msgstr "Guidenamn" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -271,7 +293,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "Widget" @@ -322,7 +343,7 @@ msgid "Netherlands Antilles" msgstr "Netherlands Antilles" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -346,11 +367,6 @@ msgstr "Grekiska / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "Bosnian / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "Webbikoner" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -360,6 +376,12 @@ msgstr "" "Om du markerar detta kommer föregående rapport returneras när användaren " "skriver ut andra gången med samma bilagenamn." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -387,6 +409,12 @@ msgstr "Colombia" msgid "Schedule Upgrade" msgstr "Schemalägg Uppgradering" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -430,7 +458,7 @@ msgid "Miscellaneous Suppliers" msgstr "Diverse leverantörer" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Anpassade fält måste ha ett namn som börjar med 'x_' !" @@ -684,6 +712,12 @@ msgstr "" "Väljer språket för användarens användargränssnitt när översatta " "användargränssnitt finns tillgängliga." +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "Detta objekt saknar metoden för att bryta länk" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -748,6 +782,14 @@ msgstr "%B - Månadens namn, en förkortat." msgid "Type" msgstr "Typ" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -774,6 +816,19 @@ msgstr "Felaktig XML för Vyarkitektur!" msgid "Cayman Islands" msgstr "Caymanöarna" +#. 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 "Övergångar" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -884,6 +939,16 @@ msgstr "Haiti" msgid "Search" msgstr "Sök" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -941,13 +1006,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "Inget språk med koden %s existerar" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -981,6 +1046,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1029,7 +1100,7 @@ msgid "On Create" msgstr "Vid skapande" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1134,12 +1205,6 @@ msgstr "Bifogat ID" msgid "Day: %(day)s" msgstr "Dagar: %(dag)ar" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Du kan inte läsa detta dokument! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1179,8 +1244,8 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (kopia)" @@ -1260,7 +1325,7 @@ msgid "Formula" msgstr "Formel" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "Kan inte ta bort root användare!" @@ -1271,7 +1336,8 @@ msgid "Malawi" msgstr "Malawi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "%s (kopia)" @@ -1323,7 +1389,6 @@ msgstr "Träd" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1354,6 +1419,12 @@ msgstr "" "Om du använder CSV-formatet, kontrollera att den första raden är en av de " "följande:" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1405,7 +1476,7 @@ msgid "Bahamas" msgstr "Bahamas" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1426,6 +1497,12 @@ msgstr "Ireland" msgid "Number of modules updated" msgstr "Antal uppdaterade moduler" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1507,6 +1584,12 @@ msgstr "" "Komma-separerad list över godkända vymoderm som t ex 'form', 'tree', " "'calendar', etc. (Standard: tree,form)" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1576,7 +1659,7 @@ msgid "Madagascar" msgstr "Madagascar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1663,12 +1746,6 @@ msgstr "E-postadress" msgid "French (BE) / Français (BE)" msgstr "Franska (BE) / Français (BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Du kan inte skriva i detta dokument! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1741,6 +1818,12 @@ msgstr "" "Namnet på objektet vars funktion kommer att anropas när schemaläggaren körs " "t.ex. \"res.partner\"" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1751,13 +1834,19 @@ msgstr "%y - År utan århundrade [00,99]." msgid "Slovenia" msgstr "Slovenien" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "Meddelanden" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "Fel!" @@ -1787,6 +1876,14 @@ msgstr "Slutdatum" msgid "New Zealand" msgstr "New Zealand" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1839,19 +1936,13 @@ msgstr "Fel! Du kan inte skapa rekursiva företag." msgid "Valid" msgstr "Giltig" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Du kan inte ta bort detta dokument! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "Kan inte uppgradera modulen \"%s\". Den är inte installerad." @@ -1962,6 +2053,15 @@ msgstr "Signal (subflow.*)" msgid "HR sector" msgstr "Personalsektorn" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -2017,6 +2117,11 @@ msgstr "Beroenden" msgid "Main Company" msgstr "Huvudföretag" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2107,9 +2212,10 @@ msgid "Sir" msgstr "Herr" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" -msgstr "Välj modulpaket att importera (.zip fil)" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" +msgstr "" #. module: base #: field:ir.default,ref_id:0 @@ -2207,7 +2313,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2231,6 +2337,12 @@ msgstr "Höger till vänster" msgid "Filters" msgstr "Filter" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2251,7 +2363,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "" @@ -2281,6 +2399,11 @@ msgstr "" "Momsnummer. Markera denna om partnern skall ha moms. Används av " "momsrapporten." +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "maintenance.contract" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2333,11 +2456,6 @@ msgstr "Ean kontroll" msgid "VAT" msgstr "Moms" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2374,7 +2492,7 @@ msgid "M." msgstr "M." #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2383,13 +2501,21 @@ msgstr "" "Kan inte skapa modulfilen:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Nauru" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "Certifikat Id:t för modulen måste vara unikt !" @@ -2467,6 +2593,12 @@ msgstr "Skicka SMS" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2524,7 +2656,7 @@ msgid "Ecuador" msgstr "Ecuador" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2595,7 +2727,7 @@ msgid "Action to Trigger" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2794,18 +2926,13 @@ msgstr "Upphovsman" msgid "FYROM" msgstr "FYROM" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Avancerad sökning" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2854,7 +2981,7 @@ msgid "Rules" msgstr "Regler" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2926,7 +3053,7 @@ msgid "Lesotho" msgstr "Lesotho" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "Du kan inte ta bort modellen '%s' !" @@ -2956,6 +3083,12 @@ msgstr "" msgid "System Configuration Done" msgstr "Systemkonfigureringen är klar" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2987,7 +3120,7 @@ msgid "Benin" msgstr "Benin" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "Det kontraktet har redan registrerats i systemet." @@ -3017,6 +3150,14 @@ msgstr "RML huvud" msgid "API ID" msgstr "API ID" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3264,6 +3405,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "Nicaragua" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3544,7 +3691,8 @@ msgid "Bank Type" msgstr "Banktyp" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "Gruppens namn kan inte börja med \"-\"" @@ -3566,7 +3714,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3584,7 +3732,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3616,7 +3764,9 @@ msgid "Guadeloupe (French)" msgstr "Guadeloupe (French)" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "Användarfel" @@ -3691,6 +3841,11 @@ msgstr "%S - Sekunder [00,61]." msgid "Cape Verde" msgstr "Kap Verde" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "Välj modulpaket att importera (.zip fil)" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3704,6 +3859,12 @@ msgstr "Händelser" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3737,9 +3898,10 @@ msgid "French / Français" msgstr "French / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Skapade menyer" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -3990,6 +4152,14 @@ msgstr "Råd" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -4028,9 +4198,9 @@ msgid "Project" msgstr "Projekt" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" -msgstr "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" +msgstr "" #. module: base #: view:base.module.import:0 @@ -4059,12 +4229,9 @@ msgid "Serial Key" msgstr "Serienyckel" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Kund" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "Granska" #. module: base #: model:res.country,name:base.lc @@ -4172,6 +4339,18 @@ msgstr "Vietnam" msgid "Signature" msgstr "Signatur" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4193,7 +4372,7 @@ msgid "False means for every user" msgstr "Falsk betyder för alla användare" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "Modulens namn måste vara unikt !" @@ -4234,9 +4413,11 @@ msgid "Contacts" msgstr "Kontakter" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4265,6 +4446,12 @@ msgstr "Czech Republic" msgid "Widget Wizard" msgstr "Widget Wizard" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4311,15 +4498,9 @@ msgid "Mongolia" msgstr "Mongolia" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Fel" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Skapade menyer" #. module: base #: selection:ir.ui.view,type:0 @@ -4433,11 +4614,6 @@ msgstr "Saint Vincent & Grenadines" msgid "Password" msgstr "Lösenord" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "Ikonfil" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4537,7 +4713,7 @@ msgid "Change My Preferences" msgstr "Ändra min inställningar" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Felaktigt namn för modell i händelsedefinitionen." @@ -4605,7 +4781,7 @@ msgid "Raphaël Valyi's tweets" msgstr "Raphaël Valyi's tweets" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4686,7 +4862,13 @@ msgid "Client Actions" msgstr "Klientåtgärder" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4759,7 +4941,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Modul %s: Felaktigt kvalitetscertifikat" @@ -4807,6 +4989,11 @@ msgstr "Skicka SMS" msgid "Accepted Users" msgstr "Godkända användare" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4928,6 +5115,14 @@ msgstr "Olivier Dony's tweets" msgid "Nepal" msgstr "Nepal" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4957,7 +5152,7 @@ msgid "Update Modules List" msgstr "Uppdatera listan med moduler" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" @@ -4966,7 +5161,7 @@ msgstr "" "uppfyllt: %s" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4985,6 +5180,12 @@ msgstr "Fortsätt" msgid "Thai / ภาษาไทย" msgstr "Thailändska / ภาษาไทย" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5115,6 +5316,13 @@ msgstr "Landets fulla namn" msgid "Iteration" msgstr "Iterering" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "Användarfel" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5153,7 +5361,12 @@ msgid "Solomon Islands" msgstr "Salomonöarna" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "Access fel" @@ -5164,7 +5377,7 @@ msgid "Waiting" msgstr "Väntar" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "Kunde inte ladda bas modulerna" @@ -5174,6 +5387,12 @@ msgstr "Kunde inte ladda bas modulerna" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5291,7 +5510,7 @@ msgid "ir.actions.todo" msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "Kunde inte hitta föregående ir.actions.todo" @@ -5365,17 +5584,23 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "Modulen %s finns inte!" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "Du kan inte ta bort språk som är användarens valda språk" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5384,7 +5609,7 @@ msgid "Python Code" msgstr "Pythonkod" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "Kan inte skapa modulfilen: %s !" @@ -5505,7 +5730,7 @@ msgstr "" "vyer" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "Klicka på 'Fortsätt' för att konfigurera nästa tillägg..." @@ -5545,7 +5770,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5758,7 +5983,7 @@ msgid "Afghanistan, Islamic State of" msgstr "Afganistan, Islamic State of" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Fel !" @@ -5779,6 +6004,12 @@ msgstr "Intervallenhet" msgid "Kind" msgstr "Sort" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -6039,6 +6270,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -6048,11 +6287,6 @@ msgstr "" msgid "Address" msgstr "Adress" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6131,7 +6365,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "Saint Kitts & Nevis Anguilla" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6218,7 +6452,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6243,11 +6477,19 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6296,6 +6538,16 @@ msgstr "E-post" msgid "Home Action" msgstr "Åtgärd" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" +"Summan av datat (2:dra fältet) är noll.\n" +"Vi kan inte rita ett cirkeldiagram!" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6324,11 +6576,10 @@ msgid "Stop All" msgstr "Stop All" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" -msgstr "Registrera ett kontrakt" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" +msgstr "" #. module: base #: view:ir.model.data:0 @@ -6378,7 +6629,7 @@ msgid "Start update" msgstr "Starta uppdateringen" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "Kontraktvalideringsfel" @@ -6436,7 +6687,7 @@ msgid "HR Manager Dashboard" msgstr "Personalchef dashboard" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6490,7 +6741,7 @@ msgid "Module Update" msgstr "Moduluppdatering" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "Följande moduler är inte installerade eller okända: %s" @@ -6572,7 +6823,14 @@ msgstr "" "Användarens riktiga namn, används vid sökningar och de flesta listningar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "Storleken på fältet kan inte vara mindre än 1 !" @@ -6610,6 +6868,12 @@ msgstr "Till" msgid "Arguments" msgstr "Argument" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6620,15 +6884,30 @@ msgstr "GPL Version 2" msgid "GPL Version 3" msgstr "GPL Version 3" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "Korrekt EAN13" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" -msgstr "Granska" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Kund" #. module: base #: selection:base.language.install,lang:0 @@ -6733,7 +7012,7 @@ msgid "Copy Object" msgstr "Kopiera objekt" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6784,6 +7063,15 @@ msgstr "Tabell ref." msgid "Object" msgstr "Objekt" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6819,7 +7107,7 @@ msgid "User Ref." msgstr "Användarreferens" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "Varning !" @@ -6960,7 +7248,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "Felaktiga sökkriterier" @@ -7018,7 +7306,7 @@ msgid "Action Type" msgstr "Åtgärdstyp" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7123,11 +7411,23 @@ msgstr "Landskod" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7304,6 +7604,11 @@ msgstr "Skicka e-post" msgid "Menu Action" msgstr "Menyval" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Faroe Islands" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7443,7 +7748,7 @@ msgid "China" msgstr "China" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7641,7 +7946,7 @@ msgid "Account No." msgstr "Kontonummer" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "Basspråket 'en_Us' kan inte tas bort !" @@ -7688,6 +7993,14 @@ msgstr "Översättning" msgid "Antigua and Barbuda" msgstr "Antigua and Barbuda" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7746,7 +8059,7 @@ msgid "Auto-Refresh" msgstr "Automatisk uppdatering" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "osv_memory fältet kan bara jämföras med = och != operatorn." @@ -7756,6 +8069,11 @@ msgstr "osv_memory fältet kan bara jämföras med = och != operatorn." msgid "Diagram" msgstr "Diagram" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis och Futunaöarna" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7812,6 +8130,35 @@ msgstr "Bank identifieringskod" msgid "Turkmenistan" msgstr "Turkmenistan" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Fel" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7941,7 +8288,7 @@ msgid "Internal Header/Footer" msgstr "Internt sidhuvud/sidfot" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7982,6 +8329,14 @@ msgstr "Dominican Republic" msgid "Serbian (Cyrillic) / српски" msgstr "Serbiska (Cyrillic) / српски" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -8007,7 +8362,7 @@ msgid "Event Logs" msgstr "Händelseloggar" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "Systemkonfigurationen klar" @@ -8054,11 +8409,18 @@ msgid "Low" msgstr "Låg" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Fel ! Du kan inte skapa rekursiva menyer." +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "Registrera ett kontrakt" + #. module: base #: view:ir.rule:0 msgid "" @@ -8067,7 +8429,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8221,7 +8583,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Du kan inte ta bort fältet '%s' !" @@ -8233,6 +8595,11 @@ msgstr "Du kan inte ta bort fältet '%s' !" msgid "Resource" msgstr "Resurs" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8244,7 +8611,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "Ej uppfyllt beroende !" @@ -8258,6 +8625,14 @@ msgstr "" "Filformat som stöds är: *.csv (kommaseparerat) eller *.po (GetText Portable " "Objects)" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8382,7 +8757,7 @@ msgid "Azerbaijan" msgstr "Azerbaijan" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Varning" @@ -8409,9 +8784,9 @@ msgid "Czech / Čeština" msgstr "Czech / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis och Futunaöarna" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Avancerad sökning" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8712,7 +9087,7 @@ msgid "Account Owner" msgstr "Kontoägare" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8772,7 +9147,7 @@ msgid "Workflow Instances" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Partners " @@ -8919,16 +9294,16 @@ msgstr "Russian / русский язык" #~ msgid "%j - Day of the year as a decimal number [001,366]." #~ msgstr "%j - Dagnummer inom året [001,366]." +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Du saknar rättigheter att skapa denna typ av dokument! (%s)" + #~ msgid "To browse official translations, you can visit this link: " #~ msgstr "Bläddra mellan officiella översättningar, kan du besöka denna länk: " #~ msgid "Outgoing transitions" #~ msgstr "Avgående övergångar" -#, python-format -#~ msgid "The unlink method is not implemented on this object !" -#~ msgstr "Detta objekt saknar metoden för att bryta länk" - #~ 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 " @@ -8946,14 +9321,6 @@ msgstr "Russian / русский язык" #~ "förstå. Du kommer att kunna byta till den utökade senare.\n" #~ " " -#, python-format -#~ msgid "" -#~ "The sum of the data (2nd field) is null.\n" -#~ "We can't draw a pie chart !" -#~ msgstr "" -#~ "Summan av datat (2:dra fältet) är noll.\n" -#~ "Vi kan inte rita ett cirkeldiagram!" - #~ msgid "ir.actions.report.custom" #~ msgstr "ir.actions.report.custom" @@ -9217,10 +9584,6 @@ msgstr "Russian / русский язык" #~ "Det valda språket har installerats. Du måste ändra inställningar för " #~ "användaren och öppna en ny meny för att visa ändringar." -#, python-format -#~ msgid "UserError" -#~ msgstr "Användarfel" - #~ msgid "STOCK_MEDIA_RECORD" #~ msgstr "STOCK_MEDIA_RECORD" @@ -9435,6 +9798,21 @@ msgstr "Russian / русский язык" #~ msgid "Validated" #~ msgstr "Validerad" +#~ msgid "Web Icons" +#~ msgstr "Webbikoner" + +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Du kan inte läsa detta dokument! (%s)" + +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Du kan inte skriva i detta dokument! (%s)" + +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Du kan inte ta bort detta dokument! (%s)" + #~ msgid "Full" #~ msgstr "Fullständig" @@ -9443,3 +9821,6 @@ msgstr "Russian / русский язык" #~ msgid "Corporation" #~ msgstr "Företag" + +#~ msgid "Icon File" +#~ msgstr "Ikonfil" diff --git a/bin/addons/base/i18n/th.po b/bin/addons/base/i18n/th.po index fef9cbb8f8e..6c760d4e9f2 100644 --- a/bin/addons/base/i18n/th.po +++ b/bin/addons/base/i18n/th.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2009-11-30 09:01+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: Thai \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:58+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:20+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -41,6 +41,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -53,12 +61,6 @@ msgstr "" msgid "View Architecture" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -109,6 +111,14 @@ msgstr "" msgid "Created Views" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -125,10 +135,9 @@ msgid "South Korea" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" msgstr "" #. module: base @@ -141,13 +150,20 @@ msgstr "" msgid "Swaziland" msgstr "" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -176,13 +192,13 @@ msgid "Search Partner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "" @@ -213,7 +229,7 @@ msgid "Contact Name" msgstr "ชื่อผู้ติดต่อ" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -235,6 +251,12 @@ msgstr "ใช้งาน" msgid "Wizard Name" msgstr "" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -267,7 +289,6 @@ msgstr "" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -318,7 +339,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -340,11 +361,6 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -352,6 +368,12 @@ msgid "" "name, it returns the previous report." msgstr "" +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -378,6 +400,12 @@ msgstr "" msgid "Schedule Upgrade" msgstr "" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -419,7 +447,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -666,6 +694,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -730,6 +764,14 @@ msgstr "" msgid "Type" msgstr "" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -756,6 +798,19 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -860,6 +915,16 @@ msgstr "" msgid "Search" msgstr "" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -915,13 +980,13 @@ msgid "ir.exports" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -952,6 +1017,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -999,7 +1070,7 @@ msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1100,12 +1171,6 @@ msgstr "" 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 #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1145,8 +1210,8 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr "" @@ -1224,7 +1289,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1235,7 +1300,8 @@ msgid "Malawi" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1284,7 +1350,6 @@ msgstr "" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1311,6 +1376,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1362,7 +1433,7 @@ msgid "Bahamas" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1383,6 +1454,12 @@ msgstr "" msgid "Number of modules updated" msgstr "" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1458,6 +1535,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1527,7 +1610,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1612,12 +1695,6 @@ msgstr "" msgid "French (BE) / Français (BE)" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1688,6 +1765,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1698,13 +1781,19 @@ msgstr "" msgid "Slovenia" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1734,6 +1823,14 @@ msgstr "" msgid "New Zealand" msgstr "" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1783,19 +1880,13 @@ msgstr "" msgid "Valid" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "" @@ -1906,6 +1997,15 @@ msgstr "" msgid "HR sector" msgstr "" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1959,6 +2059,11 @@ msgstr "" msgid "Main Company" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2045,8 +2150,9 @@ msgid "Sir" msgstr "" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2145,7 +2251,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2169,6 +2275,12 @@ msgstr "" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2189,7 +2301,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "" @@ -2214,6 +2332,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2266,11 +2389,6 @@ msgstr "" msgid "VAT" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2307,20 +2425,28 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" " %s" msgstr "" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2396,6 +2522,12 @@ msgstr "" msgid "EAN13" msgstr "" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2453,7 +2585,7 @@ msgid "Ecuador" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2519,7 +2651,7 @@ msgid "Action to Trigger" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2714,18 +2846,13 @@ msgstr "" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2771,7 +2898,7 @@ msgid "Rules" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2839,7 +2966,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -2869,6 +2996,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2900,7 +3033,7 @@ msgid "Benin" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2930,6 +3063,14 @@ msgstr "" msgid "API ID" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3175,6 +3316,12 @@ msgstr "" msgid "Nicaragua" msgstr "" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3453,7 +3600,8 @@ msgid "Bank Type" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "" @@ -3475,7 +3623,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3493,7 +3641,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3525,7 +3673,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3600,6 +3750,11 @@ msgstr "" msgid "Cape Verde" msgstr "" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3613,6 +3768,12 @@ msgstr "" msgid "ir.actions.url" msgstr "" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3646,8 +3807,9 @@ msgid "French / Français" msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" msgstr "" #. module: base @@ -3898,6 +4060,14 @@ msgstr "" msgid "ir.attachment" msgstr "" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3936,8 +4106,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -3967,11 +4137,8 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" msgstr "" #. module: base @@ -4080,6 +4247,18 @@ msgstr "" msgid "Signature" msgstr "" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4101,7 +4280,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4142,8 +4321,10 @@ msgid "Contacts" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" msgstr "" #. module: base @@ -4173,6 +4354,12 @@ msgstr "" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4217,14 +4404,8 @@ msgid "Mongolia" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -4339,11 +4520,6 @@ msgstr "" msgid "Password" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4443,7 +4619,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4511,7 +4687,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4589,7 +4765,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4662,7 +4844,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4710,6 +4892,11 @@ msgstr "" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4824,6 +5011,14 @@ msgstr "" msgid "Nepal" msgstr "" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4853,14 +5048,14 @@ msgid "Update Modules List" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4879,6 +5074,12 @@ msgstr "" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5009,6 +5210,13 @@ msgstr "" msgid "Iteration" msgstr "" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5047,7 +5255,12 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "" @@ -5058,7 +5271,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5068,6 +5281,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5185,7 +5404,7 @@ msgid "ir.actions.todo" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5259,17 +5478,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5278,7 +5503,7 @@ msgid "Python Code" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "" @@ -5397,7 +5622,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5436,7 +5661,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5648,7 +5873,7 @@ msgid "Afghanistan, Islamic State of" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "" @@ -5669,6 +5894,12 @@ msgstr "" msgid "Kind" msgstr "" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5924,6 +6155,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5933,11 +6172,6 @@ msgstr "" msgid "Address" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6016,7 +6250,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6100,7 +6334,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6121,11 +6355,19 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6172,6 +6414,14 @@ msgstr "" msgid "Home Action" msgstr "" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6200,10 +6450,9 @@ msgid "Stop All" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6254,7 +6503,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6312,7 +6561,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6364,7 +6613,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6445,7 +6694,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6483,6 +6739,12 @@ msgstr "" msgid "Arguments" msgstr "" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6493,14 +6755,29 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" msgstr "" #. module: base @@ -6606,7 +6883,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6657,6 +6934,15 @@ msgstr "" msgid "Object" msgstr "" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6692,7 +6978,7 @@ msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6833,7 +7119,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6889,7 +7175,7 @@ msgid "Action Type" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -6992,11 +7278,23 @@ msgstr "" msgid "workflow.instance" msgstr "" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7171,6 +7469,11 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7308,7 +7611,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7506,7 +7809,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7550,6 +7853,14 @@ msgstr "" msgid "Antigua and Barbuda" msgstr "" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7608,7 +7919,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7618,6 +7929,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7674,6 +7990,35 @@ msgstr "" msgid "Turkmenistan" msgstr "" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7802,7 +8147,7 @@ msgid "Internal Header/Footer" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7841,6 +8186,14 @@ msgstr "" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7864,7 +8217,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7911,11 +8264,18 @@ msgid "Low" msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7924,7 +8284,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8078,7 +8438,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8090,6 +8450,11 @@ msgstr "" msgid "Resource" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8101,7 +8466,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8113,6 +8478,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8237,7 +8610,7 @@ msgid "Azerbaijan" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "" @@ -8264,8 +8637,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" msgstr "" #. module: base @@ -8564,7 +8937,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8624,7 +8997,7 @@ msgid "Workflow Instances" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "" diff --git a/bin/addons/base/i18n/tlh.po b/bin/addons/base/i18n/tlh.po index 8ed2672116f..ea7e54258ee 100644 --- a/bin/addons/base/i18n/tlh.po +++ b/bin/addons/base/i18n/tlh.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2009-11-30 07:48+0000\n" "Last-Translator: <>\n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:58+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:20+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +60,6 @@ msgstr "" msgid "View Architecture" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +110,14 @@ msgstr "" msgid "Created Views" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,10 +134,9 @@ msgid "South Korea" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" msgstr "" #. module: base @@ -140,13 +149,20 @@ msgstr "" msgid "Swaziland" msgstr "" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -175,13 +191,13 @@ msgid "Search Partner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "" @@ -212,7 +228,7 @@ msgid "Contact Name" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -234,6 +250,12 @@ msgstr "" msgid "Wizard Name" msgstr "" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -266,7 +288,6 @@ msgstr "" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -317,7 +338,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -339,11 +360,6 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -351,6 +367,12 @@ msgid "" "name, it returns the previous report." msgstr "" +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -377,6 +399,12 @@ msgstr "" msgid "Schedule Upgrade" msgstr "" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -418,7 +446,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -665,6 +693,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -729,6 +763,14 @@ msgstr "" msgid "Type" msgstr "" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -755,6 +797,19 @@ msgstr "" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -859,6 +914,16 @@ msgstr "" msgid "Search" msgstr "" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -914,13 +979,13 @@ msgid "ir.exports" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -951,6 +1016,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -998,7 +1069,7 @@ msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1099,12 +1170,6 @@ msgstr "" 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 #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1144,8 +1209,8 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr "" @@ -1223,7 +1288,7 @@ msgid "Formula" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "" @@ -1234,7 +1299,8 @@ msgid "Malawi" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1283,7 +1349,6 @@ msgstr "" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1310,6 +1375,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1361,7 +1432,7 @@ msgid "Bahamas" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1382,6 +1453,12 @@ msgstr "" msgid "Number of modules updated" msgstr "" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1457,6 +1534,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1526,7 +1609,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1611,12 +1694,6 @@ msgstr "" msgid "French (BE) / Français (BE)" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1687,6 +1764,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1697,13 +1780,19 @@ msgstr "" msgid "Slovenia" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1733,6 +1822,14 @@ msgstr "" msgid "New Zealand" msgstr "" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1782,19 +1879,13 @@ msgstr "" msgid "Valid" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "" @@ -1905,6 +1996,15 @@ msgstr "" msgid "HR sector" msgstr "" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1958,6 +2058,11 @@ msgstr "" msgid "Main Company" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2044,8 +2149,9 @@ msgid "Sir" msgstr "" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2144,7 +2250,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2168,6 +2274,12 @@ msgstr "" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2188,7 +2300,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "" @@ -2213,6 +2331,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2265,11 +2388,6 @@ msgstr "" msgid "VAT" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2306,20 +2424,28 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" " %s" msgstr "" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2395,6 +2521,12 @@ msgstr "" msgid "EAN13" msgstr "" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2452,7 +2584,7 @@ msgid "Ecuador" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2518,7 +2650,7 @@ msgid "Action to Trigger" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2713,18 +2845,13 @@ msgstr "" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2770,7 +2897,7 @@ msgid "Rules" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2838,7 +2965,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -2868,6 +2995,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2899,7 +3032,7 @@ msgid "Benin" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2929,6 +3062,14 @@ msgstr "" msgid "API ID" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3174,6 +3315,12 @@ msgstr "" msgid "Nicaragua" msgstr "" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3452,7 +3599,8 @@ msgid "Bank Type" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "" @@ -3474,7 +3622,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3492,7 +3640,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3524,7 +3672,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3599,6 +3749,11 @@ msgstr "" msgid "Cape Verde" msgstr "" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3612,6 +3767,12 @@ msgstr "" msgid "ir.actions.url" msgstr "" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3645,8 +3806,9 @@ msgid "French / Français" msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" msgstr "" #. module: base @@ -3897,6 +4059,14 @@ msgstr "" msgid "ir.attachment" msgstr "" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3935,8 +4105,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -3966,11 +4136,8 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" msgstr "" #. module: base @@ -4079,6 +4246,18 @@ msgstr "" msgid "Signature" msgstr "" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4100,7 +4279,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4141,8 +4320,10 @@ msgid "Contacts" msgstr "" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" msgstr "" #. module: base @@ -4172,6 +4353,12 @@ msgstr "" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4216,14 +4403,8 @@ msgid "Mongolia" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -4338,11 +4519,6 @@ msgstr "" msgid "Password" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4442,7 +4618,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4510,7 +4686,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4588,7 +4764,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4661,7 +4843,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4709,6 +4891,11 @@ msgstr "" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4823,6 +5010,14 @@ msgstr "" msgid "Nepal" msgstr "" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4852,14 +5047,14 @@ msgid "Update Modules List" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4878,6 +5073,12 @@ msgstr "" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5008,6 +5209,13 @@ msgstr "" msgid "Iteration" msgstr "" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5046,7 +5254,12 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "" @@ -5057,7 +5270,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5067,6 +5280,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5184,7 +5403,7 @@ msgid "ir.actions.todo" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5258,17 +5477,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5277,7 +5502,7 @@ msgid "Python Code" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "" @@ -5396,7 +5621,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5435,7 +5660,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5647,7 +5872,7 @@ msgid "Afghanistan, Islamic State of" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "" @@ -5668,6 +5893,12 @@ msgstr "" msgid "Kind" msgstr "" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5923,6 +6154,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5932,11 +6171,6 @@ msgstr "" msgid "Address" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6015,7 +6249,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6099,7 +6333,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6120,11 +6354,19 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6171,6 +6413,14 @@ msgstr "" msgid "Home Action" msgstr "" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6199,10 +6449,9 @@ msgid "Stop All" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6253,7 +6502,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6311,7 +6560,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6363,7 +6612,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6444,7 +6693,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6482,6 +6738,12 @@ msgstr "" msgid "Arguments" msgstr "" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6492,14 +6754,29 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" msgstr "" #. module: base @@ -6605,7 +6882,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6656,6 +6933,15 @@ msgstr "" msgid "Object" msgstr "" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6691,7 +6977,7 @@ msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6832,7 +7118,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6888,7 +7174,7 @@ msgid "Action Type" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -6991,11 +7277,23 @@ msgstr "" msgid "workflow.instance" msgstr "" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7170,6 +7468,11 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7307,7 +7610,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7505,7 +7808,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7549,6 +7852,14 @@ msgstr "" msgid "Antigua and Barbuda" msgstr "" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7607,7 +7918,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7617,6 +7928,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7673,6 +7989,35 @@ msgstr "" msgid "Turkmenistan" msgstr "" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7801,7 +8146,7 @@ msgid "Internal Header/Footer" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7840,6 +8185,14 @@ msgstr "" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7863,7 +8216,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7910,11 +8263,18 @@ msgid "Low" msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7923,7 +8283,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8077,7 +8437,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8089,6 +8449,11 @@ msgstr "" msgid "Resource" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8100,7 +8465,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8112,6 +8477,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8236,7 +8609,7 @@ msgid "Azerbaijan" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "" @@ -8263,8 +8636,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" msgstr "" #. module: base @@ -8563,7 +8936,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8623,7 +8996,7 @@ msgid "Workflow Instances" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "" diff --git a/bin/addons/base/i18n/tr.po b/bin/addons/base/i18n/tr.po index 246cc008f50..885d034eb4a 100644 --- a/bin/addons/base/i18n/tr.po +++ b/bin/addons/base/i18n/tr.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-16 08:27+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:59+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:20+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +60,6 @@ msgstr "Metadata" msgid "View Architecture" msgstr "Görünüm Yapısı" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Bu tip bir belge oluşturamazsınız! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +110,14 @@ msgstr "" msgid "Created Views" msgstr "Oluşturulan Görünümler" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,11 +134,10 @@ msgid "South Korea" msgstr "Güney Kore" #. 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 "Geçişler" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -140,13 +149,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Svaziland" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -177,13 +193,13 @@ msgid "Search Partner" msgstr "Ortak Ara" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "yeni" @@ -214,7 +230,7 @@ msgid "Contact Name" msgstr "Kişi Adı" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -238,6 +254,12 @@ msgstr "etkin" msgid "Wizard Name" msgstr "Sihirbaz Adı" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -270,7 +292,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -321,7 +342,7 @@ msgid "Netherlands Antilles" msgstr "Hollanda Antilleri" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -345,11 +366,6 @@ msgstr "Yunanca / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "Boşnakça" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -359,6 +375,12 @@ msgstr "" "Bunu seçerseniz kullanıcı ikinci defa aynı eklenti adı ile çıktı alırsa, bir " "önceki rapor kullanılır." +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -385,6 +407,12 @@ msgstr "Kolombiya" msgid "Schedule Upgrade" msgstr "Güncelleme Zamanla" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -428,7 +456,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Özel alanların 'x_' ile başlayan bir adı olmalıdır !" @@ -675,6 +703,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -739,6 +773,14 @@ msgstr "%B - Tam ay adı." msgid "Type" msgstr "Tür" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -765,6 +807,19 @@ msgstr "Görüntüleme mimarisi için Geçersiz XML" msgid "Cayman Islands" msgstr "Cayman Adaları" +#. 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 "Geçişler" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -872,6 +927,16 @@ msgstr "Haiti" msgid "Search" msgstr "Arama" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -927,13 +992,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -966,6 +1031,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1013,7 +1084,7 @@ msgid "On Create" msgstr "Oluşturmada" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1117,12 +1188,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "Gün: %(gün)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Bu belgeyi okuyamazsınız! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1164,8 +1229,8 @@ msgstr "" "object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (kopya)" @@ -1245,7 +1310,7 @@ msgid "Formula" msgstr "Formül" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "Root kullanıcısı kaldırılamaz!" @@ -1256,7 +1321,8 @@ msgid "Malawi" msgstr "Malavi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1308,7 +1374,6 @@ msgstr "Ağaç" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "Kullanıcının sisteme bağlanabilmesini istemiyorsanız boş bırakınız." @@ -1335,6 +1400,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1386,7 +1457,7 @@ msgid "Bahamas" msgstr "Bahamalar" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1409,6 +1480,12 @@ msgstr "İrlanda" msgid "Number of modules updated" msgstr "Bir kaç modül güncllendi" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1484,6 +1561,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1555,7 +1638,7 @@ msgid "Madagascar" msgstr "Madagaskar" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1644,12 +1727,6 @@ msgstr "E-posta Adresi" msgid "French (BE) / Français (BE)" msgstr "Fransızca (BE) / Français (BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Bu belgeye yazamazsınız! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1720,6 +1797,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1730,13 +1813,19 @@ msgstr "" msgid "Slovenia" msgstr "Slovenya" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1766,6 +1855,14 @@ msgstr "Bitiş Tarihi" msgid "New Zealand" msgstr "Yeni Zelanda" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1815,19 +1912,13 @@ msgstr "Hata! İç içe tekrarlayan şirketler seçemezsiniz." msgid "Valid" msgstr "Geçerli" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Bu belgeyi silemezsiniz! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "'%s' modülü güncellenemiyor. Kurulu değil" @@ -1938,6 +2029,15 @@ msgstr "Sinyal (subflow.*)" msgid "HR sector" msgstr "İnsan kaynakları bölümü" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1991,6 +2091,11 @@ msgstr "Bağımlılıklar" msgid "Main Company" msgstr "Ana Şirket" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2079,8 +2184,9 @@ msgid "Sir" msgstr "Bay" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2179,7 +2285,7 @@ msgid "Mayotte" msgstr "Mayotte" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "Lütfen başlatılacak bir işlem seçiniz !" @@ -2203,6 +2309,12 @@ msgstr "Sağdan Sola" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2223,7 +2335,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "Modül bağımlılılklarında özyineleme hatası !" @@ -2250,6 +2368,11 @@ msgstr "" "Katma Değer Vergisi numarası. Ortak KDV'ye tabi ise bu kutuyu seçiniz. KDV " "hakkındaki yasal bildirimde kullanılır." +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2302,11 +2425,6 @@ msgstr "" msgid "VAT" msgstr "KDV" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2343,7 +2461,7 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2352,13 +2470,21 @@ msgstr "" "Modül dosyası oluşturulamadı:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Nauru Adası" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2434,6 +2560,12 @@ msgstr "SMS Gönder" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2491,7 +2623,7 @@ msgid "Ecuador" msgstr "Ekvador" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2562,7 +2694,7 @@ msgid "Action to Trigger" msgstr "Tetiklenecek İşlem" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2759,18 +2891,13 @@ msgstr "Yazan" msgid "FYROM" msgstr "FYROM" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Gelişmiş Arama" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Kabul edilen tarih ve zaman sunumu." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2816,7 +2943,7 @@ msgid "Rules" msgstr "Kurallar" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "Kurulu veya kurulacak bir modülü kaldırmaya çalışıyorsunuz." @@ -2886,7 +3013,7 @@ msgid "Lesotho" msgstr "Lesoto" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "Bu modeli kaldıramazsınız '%s' !" @@ -2916,6 +3043,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2947,7 +3080,7 @@ msgid "Benin" msgstr "Benin" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2977,6 +3110,14 @@ msgstr "RML Başlığı" msgid "API ID" msgstr "API Belirteci" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3227,6 +3368,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "Nikaragua" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3505,7 +3652,8 @@ msgid "Bank Type" msgstr "Banka Türü" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "Grup adı \"=\" ile başlayamaz" @@ -3527,7 +3675,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3545,7 +3693,7 @@ msgid "Flow Start" msgstr "Akış Başlat" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3577,7 +3725,9 @@ msgid "Guadeloupe (French)" msgstr "Guadeloupe (Fransız)" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3652,6 +3802,11 @@ msgstr "" msgid "Cape Verde" msgstr "Yeşil Burun Adaları" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3665,6 +3820,12 @@ msgstr "Etkinlikler" msgid "ir.actions.url" msgstr "irc.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3698,9 +3859,10 @@ msgid "French / Français" msgstr "Fransızca / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Menüler Oluşturuldu" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -3950,6 +4112,14 @@ msgstr "Öğüt" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3990,8 +4160,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -4021,12 +4191,9 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Müşteri" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "" #. module: base #: model:res.country,name:base.lc @@ -4134,6 +4301,18 @@ msgstr "Vietnam" msgid "Signature" msgstr "İmza" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4155,7 +4334,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4196,9 +4375,11 @@ msgid "Contacts" msgstr "Kişiler" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Faroe Adaları" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4227,6 +4408,12 @@ msgstr "Çek Cumhuriyeti" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4271,15 +4458,9 @@ msgid "Mongolia" msgstr "Moğolistan" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Hata" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Menüler Oluşturuldu" #. module: base #: selection:ir.ui.view,type:0 @@ -4393,11 +4574,6 @@ msgstr "Saint Vincent ve Grenadinler" msgid "Password" msgstr "Parola" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4497,7 +4673,7 @@ msgid "Change My Preferences" msgstr "Ayarlarımı değiştir" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "İşlem tanımlamasında geçersiz model adı." @@ -4565,7 +4741,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4643,7 +4819,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4718,7 +4900,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Modül %s: Geçersiz Kalite Belgesi" @@ -4769,6 +4951,11 @@ msgstr "" msgid "Accepted Users" msgstr "Kabul Edilen Kullanıcılar" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4883,6 +5070,14 @@ msgstr "" msgid "Nepal" msgstr "Nepal" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4912,14 +5107,14 @@ msgid "Update Modules List" msgstr "Modül Listesini Güncelle" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4938,6 +5133,12 @@ msgstr "Devam Et" msgid "Thai / ภาษาไทย" msgstr "Taylandca / ภาษาไทย" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5068,6 +5269,13 @@ msgstr "Ülkenin tam adı." msgid "Iteration" msgstr "Yineleme" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5106,7 +5314,12 @@ msgid "Solomon Islands" msgstr "Solomon Adaları" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "AccessError" @@ -5117,7 +5330,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5127,6 +5340,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5244,7 +5463,7 @@ msgid "ir.actions.todo" msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5318,17 +5537,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5337,7 +5562,7 @@ msgid "Python Code" msgstr "Python Kodu" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "Modül dosyası oluşturulamadı: %s !" @@ -5456,7 +5681,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5495,7 +5720,7 @@ msgid "" msgstr "İşlemin üzerinde çalışacağı (okuma, yazma, oluşturma) nesneyi seç." #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5707,7 +5932,7 @@ msgid "Afghanistan, Islamic State of" msgstr "Afganistan" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Hata !" @@ -5728,6 +5953,12 @@ msgstr "Aralık Birimi" msgid "Kind" msgstr "Tür" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5984,6 +6215,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5993,11 +6232,6 @@ msgstr "" msgid "Address" msgstr "Adres" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6076,7 +6310,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "Saint Kitts ve Nevis Federasyonu" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6162,7 +6396,7 @@ msgid "Samoa" msgstr "Samoa" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6183,11 +6417,19 @@ msgid "Child IDs" msgstr "Alt Belirteçler" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "Sunucu İşlemi Yapılandırma `Kayıt Belirteci` sorunu!" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6234,6 +6476,16 @@ msgstr "E-Posta" msgid "Home Action" msgstr "Ev İşlemi" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" +"Verilerin toplamı (2. alan) boş.\n" +"Pasta grafiği çizilemiyor!" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6262,10 +6514,9 @@ msgid "Stop All" msgstr "Tümünü Durdur" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6316,7 +6567,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6375,7 +6626,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6427,7 +6678,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6508,7 +6759,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6546,6 +6804,12 @@ msgstr "Alıcı" msgid "Arguments" msgstr "Değişkenler" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6556,16 +6820,31 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" msgstr "" +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Müşteri" + #. module: base #: selection:base.language.install,lang:0 msgid "Spanish (NI) / Español (NI)" @@ -6669,7 +6948,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6720,6 +6999,15 @@ msgstr "Tablo Referansı" msgid "Object" msgstr "Nesne" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6755,7 +7043,7 @@ msgid "User Ref." msgstr "Kullanıcı Referansı" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6896,7 +7184,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6954,7 +7242,7 @@ msgid "Action Type" msgstr "İşlem Türü" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7057,11 +7345,23 @@ msgstr "Ülke Kodu" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7238,6 +7538,11 @@ msgstr "E-posta Gönder" msgid "Menu Action" msgstr "Menü İşlemi" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Faroe Adaları" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7375,7 +7680,7 @@ msgid "China" msgstr "Çin" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7573,7 +7878,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7617,6 +7922,14 @@ msgstr "Çeviri Değeri" msgid "Antigua and Barbuda" msgstr "Antigua ve Barbuda" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7675,7 +7988,7 @@ msgid "Auto-Refresh" msgstr "Kendiliğinden-Yenile" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7685,6 +7998,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Wallis ve Futuna Adaları" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7741,6 +8059,35 @@ msgstr "Banka Tanımlıyıcı Kod" msgid "Turkmenistan" msgstr "Türkmenistan" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Hata" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7870,7 +8217,7 @@ msgid "Internal Header/Footer" msgstr "Dahili Üstbilgi/Altbilgi" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7911,6 +8258,14 @@ msgstr "Dominik Cumhuriyeti" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7936,7 +8291,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7983,11 +8338,18 @@ msgid "Low" msgstr "Düşük" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7996,7 +8358,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8150,7 +8512,7 @@ msgid "View Auto-Load" msgstr "Görünüm Kendiliğinden Yüklenmesi" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8162,6 +8524,11 @@ msgstr "" msgid "Resource" msgstr "Kaynak" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8173,7 +8540,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8185,6 +8552,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8309,7 +8684,7 @@ msgid "Azerbaijan" msgstr "Azerbaycan" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Uyarı" @@ -8336,9 +8711,9 @@ msgid "Czech / Čeština" msgstr "Çekce / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Wallis ve Futuna Adaları" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Gelişmiş Arama" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8638,7 +9013,7 @@ msgid "Account Owner" msgstr "Hesap Sahibi" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8698,7 +9073,7 @@ msgid "Workflow Instances" msgstr "İş Akışı Oluşumları" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Ortaklar: " @@ -8807,6 +9182,10 @@ msgstr "Rusça / русский язык" #~ msgid "%j - Day of the year as a decimal number [001,366]." #~ msgstr "%j - Onluk sistemde Yılın günleri [001,366]." +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Bu tip bir belge oluşturamazsınız! (%s)" + #~ msgid "Operand" #~ msgstr "İşlenen" @@ -8851,14 +9230,6 @@ msgstr "Rusça / русский язык" #~ msgid "Factor" #~ msgstr "Çarpan" -#, python-format -#~ msgid "" -#~ "The sum of the data (2nd field) is null.\n" -#~ "We can't draw a pie chart !" -#~ msgstr "" -#~ "Verilerin toplamı (2. alan) boş.\n" -#~ "Pasta grafiği çizilemiyor!" - #~ msgid "Alignment" #~ msgstr "Hizalama" @@ -8895,6 +9266,10 @@ msgstr "Rusça / русский язык" #~ msgid "Simple domain setup" #~ msgstr "Basit alan ayarları" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Bu belgeyi okuyamazsınız! (%s)" + #~ msgid "Fixed Width" #~ msgstr "Sabit Genişlik" @@ -8923,6 +9298,10 @@ msgstr "Rusça / русский язык" #~ msgid "Configure User" #~ msgstr "Kullanıcı Yapılandır" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Bu belgeye yazamazsınız! (%s)" + #~ msgid "left" #~ msgstr "sol" @@ -8935,6 +9314,10 @@ msgstr "Rusça / русский язык" #~ msgid "right" #~ msgstr "sağ" +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Bu belgeyi silemezsiniz! (%s)" + #~ msgid "Others Partners" #~ msgstr "Diğer Ortaklar" diff --git a/bin/addons/base/i18n/uk.po b/bin/addons/base/i18n/uk.po index 6d2e4431093..16728b26e6f 100644 --- a/bin/addons/base/i18n/uk.po +++ b/bin/addons/base/i18n/uk.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-16 08:59+0000\n" "Last-Translator: Fabien (Open ERP) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 04:59+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:21+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +60,6 @@ msgstr "Метадані" msgid "View Architecture" msgstr "Архітектура виду" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Ви не можете створювати цей вид документу! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +110,14 @@ msgstr "" msgid "Created Views" msgstr "Створені види" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,11 +134,10 @@ msgid "South Korea" msgstr "Південна Корея" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "Переміщення" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -140,13 +149,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "Свазіленд" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -175,13 +191,13 @@ msgid "Search Partner" msgstr "Знайти Партнера" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "новий" @@ -212,7 +228,7 @@ msgid "Contact Name" msgstr "Контактна особа" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -236,6 +252,12 @@ msgstr "активний" msgid "Wizard Name" msgstr "Назва майстра" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -268,7 +290,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -319,7 +340,7 @@ msgid "Netherlands Antilles" msgstr "Нідерландські Антильські Острови" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -344,11 +365,6 @@ msgstr "Грецька / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "Боснійська / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -356,6 +372,12 @@ msgid "" "name, it returns the previous report." msgstr "" +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "Метод read не реалізований у цьому об'єкті!" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -383,6 +405,12 @@ msgstr "Колумбія" msgid "Schedule Upgrade" msgstr "Запланувати поновлення" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -426,7 +454,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "Назва поля користувача має починатися з 'x_'!" @@ -673,6 +701,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "Метод unlink не реалізований у цьому об'єкті!" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -737,6 +771,14 @@ msgstr "%B - Повна назва місяця." msgid "Type" msgstr "Тип" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -763,6 +805,19 @@ msgstr "Неправильний XML для архітектури виду!" msgid "Cayman Islands" msgstr "Кайманові острови" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "Переміщення" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -870,6 +925,16 @@ msgstr "Гаїті" msgid "Search" msgstr "Пошук" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -925,13 +990,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -965,6 +1030,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "Метод search не реалізований у цьому об'єкті!" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1012,7 +1083,7 @@ msgid "On Create" msgstr "Коли створюється" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1113,12 +1184,6 @@ msgstr "Приєднане ID" msgid "Day: %(day)s" msgstr "День: %(day)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Ви не можете читати цей документ! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1160,8 +1225,8 @@ msgstr "" "object.list_price > object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (copy)" @@ -1241,7 +1306,7 @@ msgid "Formula" msgstr "Формула" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "Неможливо видалити користувача root!" @@ -1252,7 +1317,8 @@ msgid "Malawi" msgstr "Малаві" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1304,7 +1370,6 @@ msgstr "Дерево" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1333,6 +1398,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "Метод search_memory не реалізовано!" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1384,7 +1455,7 @@ msgid "Bahamas" msgstr "Багамські Острови" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1406,6 +1477,12 @@ msgstr "Ірландія" msgid "Number of modules updated" msgstr "Кількість обновлених модулів" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "Метод set_memory не реалізовано!" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1481,6 +1558,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1550,7 +1633,7 @@ msgid "Madagascar" msgstr "Мадагаскар" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1637,12 +1720,6 @@ msgstr "Адреса ел. пошти" msgid "French (BE) / Français (BE)" msgstr "Французська (Бельгія) / Français (BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Ви не можете редагувати цей документ! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1713,6 +1790,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "Метод perm_read не реалізований у цьому об'єкті!" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1723,13 +1806,19 @@ msgstr "" msgid "Slovenia" msgstr "Словенія" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1759,6 +1848,14 @@ msgstr "Кінцева Дата" msgid "New Zealand" msgstr "Нова Зеландія" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1808,19 +1905,13 @@ msgstr "Помилка! Не можна створювати рекурсивн msgid "Valid" msgstr "Дійсний" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Ви не можете видалити цей документ! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "Неможливо оновити модуль '%s'. Він не встановлений." @@ -1931,6 +2022,15 @@ msgstr "Сигнал (subflow.*)" msgid "HR sector" msgstr "Працевлаштування" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1984,6 +2084,11 @@ msgstr "Залежності" msgid "Main Company" msgstr "Головна компанія" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2072,8 +2177,9 @@ msgid "Sir" msgstr "Пан" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2172,7 +2278,7 @@ msgid "Mayotte" msgstr "Майотта" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "Будьласка вкажіть дію до виконання !" @@ -2196,6 +2302,12 @@ msgstr "Зправа-на-Ліво" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "Перевірте, чи всі рядки мають %d колонок." + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2216,7 +2328,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "Рекурсивна помилка у залежностях модулів!" @@ -2241,6 +2359,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2293,11 +2416,6 @@ msgstr "" msgid "VAT" msgstr "ПДВ" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2334,7 +2452,7 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2343,13 +2461,21 @@ msgstr "" "Неможливо створити файл модуля:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "Науру" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2425,6 +2551,12 @@ msgstr "Надіслати SMS" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2482,7 +2614,7 @@ msgid "Ecuador" msgstr "Еквадор" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2553,7 +2685,7 @@ msgid "Action to Trigger" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2748,18 +2880,13 @@ msgstr "Автор" msgid "FYROM" msgstr "Македонія" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Розширений пошук" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - Прийнятне відображення дати та часу." #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2805,7 +2932,7 @@ msgid "Rules" msgstr "Правила" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2876,7 +3003,7 @@ msgid "Lesotho" msgstr "Лесото" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "Ви не можете видалити модель '%s'!" @@ -2906,6 +3033,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2937,7 +3070,7 @@ msgid "Benin" msgstr "Бенін" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2967,6 +3100,14 @@ msgstr "Заголовок RML" msgid "API ID" msgstr "API ID" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3214,6 +3355,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "Нікарагуа" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "Метод write не реалізований у цьому об'єкті!" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3494,7 +3641,8 @@ msgid "Bank Type" msgstr "Тип Банку" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "Назва групи не може починатися з \"-\"" @@ -3516,7 +3664,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3534,7 +3682,7 @@ msgid "Flow Start" msgstr "Старт потоку" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3566,7 +3714,9 @@ msgid "Guadeloupe (French)" msgstr "Гваделупська (French)" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3641,6 +3791,11 @@ msgstr "" msgid "Cape Verde" msgstr "Капе Верде" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3654,6 +3809,12 @@ msgstr "Події" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3687,9 +3848,10 @@ msgid "French / Français" msgstr "Французька" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Створені Меню" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "Метод create не реалізований у цьому об'єкті!" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -3939,6 +4101,14 @@ msgstr "Порада" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3977,8 +4147,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -4008,12 +4178,9 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Покупець" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "" #. module: base #: model:res.country,name:base.lc @@ -4121,6 +4288,18 @@ msgstr "В'єтнам" msgid "Signature" msgstr "Підпис" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "Не реалізовано" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4142,7 +4321,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4183,9 +4362,11 @@ msgid "Contacts" msgstr "Контакти" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "Фарерські Острови" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "" #. module: base #: view:res.widget.wizard:0 @@ -4214,6 +4395,12 @@ msgstr "Чеська Республіка" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4258,15 +4445,9 @@ msgid "Mongolia" msgstr "Монголія" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Помилка" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Створені Меню" #. module: base #: selection:ir.ui.view,type:0 @@ -4380,11 +4561,6 @@ msgstr "" msgid "Password" msgstr "Пароль" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4484,7 +4660,7 @@ msgid "Change My Preferences" msgstr "Змінити мої вподобання" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4552,7 +4728,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4630,7 +4806,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4705,7 +4887,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "Модуль %s: Невірний Сертифікат Якості" @@ -4753,6 +4935,11 @@ msgstr "" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4867,6 +5054,14 @@ msgstr "" msgid "Nepal" msgstr "Непал" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4896,14 +5091,14 @@ msgid "Update Modules List" msgstr "Обновити Список Модулів" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4922,6 +5117,12 @@ msgstr "Далі" msgid "Thai / ภาษาไทย" msgstr "Тайська / ภาษาไทย" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5052,6 +5253,13 @@ msgstr "Повна назва країни" msgid "Iteration" msgstr "Повторення" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5090,7 +5298,12 @@ msgid "Solomon Islands" msgstr "Соломонові Острови" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "AccessError" @@ -5101,7 +5314,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5111,6 +5324,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "Метод copy не реалізований у цьому об'єкті!" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5228,7 +5447,7 @@ msgid "ir.actions.todo" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5302,17 +5521,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "Метод get_memory не реалізовано!" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5321,7 +5546,7 @@ msgid "Python Code" msgstr "Код Python" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "Неможливо створити файл модуля: %s!" @@ -5440,7 +5665,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5479,7 +5704,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5691,7 +5916,7 @@ msgid "Afghanistan, Islamic State of" msgstr "Афганістан" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Помилка!" @@ -5712,6 +5937,12 @@ msgstr "Од.виміру інтервалу" msgid "Kind" msgstr "Вид" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "Цього метода вже не існує" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5968,6 +6199,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5977,11 +6216,6 @@ msgstr "" msgid "Address" msgstr "Адреси" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6060,7 +6294,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6144,7 +6378,7 @@ msgid "Samoa" msgstr "Самоа" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6165,11 +6399,19 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "ValidateError" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6216,6 +6458,16 @@ msgstr "Ел.пошта" msgid "Home Action" msgstr "Дія" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" +"Сума даних рівна нулю (2-е поле).\n" +"Неможливо намалювати кільцеву діаграму !" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6244,10 +6496,9 @@ msgid "Stop All" msgstr "Зупинити все" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6298,7 +6549,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6356,7 +6607,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6408,7 +6659,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6489,7 +6740,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6527,6 +6785,12 @@ msgstr "До" msgid "Arguments" msgstr "Аргументи" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6537,15 +6801,30 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" -msgstr "" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "Значення \"%s\" для поля \"%s\" немає у виборі" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Покупець" #. module: base #: selection:base.language.install,lang:0 @@ -6650,7 +6929,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6701,6 +6980,15 @@ msgstr "Таблиця пос." msgid "Object" msgstr "Об'єкт" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6736,7 +7024,7 @@ msgid "User Ref." msgstr "Користувач" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6877,7 +7165,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6935,7 +7223,7 @@ msgid "Action Type" msgstr "Тип дії" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7038,11 +7326,23 @@ msgstr "Код країни" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "невизначений метод get!" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7219,6 +7519,11 @@ msgstr "Надіслати" msgid "Menu Action" msgstr "Дія меню" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "Фарерські Острови" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7356,7 +7661,7 @@ msgid "China" msgstr "Китай" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7554,7 +7859,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7598,6 +7903,14 @@ msgstr "Значення перекладу" msgid "Antigua and Barbuda" msgstr "" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7656,7 +7969,7 @@ msgid "Auto-Refresh" msgstr "Автопоновлення" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7666,6 +7979,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "Острови Велліс та Футуна" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7722,6 +8040,35 @@ msgstr "Bank Identifier Code" msgid "Turkmenistan" msgstr "Туркменістан" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Помилка" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7850,7 +8197,7 @@ msgid "Internal Header/Footer" msgstr "Внутрішні колонтитули" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7891,6 +8238,14 @@ msgstr "Домініканська Республіка" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7916,7 +8271,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7963,11 +8318,18 @@ msgid "Low" msgstr "Низький" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7976,7 +8338,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8130,7 +8492,7 @@ msgid "View Auto-Load" msgstr "Продивитися автозавантаження" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8142,6 +8504,11 @@ msgstr "" msgid "Resource" msgstr "Ресурс" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8153,7 +8520,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8165,6 +8532,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8289,7 +8664,7 @@ msgid "Azerbaijan" msgstr "Азербайджан" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Попередження" @@ -8316,9 +8691,9 @@ msgid "Czech / Čeština" msgstr "Чеська / Czech" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "Острови Велліс та Футуна" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Розширений пошук" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8616,7 +8991,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8676,7 +9051,7 @@ msgid "Workflow Instances" msgstr "Екземпляри процесу" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Партнери: " @@ -8737,16 +9112,16 @@ msgstr "Російська / Russian" #~ msgid "%j - Day of the year as a decimal number [001,366]." #~ msgstr "%j - День року як десяткове число [001,366]." +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Ви не можете створювати цей вид документу! (%s)" + #~ msgid "Outgoing transitions" #~ msgstr "Вихідні переміщення" #~ msgid "Yearly" #~ msgstr "Щороку" -#, python-format -#~ msgid "The unlink method is not implemented on this object !" -#~ msgstr "Метод unlink не реалізований у цьому об'єкті!" - #~ 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 " @@ -8813,10 +9188,6 @@ msgstr "Російська / Russian" #~ msgid "Configure" #~ msgstr "Налаштувати" -#, python-format -#~ msgid "The read method is not implemented on this object !" -#~ msgstr "Метод read не реалізований у цьому об'єкті!" - #~ msgid "STOCK_MEDIA_REWIND" #~ msgstr "STOCK_MEDIA_REWIND" @@ -8869,14 +9240,6 @@ msgstr "Російська / Russian" #~ msgid "You try to bypass an access rule (Document type: %s)." #~ msgstr "Ви намагаєтеся знехтувати правилами доступу (Тип документу: %s)." -#, python-format -#~ msgid "" -#~ "The sum of the data (2nd field) is null.\n" -#~ "We can't draw a pie chart !" -#~ msgstr "" -#~ "Сума даних рівна нулю (2-е поле).\n" -#~ "Неможливо намалювати кільцеву діаграму !" - #~ msgid "Sequence Name" #~ msgstr "Назва послідовності" @@ -8950,6 +9313,10 @@ msgstr "Російська / Russian" #~ msgid "Simple domain setup" #~ msgstr "Просте встановлення галузі" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Ви не можете читати цей документ! (%s)" + #~ msgid "STOCK_FIND_AND_REPLACE" #~ msgstr "STOCK_FIND_AND_REPLACE" @@ -8986,10 +9353,6 @@ msgstr "Російська / Russian" #~ msgid "STOCK_CLEAR" #~ msgstr "STOCK_CLEAR" -#, python-format -#~ msgid "Not implemented search_memory method !" -#~ msgstr "Метод search_memory не реалізовано!" - #~ msgid "STOCK_PROPERTIES" #~ msgstr "STOCK_PROPERTIES" @@ -8999,10 +9362,6 @@ msgstr "Російська / Russian" #~ msgid "Year without century: %(y)s" #~ msgstr "Рік без століття: %(y)s" -#, python-format -#~ msgid "Not implemented set_memory method !" -#~ msgstr "Метод set_memory не реалізовано!" - #~ msgid "Maintenance contract added !" #~ msgstr "Контракт на підтримку додано !" @@ -9031,16 +9390,16 @@ msgstr "Російська / Russian" #~ msgid "Configure User" #~ msgstr "Налаштувати користувача" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Ви не можете редагувати цей документ! (%s)" + #~ msgid "left" #~ msgstr "вліво" #~ msgid "STOCK_PRINT_PREVIEW" #~ msgstr "STOCK_PRINT_PREVIEW" -#, python-format -#~ msgid "The perm_read method is not implemented on this object !" -#~ msgstr "Метод perm_read не реалізований у цьому об'єкті!" - #~ msgid "STOCK_MEDIA_PLAY" #~ msgstr "STOCK_MEDIA_PLAY" @@ -9056,6 +9415,10 @@ msgstr "Російська / Russian" #~ msgid "right" #~ msgstr "вправо" +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Ви не можете видалити цей документ! (%s)" + #~ msgid "Others Partners" #~ msgstr "Інші партнери" @@ -9107,10 +9470,6 @@ msgstr "Російська / Russian" #~ msgid "Report Footer" #~ msgstr "Нижній колонтитул" -#, python-format -#~ msgid "Please check that all your lines have %d columns." -#~ msgstr "Перевірте, чи всі рядки мають %d колонок." - #~ msgid "Import language" #~ msgstr "Імпорт мови" @@ -9163,10 +9522,6 @@ msgstr "Російська / Russian" #~ msgid "System Upgrade" #~ msgstr "Оновлення системи" -#, python-format -#~ msgid "The create method is not implemented on this object !" -#~ msgstr "Метод create не реалізований у цьому об'єкті!" - #~ msgid "Partner Address" #~ msgstr "Адреса партнера" @@ -9233,10 +9588,6 @@ msgstr "Російська / Russian" #~ msgid "wizard.module.lang.export" #~ msgstr "wizard.module.lang.export" -#, python-format -#~ msgid "The write method is not implemented on this object !" -#~ msgstr "Метод write не реалізований у цьому об'єкті!" - #~ msgid "Sale Opportunity" #~ msgstr "Можливість продажу" @@ -9376,10 +9727,6 @@ msgstr "Російська / Russian" #~ msgid "Calculate Count" #~ msgstr "Рахувати кількість" -#, python-format -#~ msgid "Not Implemented" -#~ msgstr "Не реалізовано" - #~ msgid "Maintenance" #~ msgstr "Підтримка" @@ -9494,10 +9841,6 @@ msgstr "Російська / Russian" #~ msgid "STOCK_MEDIA_RECORD" #~ msgstr "STOCK_MEDIA_RECORD" -#, python-format -#~ msgid "The copy method is not implemented on this object !" -#~ msgstr "Метод copy не реалізований у цьому об'єкті!" - #~ msgid "None" #~ msgstr "Нічого" @@ -9527,10 +9870,6 @@ msgstr "Російська / Russian" #~ msgid "You cannot perform this operation." #~ msgstr "Ви не можете виконати цю операцію." -#, python-format -#~ msgid "Not implemented get_memory method !" -#~ msgstr "Метод get_memory не реалізовано!" - #~ msgid "Customers Partners" #~ msgstr "Партнери-клієнти" @@ -9586,10 +9925,6 @@ msgstr "Російська / Russian" #~ msgid "terp-hr" #~ msgstr "terp-hr" -#, python-format -#~ msgid "This method does not exist anymore" -#~ msgstr "Цього метода вже не існує" - #~ msgid "Line Plot" #~ msgstr "Лінійний графік" @@ -9657,10 +9992,6 @@ msgstr "Російська / Russian" #~ msgid "Ok" #~ msgstr "Ок" -#, python-format -#~ msgid "ValidateError" -#~ msgstr "ValidateError" - #~ msgid "STOCK_DISCONNECT" #~ msgstr "STOCK_DISCONNECT" @@ -9698,10 +10029,6 @@ msgstr "Російська / Russian" #~ msgid "sxw" #~ msgstr "sxw" -#, python-format -#~ msgid "The value \"%s\" for the field \"%s\" is not in the selection" -#~ msgstr "Значення \"%s\" для поля \"%s\" немає у виборі" - #~ msgid "Automatic XSL:RML" #~ msgstr "Автоматичний XSL:RML" @@ -9781,10 +10108,6 @@ msgstr "Російська / Russian" #~ msgid "Status" #~ msgstr "Ствтус" -#, python-format -#~ msgid "undefined get method !" -#~ msgstr "невизначений метод get!" - #~ msgid "ir.report.custom" #~ msgstr "ir.report.custom" @@ -9978,10 +10301,6 @@ msgstr "Російська / Russian" #~ msgid "Add Maintenance Contract" #~ msgstr "Додати Контракт на Підтримку" -#, python-format -#~ msgid "The search method is not implemented on this object !" -#~ msgstr "Метод search не реалізований у цьому об'єкті!" - #~ msgid "Unsubscribed" #~ msgstr "Непідписаний" diff --git a/bin/addons/base/i18n/vi.po b/bin/addons/base/i18n/vi.po index d14a770d1de..c67f109d501 100644 --- a/bin/addons/base/i18n/vi.po +++ b/bin/addons/base/i18n/vi.po @@ -7,14 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-26 07:38+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-27 04:38+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:21+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -41,6 +41,14 @@ msgstr "Cấu hình khác" msgid "DateTime" msgstr "Ngày giờ" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -53,12 +61,6 @@ msgstr "Siêu dữ liệu" msgid "View Architecture" msgstr "Kiến trúc Xem" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "Bạn không thể tạo loại tài liệu này (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -109,6 +111,14 @@ msgstr "" msgid "Created Views" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -125,11 +135,10 @@ msgid "South Korea" msgstr "Nam Triều tiên" #. 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 "Chuyển tiếp" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -141,13 +150,20 @@ msgstr "ir.ui.view.custom" msgid "Swaziland" msgstr "" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -178,13 +194,13 @@ msgid "Search Partner" msgstr "Tìm kiếm Đối tác" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "\"smtp_server \"cần phải được thiết lập để gửi thư cho người dùng" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "mới" @@ -215,7 +231,7 @@ msgid "Contact Name" msgstr "Tên liên hệ" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -237,6 +253,12 @@ msgstr "có hiệu lực" msgid "Wizard Name" msgstr "" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -269,7 +291,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -320,7 +341,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -344,11 +365,6 @@ msgstr "Tiếng Hy Lạp" msgid "Bosnian / bosanski jezik" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "Biểu tượng web" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -356,6 +372,12 @@ msgid "" "name, it returns the previous report." msgstr "" +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -382,6 +404,12 @@ msgstr "" msgid "Schedule Upgrade" msgstr "Lên kế hoạch nâng cấp" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -425,7 +453,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "" @@ -677,6 +705,12 @@ msgstr "" "Thiết lập ngôn ngữ cho giao diện người dùng của người sử dụng, khi bản dịch " "của giao diện có sẵn" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -741,6 +775,14 @@ msgstr "%B - Tên đầy đủ của tháng." msgid "Type" msgstr "Loại" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -767,6 +809,19 @@ msgstr "XML không hợp lệ cho Kiến trúc Xem!" msgid "Cayman Islands" msgstr "Quần đảo Cay-man" +#. 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 "Chuyển tiếp" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -871,6 +926,16 @@ msgstr "" msgid "Search" msgstr "Tìm kiếm" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -926,13 +991,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "Không tồn tại ngôn ngữ có mã là \"%s\"" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -963,6 +1028,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1010,7 +1081,7 @@ msgid "On Create" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1111,12 +1182,6 @@ msgstr "" msgid "Day: %(day)s" msgstr "Ngày: %(day)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "Bạn không thể đọc tài liệu này! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1156,8 +1221,8 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (sao chép)" @@ -1235,7 +1300,7 @@ msgid "Formula" msgstr "Công thức" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "Không thể xóa người dùng gốc" @@ -1246,7 +1311,8 @@ msgid "Malawi" msgstr "Ma-la-uy" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "%s (sao chép)" @@ -1295,7 +1361,6 @@ msgstr "Cấu trúc cây" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "" @@ -1322,6 +1387,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1373,7 +1444,7 @@ msgid "Bahamas" msgstr "Ba-ha-ma" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1394,6 +1465,12 @@ msgstr "" msgid "Number of modules updated" msgstr "Số lượng mô đun được cập nhật" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1469,6 +1546,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1538,7 +1621,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1624,12 +1707,6 @@ msgstr "Địa chỉ thư điện tử" msgid "French (BE) / Français (BE)" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "Bạn không thể ghi vào tài liệu! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1700,6 +1777,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1710,13 +1793,19 @@ msgstr "%y - Năm không có thế kỷ [00,99]." msgid "Slovenia" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "Các thông điệp" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "Lỗi!" @@ -1746,6 +1835,14 @@ msgstr "Ngày kết thúc" msgid "New Zealand" msgstr "" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1795,19 +1892,13 @@ msgstr "Lỗi ! Bạn không thể tạo các công ty đệ quy." msgid "Valid" msgstr "Hợp lệ" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "Bạn không thể xóa tài liệu này! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "Không thể nâng cấp mô-đun '%s'. Mô-đun này chưa được cài đặt." @@ -1918,6 +2009,15 @@ msgstr "" msgid "HR sector" msgstr "Lĩnh vực nhân sự" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1971,6 +2071,11 @@ msgstr "Các phụ thuộc" msgid "Main Company" msgstr "Công ty chính" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2057,8 +2162,9 @@ msgid "Sir" msgstr "Ngài" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2157,7 +2263,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "" @@ -2181,6 +2287,12 @@ msgstr "Phải sang Trái" msgid "Filters" msgstr "Các bộ lọc" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2201,7 +2313,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "" @@ -2226,6 +2344,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2278,11 +2401,6 @@ msgstr "Kiểm tra EAN" msgid "VAT" msgstr "Thuế GTGT" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2319,7 +2437,7 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2328,13 +2446,21 @@ msgstr "" "Không thể tạo tập tin mô-đun:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "Mã chứng nhận của mô đun này phải là duy nhất !" @@ -2410,6 +2536,12 @@ msgstr "Gửi tin nhắn SMS" msgid "EAN13" msgstr "EAN13" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2467,7 +2599,7 @@ msgid "Ecuador" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2533,7 +2665,7 @@ msgid "Action to Trigger" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2728,18 +2860,13 @@ msgstr "Tác giả" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "Tìm kiếm nâng cao" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2785,7 +2912,7 @@ msgid "Rules" msgstr "Quy tắc" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "" @@ -2855,7 +2982,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "" @@ -2885,6 +3012,12 @@ msgstr "" msgid "System Configuration Done" msgstr "Hoàn tất Cấu hình hệ thống" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2916,7 +3049,7 @@ msgid "Benin" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "Hợp đồng đó đã được đăng ký vào hệ thống." @@ -2946,6 +3079,14 @@ msgstr "" msgid "API ID" msgstr "API ID" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3191,6 +3332,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "Ni-ca-ra-goa" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3469,7 +3616,8 @@ msgid "Bank Type" msgstr "Loại ngân hàng" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "Tên nhóm không thể bắt đầu bằng \"-\"" @@ -3491,7 +3639,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3511,7 +3659,7 @@ msgid "Flow Start" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3543,7 +3691,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "Lỗi người dùng" @@ -3618,6 +3768,11 @@ msgstr "%S - Giây [00,61]." msgid "Cape Verde" msgstr "" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3631,6 +3786,12 @@ msgstr "Sự kiện" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3664,9 +3825,10 @@ msgid "French / Français" msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "Các trình đơn được tạo" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -3916,6 +4078,14 @@ msgstr "" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3954,8 +4124,8 @@ msgid "Project" msgstr "Dự án" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -3985,12 +4155,9 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "Khách hàng" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "Kiểm toán" #. module: base #: model:res.country,name:base.lc @@ -4098,6 +4265,18 @@ msgstr "Việt Nam" msgid "Signature" msgstr "Chữ ký" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4119,7 +4298,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "Tên của mô đun phải duy nhất !" @@ -4160,8 +4339,10 @@ msgid "Contacts" msgstr "Liên hệ" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" msgstr "" #. module: base @@ -4191,6 +4372,12 @@ msgstr "Cộng hoà Séc" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4235,15 +4422,9 @@ msgid "Mongolia" msgstr "Mông Cổ" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "Lỗi" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "Các trình đơn được tạo" #. module: base #: selection:ir.ui.view,type:0 @@ -4357,11 +4538,6 @@ msgstr "" msgid "Password" msgstr "Mật khẩu" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4461,7 +4637,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "Tên mô hình không hợp lệ trong định nghĩa hành động." @@ -4529,7 +4705,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4607,7 +4783,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4680,7 +4862,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4728,6 +4910,11 @@ msgstr "Tin nhắn SMS gửi đi" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4842,6 +5029,14 @@ msgstr "" msgid "Nepal" msgstr "Nê-pan" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4871,7 +5066,7 @@ msgid "Update Modules List" msgstr "Cập nhật danh sách mô đun" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" @@ -4880,7 +5075,7 @@ msgstr "" "ứng: %s" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4899,6 +5094,12 @@ msgstr "Tiếp tục" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5029,6 +5230,13 @@ msgstr "Tên đầy đủ của quốc gia." msgid "Iteration" msgstr "" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "UserError" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5067,7 +5275,12 @@ msgid "Solomon Islands" msgstr "Quần đảo Xô-lô-mông" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "" @@ -5078,7 +5291,7 @@ msgid "Waiting" msgstr "Đang chờ" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "Không thể nạp mô đun base" @@ -5088,6 +5301,12 @@ msgstr "Không thể nạp mô đun base" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5205,7 +5424,7 @@ msgid "ir.actions.todo" msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5279,17 +5498,23 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "Mô-đun %s không tồn tại!" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5298,7 +5523,7 @@ msgid "Python Code" msgstr "Python Code" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "Không thể tạo tập tin của mô-đun: %s !" @@ -5417,7 +5642,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5456,7 +5681,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5668,7 +5893,7 @@ msgid "Afghanistan, Islamic State of" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "Lỗi !" @@ -5689,6 +5914,12 @@ msgstr "" msgid "Kind" msgstr "" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5944,6 +6175,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5953,11 +6192,6 @@ msgstr "" msgid "Address" msgstr "Địa chỉ" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6036,7 +6270,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6120,7 +6354,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6141,11 +6375,19 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6192,6 +6434,14 @@ msgstr "Thư điện tử" msgid "Home Action" msgstr "" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6220,11 +6470,10 @@ msgid "Stop All" msgstr "Dừng tất cả" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" -msgstr "Đăng ký một Hợp đồng" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" +msgstr "" #. module: base #: view:ir.model.data:0 @@ -6274,7 +6523,7 @@ msgid "Start update" msgstr "Bắt đầu cập nhật" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6332,7 +6581,7 @@ msgid "HR Manager Dashboard" msgstr "Bảng điều khiển Nguồn nhân lực" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6386,7 +6635,7 @@ msgid "Module Update" msgstr "Cập nhật Mô đun" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "Các mô-đun sau chưa được cài đặt hoặc không biết: %s" @@ -6467,7 +6716,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "Độ dài trường dữ liệu không thể nhỏ hơn 1 !" @@ -6505,6 +6761,12 @@ msgstr "Đến" msgid "Arguments" msgstr "Các đối số" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6515,15 +6777,30 @@ msgstr "GPL phiên bản 2" msgid "GPL Version 3" msgstr "GPL phiên bản 3" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "Đúng EAN13" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" -msgstr "Kiểm toán" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "Khách hàng" #. module: base #: selection:base.language.install,lang:0 @@ -6628,7 +6905,7 @@ msgid "Copy Object" msgstr "Sao chép đối tượng" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6679,6 +6956,15 @@ msgstr "" msgid "Object" msgstr "Đối tượng" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6714,7 +7000,7 @@ msgid "User Ref." msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "Cảnh báo !" @@ -6855,7 +7141,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6911,7 +7197,7 @@ msgid "Action Type" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7014,11 +7300,23 @@ msgstr "Mã quốc gia" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7193,6 +7491,11 @@ msgstr "Gửi thư điện tử" msgid "Menu Action" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7330,7 +7633,7 @@ msgid "China" msgstr "Trung Quốc" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7530,7 +7833,7 @@ msgid "Account No." msgstr "Số tài khoản" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7574,6 +7877,14 @@ msgstr "" msgid "Antigua and Barbuda" msgstr "" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7632,7 +7943,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7642,6 +7953,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7698,6 +8014,35 @@ msgstr "" msgid "Turkmenistan" msgstr "" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "Lỗi" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7826,7 +8171,7 @@ msgid "Internal Header/Footer" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7865,6 +8210,14 @@ msgstr "Cộng hoà Đô-mi-ni-cạ" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7888,7 +8241,7 @@ msgid "Event Logs" msgstr "Nhật ký sự kiện" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "Hoàn tất cầu hình hệ thống" @@ -7935,11 +8288,18 @@ msgid "Low" msgstr "Thấp" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "Lỗi ! Bạn không thể tạo trình đơn đệ quy." +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "Đăng ký một Hợp đồng" + #. module: base #: view:ir.rule:0 msgid "" @@ -7948,7 +8308,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8102,7 +8462,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "Bạn không thể xóa trường '%s' !" @@ -8114,6 +8474,11 @@ msgstr "Bạn không thể xóa trường '%s' !" msgid "Resource" msgstr "Tài nguyên" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8125,7 +8490,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "Phụ thuộc không được đáp ứng !" @@ -8137,6 +8502,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8261,7 +8634,7 @@ msgid "Azerbaijan" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "Warning" @@ -8288,9 +8661,9 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "Tìm kiếm nâng cao" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8588,7 +8961,7 @@ msgid "Account Owner" msgstr "Chủ tài khoản" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8648,7 +9021,7 @@ msgid "Workflow Instances" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "Các đối tác: " @@ -8706,6 +9079,10 @@ msgstr "" msgid "Russian / русский язык" msgstr "Tiếng Nga" +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "Bạn không thể tạo loại tài liệu này (%s)" + #~ msgid "%j - Day of the year as a decimal number [001,366]." #~ msgstr "%j - Ngày trong năm (001 - 366)" @@ -12177,10 +12554,6 @@ msgstr "Tiếng Nga" #~ msgid "Recurring Models" #~ msgstr "Recurring Models" -#, python-format -#~ msgid "UserError" -#~ msgstr "UserError" - #~ msgid "It acts as a default account for credit amount" #~ msgstr "It acts as a default account for credit amount" @@ -14142,6 +14515,10 @@ msgstr "Tiếng Nga" #~ msgid "STOCK_COPY" #~ msgstr "STOCK_COPY" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "Bạn không thể đọc tài liệu này! (%s)" + #~ msgid "STOCK_FIND_AND_REPLACE" #~ msgstr "STOCK_FIND_AND_REPLACE" @@ -14205,9 +14582,20 @@ msgstr "Tiếng Nga" #~ msgid "STOCK_HELP" #~ msgstr "STOCK_HELP" +#~ msgid "Web Icons" +#~ msgstr "Biểu tượng web" + #~ msgid "Maintenance contract added !" #~ msgstr "Hợp đồng bảo trì đã được thêm vào" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "Bạn không thể ghi vào tài liệu! (%s)" + +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "Bạn không thể xóa tài liệu này! (%s)" + #, python-format #~ msgid "Unable to find a valid contract" #~ msgstr "Không thể tìm thấy một hợp đồng hợp lệ" diff --git a/bin/addons/base/i18n/zh_CN.po b/bin/addons/base/i18n/zh_CN.po index a523472e3ea..152d29fcc47 100644 --- a/bin/addons/base/i18n/zh_CN.po +++ b/bin/addons/base/i18n/zh_CN.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-29 02:26+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" +"PO-Revision-Date: 2010-12-31 09:47+0000\n" "Last-Translator: Wei \"oldrev\" Li \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-29 04:40+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:00+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,14 @@ msgstr "其他配置" msgid "DateTime" msgstr "日期时间" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "many2many 字段的第二个参数 %s 必须是数据库表。您所使用的 %s 不是一个有效的数据库表名。" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +60,6 @@ msgstr "Meta信息" msgid "View Architecture" msgstr "视图结构" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "您不能创建 (%s) 类型的文档!" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +110,14 @@ msgstr "显示菜单提示" msgid "Created Views" msgstr "已创建的视图" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "您不能写入单据 (%s)!请确保您的帐号属于用户组:%s" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,11 +134,10 @@ msgid "South Korea" msgstr "韩国" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "转换" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "约束错误" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -140,13 +149,20 @@ msgstr "自定义视图" msgid "Swaziland" msgstr "史瓦济兰" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "已创建" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "木材供应商" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -175,13 +191,13 @@ msgid "Search Partner" msgstr "搜索业务伙伴" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "需要设置 \"smtp_server\" 给用户发邮件" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "新建" @@ -212,7 +228,7 @@ msgid "Contact Name" msgstr "联系人姓名" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -234,6 +250,12 @@ msgstr "有效" msgid "Wizard Name" msgstr "向导名称" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "无效的 group_by" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -266,7 +288,6 @@ msgstr "ir.ui.view_sc" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "窗口控件" @@ -317,7 +338,7 @@ msgid "Netherlands Antilles" msgstr "荷属安德列斯岛" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -339,11 +360,6 @@ msgstr "希腊语 / Ελληνικά" msgid "Bosnian / bosanski jezik" msgstr "波斯尼亚语 / bosanski jezik" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "Web图标" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -351,6 +367,12 @@ msgid "" "name, it returns the previous report." msgstr "如果您选中此处,当下次用户使用相同的附件名称打印时将返回以前的报表。" +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "该对象的“read”方法尚未实现!" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -377,6 +399,12 @@ msgstr "哥伦比亚" msgid "Schedule Upgrade" msgstr "定期升级" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "键/值对 '%s' 并未包含在选定的字段 '%s' 中" + #. module: base #: help:res.country,code:0 msgid "" @@ -420,7 +448,7 @@ msgid "Miscellaneous Suppliers" msgstr "其他供应商" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "自定义的字段名称必须以“x_”开始!" @@ -667,6 +695,12 @@ msgid "" "available" msgstr "设置该用户使用的界面语言" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "此对象尚未实现“unlink”方法!" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -731,6 +765,16 @@ msgstr "%B - 月份全称" msgid "Type" msgstr "类型" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" +"在您的系统有“%s“编码的语言未定义!\n" +"请通过管理菜单设定它。" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -757,6 +801,19 @@ msgstr "无效的 XML 视图结构" msgid "Cayman Islands" msgstr "开曼群岛" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "转换" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "记录 #%d %s 无法找到,不能复制!" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -861,6 +918,16 @@ msgstr "海地" msgid "Search" msgstr "搜索" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -916,13 +983,13 @@ msgid "ir.exports" msgstr "ir.exports" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "不存在代码为“%s”的语言" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "当与发布者保障服务器通信时发生错误。" @@ -954,6 +1021,12 @@ msgid "" "issues directly to OpenERP." msgstr "下面将帮助您注册一个合同到系统中, 成功后, 您可以直接将问题反馈到OpenERP公司." +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "该对象尚未实现“search”方法!" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1001,7 +1074,7 @@ msgid "On Create" msgstr "创建" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1114,12 +1187,6 @@ msgstr "附件编号" msgid "Day: %(day)s" msgstr "天:%(day)s" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not read this document! (%s)" -msgstr "您不能读取文档 %s!" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1161,8 +1228,8 @@ msgid "" msgstr "动作执行前所做的条件判断,如:object.list_price > object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr " (副本)" @@ -1240,7 +1307,7 @@ msgid "Formula" msgstr "公式" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "不能删除根用户!" @@ -1251,7 +1318,8 @@ msgid "Malawi" msgstr "马拉维" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "%s (副本)" @@ -1300,7 +1368,6 @@ msgstr "树形列表" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "如果您不想让该用户连接到本系统的话请保持为空。" @@ -1327,6 +1394,12 @@ msgid "" "one of the following:" msgstr "如果用CSV格式文件导入,请确定文件首行如下:" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "尚未实现“search_memory”方法!" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1378,7 +1451,7 @@ msgid "Bahamas" msgstr "巴哈马" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1399,6 +1472,12 @@ msgstr "爱尔兰" msgid "Number of modules updated" msgstr "已更新的模块数" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "尚未实现“set_memory”方法!" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1476,6 +1555,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "逗号分隔的视图模式列表,如:'form', 'tree', 'calendar', 等(默认: tree,form)" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1546,7 +1631,7 @@ msgid "Madagascar" msgstr "马达加斯加" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1631,12 +1716,6 @@ msgstr "电子邮件地址" msgid "French (BE) / Français (BE)" msgstr "法语(比利时)/ Français (BE)" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "您不能写入此文档 %s!" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1707,6 +1786,12 @@ msgid "" "e.g. 'res.partener'" msgstr "作业运行时需要调用的方法所在的对象名 如res.partner" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "该对象尚未实现“perm_read”方法!" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1717,13 +1802,19 @@ msgstr "%y - 两位数年份" msgid "Slovenia" msgstr "斯洛文尼亚" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "无效的对象架构!" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "信件" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "错误!" @@ -1753,6 +1844,14 @@ msgstr "结束日期" msgid "New Zealand" msgstr "新西兰" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "您正尝试修改的记录已经被删除(单据类型:%s)." + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1802,19 +1901,13 @@ msgstr "错误!您不能创建循环的公司。" msgid "Valid" msgstr "有效" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "您不能删除文档:%s!" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "XSL" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "不能升级模块 “%s“,因为它尚未安装。" @@ -1925,6 +2018,15 @@ msgstr "信号(subflow.*)" msgid "HR sector" msgstr "人力资源部门" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1978,6 +2080,11 @@ msgstr "依附关系" msgid "Main Company" msgstr "母公司" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "Web 图标文件(悬停)" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2064,9 +2171,10 @@ msgid "Sir" msgstr "先生" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" -msgstr "选择要导入的模块包(.zip 文件):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" +msgstr "类型 '%s' 没有为该结构定义视图" #. module: base #: field:ir.default,ref_id:0 @@ -2164,7 +2272,7 @@ msgid "Mayotte" msgstr "马约特" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "请指定要启动的动作!" @@ -2188,6 +2296,12 @@ msgstr "从右到左" msgid "Filters" msgstr "过滤" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "请确保所有行都有 %d 列。" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2205,10 +2319,16 @@ msgstr "称谓" #. module: base #: help:ir.property,res_id:0 msgid "If not set, acts as a default value for new resources" -msgstr "" +msgstr "倘若没有设置,则作为新资源的默认值" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "检测到循环。" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "模块的依赖包含循环错误!" @@ -2233,6 +2353,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "增值税编号,如该业务伙伴适用于增值税,请选择。用于增值税申报。" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "maintenance.contract" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2285,11 +2410,6 @@ msgstr "条码检查" msgid "VAT" msgstr "增值税" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "Web 鼠标悬停图标" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2326,7 +2446,7 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" @@ -2335,13 +2455,21 @@ msgstr "" "无法创建模块文件:\n" " %s" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "瑙鲁" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "模块的认证ID必须唯一" @@ -2382,7 +2510,7 @@ msgid "" "If you need another language than the official ones available, you can " "import a language pack from here. Other OpenERP languages than the official " "ones can be found on launchpad." -msgstr "" +msgstr "如果您需要使用其他官方支持的语言,您可以在此处导入语言包。其他官方尚未支持的语言可以在 launchpad.net 上下载。" #. module: base #: view:ir.module.module:0 @@ -2417,6 +2545,12 @@ msgstr "发送SMS" msgid "EAN13" msgstr "条形码(EAN13)" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2474,7 +2608,7 @@ msgid "Ecuador" msgstr "厄瓜多尔" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2540,7 +2674,7 @@ msgid "Action to Trigger" msgstr "待触发动作" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2735,18 +2869,13 @@ msgstr "作者" msgid "FYROM" msgstr "马其顿共和国" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "高级搜索" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - 日期时间表示" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2795,7 +2924,7 @@ msgid "Rules" msgstr "规则" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "您试图删除一个已安装或正要安装的模块" @@ -2863,7 +2992,7 @@ msgid "Lesotho" msgstr "莱索托" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "您不能删除模型“%s”!" @@ -2893,6 +3022,12 @@ msgstr "Abkhazian / аҧсуа" msgid "System Configuration Done" msgstr "系统配置完成" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "验证字段 %s 时发生错误:%s" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2924,7 +3059,7 @@ msgid "Benin" msgstr "贝宁" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "该合同已经注册到系统中了。" @@ -2954,6 +3089,14 @@ msgstr "RML 页眉" msgid "API ID" msgstr "API ID" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3200,6 +3343,12 @@ msgstr "res.users" msgid "Nicaragua" msgstr "尼加拉瓜" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "该对象尚未实现“write”方法!" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3478,7 +3627,8 @@ msgid "Bank Type" msgstr "银行类型" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "用户组的名称不能以“-”开始" @@ -3500,7 +3650,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "古吉拉特语 / ગુજરાતી" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3518,7 +3668,7 @@ msgid "Flow Start" msgstr "工作流开始" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "模块库不能装载!(提示:检查addons路径)" @@ -3550,7 +3700,9 @@ msgid "Guadeloupe (French)" msgstr "瓜德卢普(法属)" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "用户错误" @@ -3625,6 +3777,11 @@ msgstr "%S - 秒 [00,61]." msgid "Cape Verde" msgstr "佛得角" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "选择要导入的模块包(.zip 文件):" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3638,6 +3795,12 @@ msgstr "事件" msgid "ir.actions.url" msgstr "ir.actions.url" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "%r 错误的浏览记录标识符,其应该为一个整数。" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3671,9 +3834,10 @@ msgid "French / Français" msgstr "法语 / Français" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" -msgstr "已创建菜单" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" +msgstr "该对象尚未实现“create”方法!" #. module: base #: field:workflow.triggers,workitem_id:0 @@ -3923,6 +4087,14 @@ msgstr "建议" msgid "ir.attachment" msgstr "ir.attachment" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3961,9 +4133,9 @@ msgid "Project" msgstr "项目" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" -msgstr "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" +msgstr "Web 图标图片(悬停)" #. module: base #: view:base.module.import:0 @@ -3992,12 +4164,9 @@ msgid "Serial Key" msgstr "产品密钥" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" -msgstr "客户" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" +msgstr "审核" #. module: base #: model:res.country,name:base.lc @@ -4105,6 +4274,18 @@ msgstr "越南" msgid "Signature" msgstr "签名" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "尚未实现" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4126,7 +4307,7 @@ msgid "False means for every user" msgstr "False 表示作用于每个用户" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "模块名必须唯一!" @@ -4167,9 +4348,11 @@ msgid "Contacts" msgstr "联系人" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" -msgstr "法罗群岛" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" +msgstr "不能删除该单据,因为它被作为默认属性使用" #. module: base #: view:res.widget.wizard:0 @@ -4198,6 +4381,12 @@ msgstr "捷克共和国" msgid "Widget Wizard" msgstr "部件向导" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "日历视图缺少字段!" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4242,15 +4431,9 @@ msgid "Mongolia" msgstr "蒙古" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" -msgstr "错误" +#: view:ir.module.module:0 +msgid "Created Menus" +msgstr "已创建菜单" #. module: base #: selection:ir.ui.view,type:0 @@ -4364,11 +4547,6 @@ msgstr "圣文森特和格林纳丁斯" msgid "Password" msgstr "密码" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "图标文件" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4468,7 +4646,7 @@ msgid "Change My Preferences" msgstr "更改我的首选项" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "动作定义中使用了无效的模式名称。" @@ -4536,7 +4714,7 @@ msgid "Raphaël Valyi's tweets" msgstr "Raphaël Valyi 的推" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4617,7 +4795,13 @@ msgid "Client Actions" msgstr "客户端动作" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "该对象尚未实现“exists”方法 !" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4690,7 +4874,7 @@ msgid "ir.server.object.lines" msgstr "ir.server.object.lines" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "模块 %s:无效的证书号" @@ -4738,6 +4922,11 @@ msgstr "发送手机短信" msgid "Accepted Users" msgstr "接受的用户" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "Web 图标图片" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4852,6 +5041,14 @@ msgstr "Olivier Dony 的推" msgid "Nepal" msgstr "尼泊尔" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4881,14 +5078,14 @@ msgid "Update Modules List" msgstr "更新模块列表" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "不能升级模块 %s, 因为找不到外部依赖:%s" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4907,6 +5104,12 @@ msgstr "继续" msgid "Thai / ภาษาไทย" msgstr "泰国语 / ภาษาไทย" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "对象%s不存在" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5037,6 +5240,13 @@ msgstr "国家全名" msgid "Iteration" msgstr "反复" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "用户错误" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5075,7 +5285,12 @@ msgid "Solomon Islands" msgstr "所罗门群岛" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "访问错误" @@ -5086,7 +5301,7 @@ msgid "Waiting" msgstr "等待中" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "不能载入基本模块" @@ -5096,6 +5311,12 @@ msgstr "不能载入基本模块" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "8. %I:%M:%S %p ==> 06:25:20 PM" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "该对象尚未实现“copy”方法!" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5213,7 +5434,7 @@ msgid "ir.actions.todo" msgstr "ir.actions.todo" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "找不到上一个 ir.actions.todo" @@ -5287,17 +5508,23 @@ msgid "res.widget" msgstr "res.widget" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "模型 %s 不存在!" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "不能删除用户的首先语言." +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "该对象尚未实现“get_memory“方法!" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5306,7 +5533,7 @@ msgid "Python Code" msgstr "Python 语言代码" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "无法创建模块文件:%s!" @@ -5425,10 +5652,10 @@ msgid "" msgstr "视图类型:设为“tree”来使用树形控件显示层次数据,或者设为“form”使用其他类型视图。" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." -msgstr "" +msgstr "请单击“继续”按钮配置下一个模块..." #. module: base #: field:ir.actions.server,record_id:0 @@ -5464,7 +5691,7 @@ msgid "" msgstr "选择动作(读、写、创建)执行所在之对象。" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "请指定服务器选项,email from!" @@ -5676,7 +5903,7 @@ msgid "Afghanistan, Islamic State of" msgstr "阿富汗伊斯兰国" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "错误!" @@ -5697,6 +5924,12 @@ msgstr "间隔单位" msgid "Kind" msgstr "类别" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "该方法不存在" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5952,6 +6185,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "浏览官方的翻译,从这些连接开始:" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5961,11 +6202,6 @@ msgstr "浏览官方的翻译,从这些连接开始:" msgid "Address" msgstr "地址" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "鼠标悬停图标文件" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6044,7 +6280,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "圣基茨和尼维斯" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6128,7 +6364,7 @@ msgid "Samoa" msgstr "萨摩亚" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6149,11 +6385,19 @@ msgid "Child IDs" msgstr "下级标识符" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "设置服务器动作的“记录标识符”时出错!" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "验证错误" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6200,6 +6444,16 @@ msgstr "电子邮件" msgid "Home Action" msgstr "主页动作" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" +"这些数据的总和(第二个字段)为空。\n" +"我们无法绘制饼图!" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6228,10 +6482,9 @@ msgid "Stop All" msgstr "全部停止" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6282,7 +6535,7 @@ msgid "Start update" msgstr "开始更新" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6340,7 +6593,7 @@ msgid "HR Manager Dashboard" msgstr "人事经理仪表盘" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6392,7 +6645,7 @@ msgid "Module Update" msgstr "模块更新" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "一下模块不能安装或未知:'%s'" @@ -6473,7 +6726,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "字段的长度不小于1" @@ -6511,6 +6771,12 @@ msgstr "请求给" msgid "Arguments" msgstr "参数" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6521,15 +6787,30 @@ msgstr "GPL Version 2" msgid "GPL Version 3" msgstr "GPL Version 3" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" -msgstr "审核" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "字段 %s 的值 %s 不在选择之内" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" +msgstr "客户" #. module: base #: selection:base.language.install,lang:0 @@ -6634,7 +6915,7 @@ msgid "Copy Object" msgstr "复制对象" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6685,6 +6966,15 @@ msgstr "表参照" msgid "Object" msgstr "对象" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6720,7 +7010,7 @@ msgid "User Ref." msgstr "用户参照" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "警告 !" @@ -6861,7 +7151,7 @@ msgid "workflow.triggers" msgstr "workflow.triggers" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "无效搜索规则" @@ -6917,7 +7207,7 @@ msgid "Action Type" msgstr "动作类型" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -7020,11 +7310,23 @@ msgstr "国家编码" msgid "workflow.instance" msgstr "workflow.instance" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "10. %S ==> 20" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "未定义“get”方法!" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7199,6 +7501,11 @@ msgstr "发送邮件" msgid "Menu Action" msgstr "菜单动作" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "法罗群岛" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7336,7 +7643,7 @@ msgid "China" msgstr "中国" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7534,7 +7841,7 @@ msgid "Account No." msgstr "科目号" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "不能删除基础语言 'en_US'!" @@ -7578,6 +7885,14 @@ msgstr "翻译" msgid "Antigua and Barbuda" msgstr "安提瓜和巴布达" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7636,7 +7951,7 @@ msgid "Auto-Refresh" msgstr "自动刷新" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "osv_memory 字段仅用 = 和 != 操作符作比较." @@ -7646,6 +7961,11 @@ msgstr "osv_memory 字段仅用 = 和 != 操作符作比较." msgid "Diagram" msgstr "图表" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "瓦利斯和富图纳群岛" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7702,6 +8022,35 @@ msgstr "银行代码" msgid "Turkmenistan" msgstr "土库曼斯坦" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "错误" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7830,7 +8179,7 @@ msgid "Internal Header/Footer" msgstr "内部页眉/页脚" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7869,6 +8218,14 @@ msgstr "多米尼加共和国" msgid "Serbian (Cyrillic) / српски" msgstr "Serbian (Cyrillic) / српски" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7892,7 +8249,7 @@ msgid "Event Logs" msgstr "事件日志" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "系统配置已完成" @@ -7939,11 +8296,18 @@ msgid "Low" msgstr "低" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "错误!您不能创建递归的菜单。" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7952,7 +8316,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8106,7 +8470,7 @@ msgid "View Auto-Load" msgstr "自动加载视图" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "您不能删除字段 '%s' !" @@ -8118,6 +8482,11 @@ msgstr "您不能删除字段 '%s' !" msgid "Resource" msgstr "资源" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8129,7 +8498,7 @@ msgid "View Ordering" msgstr "视图顺序" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "未满足依赖." @@ -8141,6 +8510,14 @@ msgid "" "Portable Objects)" msgstr "支持的文件格式:*.csv (逗号分隔值) 和 *.po (GetText 可一直对象)" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8265,7 +8642,7 @@ msgid "Azerbaijan" msgstr "阿塞拜疆" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "警告" @@ -8292,9 +8669,9 @@ msgid "Czech / Čeština" msgstr "捷克语 / Čeština" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" -msgstr "瓦利斯和富图纳群岛" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" +msgstr "高级搜索" #. module: base #: model:ir.model,name:base.model_ir_wizard_screen @@ -8594,7 +8971,7 @@ msgid "Account Owner" msgstr "帐号所有者" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "切换公司警告" @@ -8654,7 +9031,7 @@ msgid "Workflow Instances" msgstr "工作流实例" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "业务伙伴: " @@ -9025,6 +9402,10 @@ msgstr "俄语 / русский язык" #~ msgid "Choose a language to install:" #~ msgstr "选择要安装的语言:" +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "您不能创建 (%s) 类型的文档!" + #~ msgid "%j - Day of the year as a decimal number [001,366]." #~ msgstr "%j - 十进制表示的该年中的天数 [001,366]." @@ -9057,10 +9438,6 @@ msgstr "俄语 / русский язык" #~ "如果您是第一次测试或使用 OpenERP,我们建议您使用简化界面,它的选项和字段更少更容易理解。以后您可以切换到扩展视图方式。\n" #~ " " -#, python-format -#~ msgid "The unlink method is not implemented on this object !" -#~ msgstr "此对象尚未实现“unlink”方法!" - #~ msgid "%y - Year without century as a decimal number [00,99]." #~ msgstr "%y - 不包含世纪的十进制年份数 [00,99]。" @@ -9126,10 +9503,6 @@ msgstr "俄语 / русский язык" #~ msgid "June" #~ msgstr "六月" -#, python-format -#~ msgid "The read method is not implemented on this object !" -#~ msgstr "该对象的“read”方法尚未实现!" - #~ msgid "STOCK_MEDIA_REWIND" #~ msgstr "STOCK_MEDIA_REWIND" @@ -9176,14 +9549,6 @@ msgstr "俄语 / русский язык" #~ msgid "You try to bypass an access rule (Document type: %s)." #~ msgstr "您尝试跳过访问规则(文档类型:%s)。" -#, python-format -#~ msgid "" -#~ "The sum of the data (2nd field) is null.\n" -#~ "We can't draw a pie chart !" -#~ msgstr "" -#~ "这些数据的总和(第二个字段)为空。\n" -#~ "我们无法绘制饼图!" - #~ msgid "ir.model.config" #~ msgstr "ir.model.config" @@ -9224,6 +9589,10 @@ msgstr "俄语 / русский язык" #~ msgid "Simple domain setup" #~ msgstr "简单域设置" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "您不能读取文档 %s!" + #~ msgid "STOCK_FIND_AND_REPLACE" #~ msgstr "STOCK_FIND_AND_REPLACE" @@ -9248,20 +9617,12 @@ msgstr "俄语 / русский язык" #~ msgid "STOCK_CLEAR" #~ msgstr "STOCK_CLEAR" -#, python-format -#~ msgid "Not implemented search_memory method !" -#~ msgstr "尚未实现“search_memory”方法!" - #~ msgid "STOCK_PROPERTIES" #~ msgstr "STOCK_PROPERTIES" #~ msgid "Year without century: %(y)s" #~ msgstr "不包含世纪的年数:%(y)s" -#, python-format -#~ msgid "Not implemented set_memory method !" -#~ msgstr "尚未实现“set_memory”方法!" - #~ msgid "Maintenance contract added !" #~ msgstr "维护合同已添加!" @@ -9289,16 +9650,16 @@ msgstr "俄语 / русский язык" #~ msgid "Configure User" #~ msgstr "用户设置" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "您不能写入此文档 %s!" + #~ msgid "left" #~ msgstr "左对齐" #~ msgid "STOCK_PRINT_PREVIEW" #~ msgstr "STOCK_PRINT_PREVIEW" -#, python-format -#~ msgid "The perm_read method is not implemented on this object !" -#~ msgstr "该对象尚未实现“perm_read”方法!" - #~ msgid "STOCK_MEDIA_PLAY" #~ msgstr "STOCK_MEDIA_PLAY" @@ -9314,6 +9675,10 @@ msgstr "俄语 / русский язык" #~ msgid "right" #~ msgstr "右对齐" +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "您不能删除文档:%s!" + #~ msgid "Others Partners" #~ msgstr "其他业务伙伴" @@ -9351,14 +9716,6 @@ msgstr "俄语 / русский язык" #~ msgid "STOCK_JUSTIFY_RIGHT" #~ msgstr "STOCK_JUSTIFY_RIGHT" -#, python-format -#~ msgid "Please check that all your lines have %d columns." -#~ msgstr "请确保所有行都有 %d 列。" - -#, python-format -#~ msgid "Recursivity Detected." -#~ msgstr "检测到循环。" - #~ msgid "terp-account" #~ msgstr "terp-account" @@ -9404,10 +9761,6 @@ msgstr "俄语 / русский язык" #~ msgid "Subscribed" #~ msgstr "已订阅" -#, python-format -#~ msgid "The create method is not implemented on this object !" -#~ msgstr "该对象尚未实现“create”方法!" - #~ msgid "Partner Address" #~ msgstr "业务伙伴地址" @@ -9448,10 +9801,6 @@ msgstr "俄语 / русский язык" #~ "to change this, later, through the Administration menu." #~ msgstr "如果您是初次使用系统建议选择简单模式,这样会减少或隐藏一些设置。以后您可以通过管理菜单修改。" -#, python-format -#~ msgid "Error occurred while validating the field(s) %s: %s" -#~ msgstr "验证字段 %s 时发生错误:%s" - #~ msgid "The rule is satisfied if all test are True (AND)" #~ msgstr "如果所有测试都为真的话该规则将满足条件(“与”运算)" @@ -9480,10 +9829,6 @@ msgstr "俄语 / русский язык" #~ msgid "Groups are used to defined access rights on each screen and menu." #~ msgstr "用户组用于为每个屏幕和菜单定义访问权限。" -#, python-format -#~ msgid "The write method is not implemented on this object !" -#~ msgstr "该对象尚未实现“write”方法!" - #~ 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:" @@ -9520,10 +9865,6 @@ msgstr "俄语 / русский язык" #~ msgid "STOCK_MEDIA_STOP" #~ msgstr "STOCK_MEDIA_STOP" -#, python-format -#~ msgid "Wrong ID for the browse record, got %r, expected an integer." -#~ msgstr "%r 错误的浏览记录标识符,其应该为一个整数。" - #~ msgid "STOCK_DND_MULTIPLE" #~ msgstr "STOCK_DND_MULTIPLE" @@ -9592,10 +9933,6 @@ msgstr "俄语 / русский язык" #~ msgid "Calculate Count" #~ msgstr "计算数量" -#, python-format -#~ msgid "Not Implemented" -#~ msgstr "尚未实现" - #~ msgid "Maintenance" #~ msgstr "维护" @@ -9675,17 +10012,9 @@ msgstr "俄语 / русский язык" #~ msgid "terp-stock" #~ msgstr "terp-stock" -#, python-format -#~ msgid "UserError" -#~ msgstr "用户错误" - #~ msgid "STOCK_MEDIA_RECORD" #~ msgstr "STOCK_MEDIA_RECORD" -#, python-format -#~ msgid "The copy method is not implemented on this object !" -#~ msgstr "该对象尚未实现“copy”方法!" - #~ msgid "STOCK_UNINDENT" #~ msgstr "STOCK_UNINDENT" @@ -9708,10 +10037,6 @@ msgstr "俄语 / русский язык" #~ msgid "You cannot perform this operation." #~ msgstr "您无法执行此项操作。" -#, python-format -#~ msgid "Not implemented get_memory method !" -#~ msgstr "该对象尚未实现“get_memory“方法!" - #, python-format #~ msgid "Please specify server option --smtp-from !" #~ msgstr "请指定服务器选项:“--smtp-from”!" @@ -9751,10 +10076,6 @@ msgstr "俄语 / русский язык" #~ msgid "terp-hr" #~ msgstr "terp-hr" -#, python-format -#~ msgid "This method does not exist anymore" -#~ msgstr "该方法不存在" - #~ msgid "Manual" #~ msgstr "手工" @@ -9810,10 +10131,6 @@ msgstr "俄语 / русский язык" #~ msgid "Ok" #~ msgstr "确定" -#, python-format -#~ msgid "ValidateError" -#~ msgstr "验证错误" - #~ msgid "STOCK_DISCONNECT" #~ msgstr "STOCK_DISCONNECT" @@ -9844,10 +10161,6 @@ msgstr "俄语 / русский язык" #~ msgid "sxw" #~ msgstr "SXW" -#, python-format -#~ msgid "The value \"%s\" for the field \"%s\" is not in the selection" -#~ msgstr "字段 %s 的值 %s 不在选择之内" - #~ msgid "Manual domain setup" #~ msgstr "手动域设置" @@ -9893,10 +10206,6 @@ msgstr "俄语 / русский язык" #~ msgid "Your can't submit bug reports due to uncovered modules: %s" #~ msgstr "您无法提交错误报告,因为您没有为模块 %s 签订技术服务协议" -#, python-format -#~ msgid "undefined get method !" -#~ msgstr "未定义“get”方法!" - #~ msgid "ir.report.custom" #~ msgstr "ir.report.custom" @@ -10057,10 +10366,6 @@ msgstr "俄语 / русский язык" #~ msgid "Add Maintenance Contract" #~ msgstr "添加技术维护合同" -#, python-format -#~ msgid "The search method is not implemented on this object !" -#~ msgstr "该对象尚未实现“search”方法!" - #~ msgid "STOCK_MEDIA_PREVIOUS" #~ msgstr "STOCK_MEDIA_PREVIOUS" @@ -10222,10 +10527,6 @@ msgstr "俄语 / русский язык" #~ "You are already at the top level." #~ msgstr "您不能提升已在最高层次的案例。" -#, python-format -#~ msgid "Key/value '%s' not found in selection field '%s'" -#~ msgstr "键/值对 '%s' 并未包含在选定的字段 '%s' 中" - #, python-format #~ msgid "Can't connect instance %s" #~ msgstr "无法连接实例 %s" @@ -10741,14 +11042,6 @@ msgstr "俄语 / русский язык" #~ "address!" #~ msgstr "无法发送邮件因为任务 %s 的联系人信息不包含电子邮件地址!" -#, python-format -#~ msgid "" -#~ "Language with code \"%s\" is not defined in your system !\n" -#~ "Define it through the Administration menu." -#~ msgstr "" -#~ "在您的系统有“%s“编码的语言未定义!\n" -#~ "请通过管理菜单设定它。" - #, python-format #~ msgid "Login failed!" #~ msgstr "登录失败!" @@ -11186,10 +11479,6 @@ msgstr "俄语 / русский язык" #~ msgid "Please select at least two inventories." #~ msgstr "请选择至少2个盘存" -#, python-format -#~ msgid "The exists method is not implemented on this object !" -#~ msgstr "该对象尚未实现“exists”方法 !" - #, python-format #~ msgid "" #~ "Please fill in the partner and pricelist field '\n" @@ -11323,10 +11612,6 @@ msgstr "俄语 / русский язык" #~ msgid "The Total Should be Between %s and %s" #~ msgstr "合计应该在%s和%s之间" -#, python-format -#~ msgid "Object %s does not exists" -#~ msgstr "对象%s不存在" - #, python-format #~ msgid "Could not cancel this sale order !" #~ msgstr "无法取消该销售订单!" @@ -11736,3 +12021,15 @@ msgstr "俄语 / русский язык" #~ msgid "terp-camera_test" #~ msgstr "terp-camera_test" + +#~ msgid "Web Icons" +#~ msgstr "Web图标" + +#~ msgid "Icon File" +#~ msgstr "图标文件" + +#~ msgid "Web Icons Hover" +#~ msgstr "Web 鼠标悬停图标" + +#~ msgid "Icon hover File" +#~ msgstr "鼠标悬停图标文件" diff --git a/bin/addons/base/i18n/zh_TW.po b/bin/addons/base/i18n/zh_TW.po index 9736d51f340..fed43fe21a8 100644 --- a/bin/addons/base/i18n/zh_TW.po +++ b/bin/addons/base/i18n/zh_TW.po @@ -6,14 +6,14 @@ msgid "" msgstr "" "Project-Id-Version: OpenERP Server 5.0.0\n" "Report-Msgid-Bugs-To: support@openerp.com\n" -"POT-Creation-Date: 2010-12-21 19:43+0000\n" +"POT-Creation-Date: 2010-12-29 18:06+0000\n" "PO-Revision-Date: 2010-12-16 08:34+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-23 05:00+0000\n" +"X-Launchpad-Export-Date: 2010-12-31 05:21+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base @@ -40,6 +40,14 @@ msgstr "" msgid "DateTime" msgstr "" +#. module: base +#: code:addons/fields.py:534 +#, python-format +msgid "" +"The second argument of the many2many field %s must be a SQL table !You used " +"%s, which is not a valid SQL table name." +msgstr "" + #. module: base #: view:ir.values:0 #: field:ir.values,meta_unpickle:0 @@ -52,12 +60,6 @@ msgstr "其他相關資料" msgid "View Architecture" msgstr "視圖結構" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not create this kind of document! (%s)" -msgstr "您無法建立這種文件! (%s)" - #. module: base #: field:base.language.import,code:0 msgid "Code (eg:en__US)" @@ -108,6 +110,14 @@ msgstr "" msgid "Created Views" msgstr "已建立的視圖" +#. module: base +#: code:addons/base/ir/ir_model.py:339 +#, python-format +msgid "" +"You can not write in this document (%s) ! Be sure your user belongs to one " +"of these groups: %s." +msgstr "" + #. module: base #: field:res.partner,ref:0 msgid "Reference" @@ -124,11 +134,10 @@ msgid "South Korea" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_workflow_transition_form -#: model:ir.ui.menu,name:base.menu_workflow_transition -#: view:workflow.activity:0 -msgid "Transitions" -msgstr "轉換" +#: code:addons/osv.py:133 +#, python-format +msgid "Constraint Error" +msgstr "" #. module: base #: model:ir.model,name:base.model_ir_ui_view_custom @@ -140,13 +149,20 @@ msgstr "" msgid "Swaziland" msgstr "" +#. module: base +#: code:addons/orm.py:1993 +#: code:addons/orm.py:3653 +#, python-format +msgid "created." +msgstr "" + #. module: base #: model:res.partner.category,name:base.res_partner_category_woodsuppliers0 msgid "Wood Suppliers" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:303 #, python-format msgid "" "Some installed modules depend on the module you plan to Uninstall :\n" @@ -175,13 +191,13 @@ msgid "Search Partner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:132 #, python-format msgid "\"smtp_server\" needs to be set to send mails to users" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:60 #, python-format msgid "new" msgstr "" @@ -212,7 +228,7 @@ msgid "Contact Name" msgstr "联系人名称" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:56 #, python-format msgid "" "Save this document to a %s file and edit it with a specific software or a " @@ -234,6 +250,12 @@ msgstr "啟用" msgid "Wizard Name" msgstr "嚮導名稱" +#. module: base +#: code:addons/orm.py:2160 +#, python-format +msgid "Invalid group_by" +msgstr "" + #. module: base #: field:res.partner,credit_limit:0 msgid "Credit Limit" @@ -266,7 +288,6 @@ msgstr "" #. module: base #: field:res.widget.user,widget_id:0 -#: field:res.widget.wizard,widget_id:0 msgid "Widget" msgstr "" @@ -317,7 +338,7 @@ msgid "Netherlands Antilles" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "" "You can not remove the admin user as it is used internally for resources " @@ -339,11 +360,6 @@ msgstr "" msgid "Bosnian / bosanski jezik" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon_data:0 -msgid "Web Icons" -msgstr "" - #. module: base #: help:ir.actions.report.xml,attachment_use:0 msgid "" @@ -351,6 +367,12 @@ msgid "" "name, it returns the previous report." msgstr "如果您選中此處,當下次用戶使用相同的附件名稱列印時將返回以前的報表。" +#. module: base +#: code:addons/orm.py:904 +#, python-format +msgid "The read method is not implemented on this object !" +msgstr "" + #. module: base #: help:res.lang,iso_code:0 msgid "This ISO code is the name of po files to use for translations" @@ -377,6 +399,12 @@ msgstr "" msgid "Schedule Upgrade" msgstr "" +#. module: base +#: code:addons/orm.py:838 +#, python-format +msgid "Key/value '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: help:res.country,code:0 msgid "" @@ -420,7 +448,7 @@ msgid "Miscellaneous Suppliers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:216 #, python-format msgid "Custom fields must have a name that starts with 'x_' !" msgstr "自製的欄位名稱開頭必須是 'x_' !" @@ -667,6 +695,12 @@ msgid "" "available" msgstr "" +#. module: base +#: code:addons/orm.py:1043 +#, python-format +msgid "The unlink method is not implemented on this object !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_menu_create #: view:wizard.ir.model.menu.create:0 @@ -731,6 +765,14 @@ msgstr "%B——月份全稱" msgid "Type" msgstr "類型" +#. module: base +#: code:addons/orm.py:210 +#, python-format +msgid "" +"Language with code \"%s\" is not defined in your system !\n" +"Define it through the Administration menu." +msgstr "" + #. module: base #: model:res.country,name:base.gu msgid "Guam (USA)" @@ -757,6 +799,19 @@ msgstr "無效的XML視圖結構!" msgid "Cayman Islands" msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_workflow_transition_form +#: model:ir.ui.menu,name:base.menu_workflow_transition +#: view:workflow.activity:0 +msgid "Transitions" +msgstr "轉換" + +#. module: base +#: code:addons/orm.py:4018 +#, python-format +msgid "Record #%d of %s not found, cannot copy!" +msgstr "" + #. module: base #: field:ir.module.module,contributors:0 msgid "Contributors" @@ -861,6 +916,16 @@ msgstr "" msgid "Search" msgstr "搜尋" +#. module: base +#: code:addons/osv.py:136 +#, python-format +msgid "" +"The operation cannot be completed, probably due to the following:\n" +"- deletion: you may be trying to delete a record while other records still " +"reference it\n" +"- creation/update: a mandatory field is not correctly set" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -916,13 +981,13 @@ msgid "ir.exports" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "No language with code \"%s\" exists" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 #, python-format msgid "Error during communication with the publisher warranty server." msgstr "" @@ -954,6 +1019,12 @@ msgid "" "issues directly to OpenERP." msgstr "" +#. module: base +#: code:addons/orm.py:1744 +#, python-format +msgid "The search method is not implemented on this object !" +msgstr "" + #. module: base #: view:wizard.ir.model.menu.create:0 msgid "Create _Menu" @@ -1001,7 +1072,7 @@ msgid "On Create" msgstr "On创建" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:461 #, python-format msgid "" "'%s' contains too many dots. XML ids should not contain dots ! These are " @@ -1102,12 +1173,6 @@ msgstr "" 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 "您無法讀取這份文件! (%s)" - #. module: base #: model:ir.actions.act_window,help:base.open_module_tree msgid "" @@ -1147,8 +1212,8 @@ msgid "" msgstr "動作執行前所做的條件判斷,如:object.list_price > object.cost_price" #. module: base -#: code:addons/base/res/partner/partner.py:0 -#: code:addons/base/res/res_company.py:0 +#: code:addons/base/res/partner/partner.py:155 +#: code:addons/base/res/res_company.py:66 #, python-format msgid " (copy)" msgstr "" @@ -1226,7 +1291,7 @@ msgid "Formula" msgstr "公式" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:373 #, python-format msgid "Can not remove root user!" msgstr "無法移除root使用者" @@ -1237,7 +1302,8 @@ msgid "Malawi" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:51 +#: code:addons/base/res/res_user.py:397 #, python-format msgid "%s (copy)" msgstr "" @@ -1286,7 +1352,6 @@ msgstr "" #. module: base #: help:res.config.users,password:0 -#: help:res.users,password:0 msgid "" "Keep empty if you don't want the user to be able to connect on the system." msgstr "如果您不想讓該用戶連接到本系統的話請保持為空。" @@ -1313,6 +1378,12 @@ msgid "" "one of the following:" msgstr "" +#. module: base +#: code:addons/fields.py:114 +#, python-format +msgid "Not implemented search_memory method !" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.res_log_act_window #: model:ir.ui.menu,name:base.menu_res_log_act_window @@ -1364,7 +1435,7 @@ msgid "Bahamas" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "" "Couldn't generate the next id because some partners have an alphabetic id !" @@ -1385,6 +1456,12 @@ msgstr "" msgid "Number of modules updated" msgstr "已更新的模組數" +#. module: base +#: code:addons/fields.py:100 +#, python-format +msgid "Not implemented set_memory method !" +msgstr "" + #. module: base #: view:workflow.activity:0 msgid "Workflow Activity" @@ -1460,6 +1537,12 @@ msgid "" "'calendar', etc. (Default: tree,form)" msgstr "" +#. module: base +#: code:addons/orm.py:3147 +#, python-format +msgid "A document was modified since you last viewed it (%s:%d)" +msgstr "" + #. module: base #: view:workflow:0 msgid "Workflow Editor" @@ -1530,7 +1613,7 @@ msgid "Madagascar" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:94 #, python-format msgid "" "The Object name must start with x_ and not contain any special character !" @@ -1615,12 +1698,6 @@ msgstr "電子郵件地址" msgid "French (BE) / Français (BE)" msgstr "" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not write in this document! (%s)" -msgstr "您無法編寫這個文件! (%s)" - #. module: base #: view:ir.actions.server:0 #: field:workflow.activity,action_id:0 @@ -1691,6 +1768,12 @@ msgid "" "e.g. 'res.partener'" msgstr "" +#. module: base +#: code:addons/orm.py:1040 +#, python-format +msgid "The perm_read method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.lang:0 msgid "%y - Year without century [00,99]." @@ -1701,13 +1784,19 @@ msgstr "" msgid "Slovenia" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Invalid Object Architecture!" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_email_gateway_form msgid "Messages" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_update_translations.py:0 +#: code:addons/base/module/wizard/base_update_translations.py:38 #, python-format msgid "Error!" msgstr "" @@ -1737,6 +1826,14 @@ msgstr "結束日期" msgid "New Zealand" msgstr "" +#. module: base +#: code:addons/orm.py:3366 +#, python-format +msgid "" +"One of the records you are trying to modify has already been deleted " +"(Document type: %s)." +msgstr "" + #. module: base #: model:ir.actions.act_window,help:base.action_country msgid "" @@ -1786,19 +1883,13 @@ msgstr "錯誤!您不能建立循環的公司。" msgid "Valid" msgstr "有效" -#. module: base -#: code:addons/base/ir/ir_model.py:0 -#, python-format -msgid "You can not delete this document! (%s)" -msgstr "您無法移除此文件! (%s)" - #. module: base #: selection:ir.translation,type:0 msgid "XSL" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:322 #, python-format msgid "Can not upgrade module '%s'. It is not installed." msgstr "無法升級此模組 '%s'. 它並沒有安裝!" @@ -1909,6 +2000,15 @@ msgstr "信號(subflow.*)" msgid "HR sector" msgstr "" +#. module: base +#: code:addons/orm.py:3817 +#, python-format +msgid "" +"Invalid \"order\" specified. A valid \"order\" specification is a comma-" +"separated list of valid field names (optionally followed by asc/desc for the " +"direction)" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_module_module_dependency msgid "Module dependency" @@ -1962,6 +2062,11 @@ msgstr "相依性" msgid "Main Company" msgstr "主要公司" +#. module: base +#: field:ir.ui.menu,web_icon_hover:0 +msgid "Web Icon File (hover)" +msgstr "" + #. module: base #: view:ir.actions.server:0 msgid "" @@ -2048,8 +2153,9 @@ msgid "Sir" msgstr "先生" #. module: base -#: view:base.module.import:0 -msgid "Select module package to import (.zip file):" +#: code:addons/orm.py:1622 +#, python-format +msgid "There is no view of type '%s' defined for the structure!" msgstr "" #. module: base @@ -2148,7 +2254,7 @@ msgid "Mayotte" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:593 #, python-format msgid "Please specify an action to launch !" msgstr "請指示一個執行動作!" @@ -2172,6 +2278,12 @@ msgstr "從右到左" msgid "Filters" msgstr "" +#. module: base +#: code:addons/orm.py:758 +#, python-format +msgid "Please check that all your lines have %d columns." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.ir_cron_act #: view:ir.cron:0 @@ -2192,7 +2304,13 @@ msgid "If not set, acts as a default value for new resources" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:3448 +#, python-format +msgid "Recursivity Detected." +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:262 #, python-format msgid "Recursion error in modules dependencies !" msgstr "" @@ -2217,6 +2335,11 @@ msgid "" "VAT. Used by the VAT legal statement." msgstr "增值稅編號,如該業務夥伴適用於增值稅,請選擇。用於增值稅申報。" +#. module: base +#: model:ir.model,name:base.model_maintenance_contract +msgid "maintenance.contract" +msgstr "" + #. module: base #: model:res.country,name:base.ru msgid "Russian Federation" @@ -2269,11 +2392,6 @@ msgstr "" msgid "VAT" msgstr "VAT" -#. module: base -#: field:ir.ui.menu,web_icon_hover_data:0 -msgid "Web Icons Hover" -msgstr "" - #. module: base #: view:res.lang:0 msgid "12. %w ==> 5 ( Friday is the 6th day)" @@ -2310,20 +2428,28 @@ msgid "M." msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:429 #, python-format msgid "" "Can not create the module file:\n" " %s" msgstr "" +#. module: base +#: code:addons/orm.py:2973 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: read, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.nr msgid "Nauru" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:200 #, python-format msgid "The certificate ID of the module must be unique !" msgstr "" @@ -2399,6 +2525,12 @@ msgstr "發送SMS" msgid "EAN13" msgstr "條碼類型(EAN13)" +#. module: base +#: code:addons/orm.py:1622 +#, python-format +msgid "Invalid Architecture!" +msgstr "" + #. module: base #: model:res.country,name:base.pt msgid "Portugal" @@ -2456,7 +2588,7 @@ msgid "Ecuador" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:52 #, python-format msgid "" "Save this document to a .CSV file and open it with your favourite " @@ -2522,7 +2654,7 @@ msgid "Action to Trigger" msgstr "待觸發動作" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:136 #, python-format msgid "\"email_from\" needs to be set to send welcome mails to users" msgstr "" @@ -2717,18 +2849,13 @@ msgstr "作者" msgid "FYROM" msgstr "" -#. module: base -#: selection:ir.model.fields,select_level:0 -msgid "Advanced Search" -msgstr "" - #. module: base #: view:res.lang:0 msgid "%c - Appropriate date and time representation." msgstr "%c - 日期時間表示" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:422 #, python-format msgid "" "Your database is now fully configured.\n" @@ -2774,7 +2901,7 @@ msgid "Rules" msgstr "規則" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:216 #, python-format msgid "You try to remove a module that is installed or will be installed" msgstr "您嘗試移除已安裝或將被安裝的模組" @@ -2842,7 +2969,7 @@ msgid "Lesotho" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:112 #, python-format msgid "You can not remove the model '%s' !" msgstr "您無法移除 '%s' 這個區域" @@ -2872,6 +2999,12 @@ msgstr "" msgid "System Configuration Done" msgstr "" +#. module: base +#: code:addons/orm.py:929 +#, python-format +msgid "Error occurred while validating the field(s) %s: %s" +msgstr "" + #. module: base #: view:ir.property:0 msgid "Generic" @@ -2903,7 +3036,7 @@ msgid "Benin" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 #, python-format msgid "That contract is already registered in the system." msgstr "" @@ -2933,6 +3066,14 @@ msgstr "RML 頁首" msgid "API ID" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:340 +#, python-format +msgid "" +"You can not create this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:res.country,name:base.mu msgid "Mauritius" @@ -3178,6 +3319,12 @@ msgstr "" msgid "Nicaragua" msgstr "" +#. module: base +#: code:addons/orm.py:1046 +#, python-format +msgid "The write method is not implemented on this object !" +msgstr "" + #. module: base #: view:res.partner.event:0 msgid "General Description" @@ -3456,7 +3603,8 @@ msgid "Bank Type" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:58 +#: code:addons/base/res/res_user.py:67 #, python-format msgid "The name of the group can not start with \"-\"" msgstr "" @@ -3478,7 +3626,7 @@ msgid "Gujarati / ગુજરાતી" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:257 #, python-format msgid "" "Unable to process module \"%s\" because an external dependency is not met: %s" @@ -3496,7 +3644,7 @@ msgid "Flow Start" msgstr "工作流开始" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "module base cannot be loaded! (hint: verify addons-path)" msgstr "" @@ -3528,7 +3676,9 @@ msgid "Guadeloupe (French)" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 +#: code:addons/base/res/res_lang.py:88 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "User Error" msgstr "" @@ -3603,6 +3753,11 @@ msgstr "" msgid "Cape Verde" msgstr "" +#. module: base +#: view:base.module.import:0 +msgid "Select module package to import (.zip file):" +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.act_res_partner_event #: field:res.partner,events:0 @@ -3616,6 +3771,12 @@ msgstr "事件" msgid "ir.actions.url" msgstr "" +#. module: base +#: code:addons/orm.py:156 +#, python-format +msgid "Wrong ID for the browse record, got %r, expected an integer." +msgstr "" + #. module: base #: model:ir.actions.act_window,name:base.action_partner_addess_tree #: view:res.partner:0 @@ -3649,8 +3810,9 @@ msgid "French / Français" msgstr "" #. module: base -#: view:ir.module.module:0 -msgid "Created Menus" +#: code:addons/orm.py:1049 +#, python-format +msgid "The create method is not implemented on this object !" msgstr "" #. module: base @@ -3901,6 +4063,14 @@ msgstr "" msgid "ir.attachment" msgstr "" +#. module: base +#: code:addons/orm.py:3533 +#, python-format +msgid "" +"You cannot perform this operation. New Record Creation is not allowed for " +"this object as this object is for reporting purpose." +msgstr "" + #. module: base #: view:base.language.import:0 msgid "- module,type,name,res_id,src,value" @@ -3939,8 +4109,8 @@ msgid "Project" msgstr "" #. module: base -#: model:ir.model,name:base.model_maintenance_contract -msgid "maintenance.contract" +#: field:ir.ui.menu,web_icon_hover_data:0 +msgid "Web Icon Image (hover)" msgstr "" #. module: base @@ -3970,11 +4140,8 @@ msgid "Serial Key" msgstr "" #. module: base -#: field:res.partner,customer:0 -#: view:res.partner.address:0 -#: field:res.partner.address,is_customer_add:0 -#: model:res.partner.category,name:base.res_partner_category_0 -msgid "Customer" +#: model:ir.ui.menu,name:base.menu_audit +msgid "Audit" msgstr "" #. module: base @@ -4083,6 +4250,18 @@ msgstr "" msgid "Signature" msgstr "签名" +#. module: base +#: code:addons/fields.py:456 +#: code:addons/fields.py:654 +#: code:addons/fields.py:656 +#: code:addons/fields.py:658 +#: code:addons/fields.py:660 +#: code:addons/fields.py:662 +#: code:addons/fields.py:664 +#, python-format +msgid "Not Implemented" +msgstr "" + #. module: base #: model:ir.model,name:base.model_res_widget_user msgid "res.widget.user" @@ -4104,7 +4283,7 @@ msgid "False means for every user" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:198 #, python-format msgid "The name of the module must be unique !" msgstr "" @@ -4145,8 +4324,10 @@ msgid "Contacts" msgstr "联系人" #. module: base -#: model:res.country,name:base.fo -msgid "Faroe Islands" +#: code:addons/orm.py:3199 +#, python-format +msgid "" +"Unable to delete this document because it is used as a default property" msgstr "" #. module: base @@ -4176,6 +4357,12 @@ msgstr "" msgid "Widget Wizard" msgstr "" +#. module: base +#: code:addons/orm.py:1350 +#, python-format +msgid "Insufficient fields for Calendar View!" +msgstr "" + #. module: base #: selection:ir.property,type:0 msgid "Integer" @@ -4220,14 +4407,8 @@ msgid "Mongolia" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 -#: code:addons/base/ir/ir_model.py:0 -#: code:addons/base/module/module.py:0 -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 -#: code:addons/base/res/res_currency.py:0 -#: code:addons/base/res/res_user.py:0 -#, python-format -msgid "Error" +#: view:ir.module.module:0 +msgid "Created Menus" msgstr "" #. module: base @@ -4342,11 +4523,6 @@ msgstr "" msgid "Password" msgstr "" -#. module: base -#: field:ir.ui.menu,web_icon:0 -msgid "Icon File" -msgstr "" - #. module: base #: model:ir.actions.act_window,name:base.action_model_fields #: view:ir.model:0 @@ -4446,7 +4622,7 @@ msgid "Change My Preferences" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:160 #, python-format msgid "Invalid model name in the action definition." msgstr "" @@ -4514,7 +4690,7 @@ msgid "Raphaël Valyi's tweets" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:384 #, python-format msgid "" "\n" @@ -4592,7 +4768,13 @@ msgid "Client Actions" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/orm.py:1806 +#, python-format +msgid "The exists method is not implemented on this object !" +msgstr "" + +#. module: base +#: code:addons/base/module/module.py:336 #, python-format msgid "" "You try to upgrade a module that depends on the module: %s.\n" @@ -4667,7 +4849,7 @@ msgid "ir.server.object.lines" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:530 #, python-format msgid "Module %s: Invalid Quality Certificate" msgstr "" @@ -4715,6 +4897,11 @@ msgstr "" msgid "Accepted Users" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon_data:0 +msgid "Web Icon Image" +msgstr "" + #. module: base #: view:ir.values:0 msgid "Values for Event Type" @@ -4829,6 +5016,14 @@ msgstr "" msgid "Nepal" msgstr "" +#. module: base +#: code:addons/orm.py:2307 +#, python-format +msgid "" +"Invalid value for reference field \"%s\" (last part must be a non-zero " +"integer): \"%s\"" +msgstr "" + #. module: base #: help:ir.cron,args:0 msgid "Arguments to be passed to the method. e.g. (uid,)" @@ -4858,14 +5053,14 @@ msgid "Update Modules List" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:255 #, python-format msgid "" "Unable to upgrade module \"%s\" because an external dependency is not met: %s" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:241 #, python-format msgid "" "Please keep in mind that documents currently displayed may not be relevant " @@ -4884,6 +5079,12 @@ msgstr "" msgid "Thai / ภาษาไทย" msgstr "" +#. module: base +#: code:addons/orm.py:158 +#, python-format +msgid "Object %s does not exists" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Slovenian / slovenščina" @@ -5014,6 +5215,13 @@ msgstr "" msgid "Iteration" msgstr "" +#. module: base +#: code:addons/orm.py:3448 +#: code:addons/orm.py:3532 +#, python-format +msgid "UserError" +msgstr "" + #. module: base #: model:res.country,name:base.ae msgid "United Arab Emirates" @@ -5052,7 +5260,12 @@ msgid "Solomon Islands" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:344 +#: code:addons/orm.py:1897 +#: code:addons/orm.py:2972 +#: code:addons/orm.py:3165 +#: code:addons/orm.py:3365 +#: code:addons/orm.py:3817 #, python-format msgid "AccessError" msgstr "" @@ -5063,7 +5276,7 @@ msgid "Waiting" msgstr "" #. module: base -#: code:addons/__init__.py:0 +#: code:addons/__init__.py:827 #, python-format msgid "Could not load base module" msgstr "" @@ -5073,6 +5286,12 @@ msgstr "" msgid "8. %I:%M:%S %p ==> 06:25:20 PM" msgstr "" +#. module: base +#: code:addons/orm.py:1803 +#, python-format +msgid "The copy method is not implemented on this object !" +msgstr "" + #. module: base #: field:res.log,create_date:0 msgid "Creation Date" @@ -5190,7 +5409,7 @@ msgid "ir.actions.todo" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:94 #, python-format msgid "Couldn't find previous ir.actions.todo" msgstr "" @@ -5264,17 +5483,23 @@ msgid "res.widget" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:219 #, python-format msgid "Model %s does not exist!" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:88 #, python-format msgid "You cannot delete the language which is User's Preferred Language !" msgstr "" +#. module: base +#: code:addons/fields.py:103 +#, python-format +msgid "Not implemented get_memory method !" +msgstr "" + #. module: base #: view:ir.actions.server:0 #: field:ir.actions.server,code:0 @@ -5283,7 +5508,7 @@ msgid "Python Code" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Can not create the module file: %s !" msgstr "" @@ -5402,7 +5627,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/res/res_config.py:0 +#: code:addons/base/res/res_config.py:421 #, python-format msgid "Click 'Continue' to configure the next addon..." msgstr "" @@ -5441,7 +5666,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:625 #, python-format msgid "Please specify server option --email-from !" msgstr "" @@ -5653,7 +5878,7 @@ msgid "Afghanistan, Islamic State of" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_import.py:0 +#: code:addons/base/module/wizard/base_module_import.py:67 #, python-format msgid "Error !" msgstr "" @@ -5674,6 +5899,12 @@ msgstr "间隔单位" msgid "Kind" msgstr "类别" +#. module: base +#: code:addons/orm.py:3775 +#, python-format +msgid "This method does not exist anymore" +msgstr "" + #. module: base #: field:res.bank,fax:0 #: field:res.partner.address,fax:0 @@ -5929,6 +6160,14 @@ msgstr "" msgid "To browse official translations, you can start with these links:" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:338 +#, python-format +msgid "" +"You can not read this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: view:res.bank:0 #: field:res.config.users,address_id:0 @@ -5938,11 +6177,6 @@ msgstr "" msgid "Address" msgstr "地址" -#. module: base -#: field:ir.ui.menu,web_icon_hover:0 -msgid "Icon hover File" -msgstr "" - #. module: base #: field:ir.module.module,latest_version:0 msgid "Installed version" @@ -6021,7 +6255,7 @@ msgid "Saint Kitts & Nevis Anguilla" msgstr "" #. module: base -#: code:addons/base/res/res_currency.py:0 +#: code:addons/base/res/res_currency.py:100 #, python-format msgid "" "No rate found \n" @@ -6105,7 +6339,7 @@ msgid "Samoa" msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:90 #, python-format msgid "" "You cannot delete the language which is Active !\n" @@ -6126,11 +6360,19 @@ msgid "Child IDs" msgstr "" #. module: base -#: code:addons/base/ir/ir_actions.py:0 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 #, python-format msgid "Problem in configuration `Record Id` in Server Action!" msgstr "" +#. module: base +#: code:addons/orm.py:2306 +#: code:addons/orm.py:2316 +#, python-format +msgid "ValidateError" +msgstr "" + #. module: base #: view:base.module.import:0 #: view:base.module.update:0 @@ -6177,6 +6419,14 @@ msgstr "" msgid "Home Action" msgstr "动作" +#. module: base +#: code:addons/custom.py:558 +#, python-format +msgid "" +"The sum of the data (2nd field) is null.\n" +"We can't draw a pie chart !" +msgstr "" + #. module: base #: model:ir.ui.menu,name:base.menu_lunch_reporting #: model:ir.ui.menu,name:base.menu_project_report @@ -6205,10 +6455,9 @@ msgid "Stop All" msgstr "" #. module: base -#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard -#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add -#: view:publisher_warranty.contract.wizard:0 -msgid "Register a Contract" +#: code:addons/orm.py:412 +#, python-format +msgid "The read_group method is not implemented on this object !" msgstr "" #. module: base @@ -6259,7 +6508,7 @@ msgid "Start update" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:144 #, python-format msgid "Contract validation error" msgstr "" @@ -6317,7 +6566,7 @@ msgid "HR Manager Dashboard" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:253 #, python-format msgid "" "Unable to install module \"%s\" because an external dependency is not met: %s" @@ -6369,7 +6618,7 @@ msgid "Module Update" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Following modules are not installed or unknown: %s" msgstr "" @@ -6450,7 +6699,14 @@ msgid "The new user's real name, used for searching and most listings" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/osv.py:154 +#: code:addons/osv.py:156 +#, python-format +msgid "Integrity Error" +msgstr "" + +#. module: base +#: code:addons/base/ir/ir_model.py:189 #, python-format msgid "Size of the field can never be less than 1 !" msgstr "" @@ -6488,6 +6744,12 @@ msgstr "请求给" msgid "Arguments" msgstr "参数" +#. module: base +#: code:addons/orm.py:716 +#, python-format +msgid "Database ID doesn't exist: %s : %s" +msgstr "" + #. module: base #: selection:ir.module.module,license:0 msgid "GPL Version 2" @@ -6498,14 +6760,29 @@ msgstr "" msgid "GPL Version 3" msgstr "" +#. module: base +#: code:addons/orm.py:836 +#, python-format +msgid "key '%s' not found in selection field '%s'" +msgstr "" + #. module: base #: view:partner.wizard.ean.check:0 msgid "Correct EAN13" msgstr "" #. module: base -#: model:ir.ui.menu,name:base.menu_audit -msgid "Audit" +#: code:addons/orm.py:2317 +#, python-format +msgid "The value \"%s\" for the field \"%s\" is not in the selection" +msgstr "" + +#. module: base +#: field:res.partner,customer:0 +#: view:res.partner.address:0 +#: field:res.partner.address,is_customer_add:0 +#: model:res.partner.category,name:base.res_partner_category_0 +msgid "Customer" msgstr "" #. module: base @@ -6611,7 +6888,7 @@ msgid "Copy Object" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:551 #, python-format msgid "" "Group(s) cannot be deleted, because some user(s) still belong to them: %s !" @@ -6662,6 +6939,15 @@ msgstr "表参照" msgid "Object" msgstr "" +#. module: base +#: code:addons/osv.py:151 +#, python-format +msgid "" +"\n" +"\n" +"[object with reference: %s - %s]" +msgstr "" + #. module: base #: model:ir.model,name:base.model_ir_default msgid "ir.default" @@ -6697,7 +6983,7 @@ msgid "User Ref." msgstr "授权用户参照" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:550 #, python-format msgid "Warning !" msgstr "" @@ -6838,7 +7124,7 @@ msgid "workflow.triggers" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "Invalid search criterions" msgstr "" @@ -6894,7 +7180,7 @@ msgid "Action Type" msgstr "" #. module: base -#: code:addons/base/module/module.py:0 +#: code:addons/base/module/module.py:268 #, python-format msgid "" "You try to install module '%s' that depends on module '%s'.\n" @@ -6997,11 +7283,23 @@ msgstr "国家编码" msgid "workflow.instance" msgstr "" +#. module: base +#: code:addons/orm.py:278 +#, python-format +msgid "Unknown attribute %s in %s " +msgstr "" + #. module: base #: view:res.lang:0 msgid "10. %S ==> 20" msgstr "" +#. module: base +#: code:addons/fields.py:106 +#, python-format +msgid "undefined get method !" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Norwegian Bokmål / Norsk bokmål" @@ -7176,6 +7474,11 @@ msgstr "" msgid "Menu Action" msgstr "" +#. module: base +#: model:res.country,name:base.fo +msgid "Faroe Islands" +msgstr "" + #. module: base #: selection:base.language.export,state:0 msgid "choose" @@ -7313,7 +7616,7 @@ msgid "China" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:486 #, python-format msgid "" "--\n" @@ -7511,7 +7814,7 @@ msgid "Account No." msgstr "" #. module: base -#: code:addons/base/res/res_lang.py:0 +#: code:addons/base/res/res_lang.py:86 #, python-format msgid "Base Language 'en_US' can not be deleted !" msgstr "" @@ -7555,6 +7858,14 @@ msgstr "翻译值" msgid "Antigua and Barbuda" msgstr "" +#. module: base +#: code:addons/orm.py:3166 +#, python-format +msgid "" +"Operation prohibited by access rules, or performed on an already deleted " +"document (Operation: %s, Document type: %s)." +msgstr "" + #. module: base #: model:res.country,name:base.zr msgid "Zaire" @@ -7613,7 +7924,7 @@ msgid "Auto-Refresh" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:60 #, python-format msgid "The osv_memory field can only be compared with = and != operator." msgstr "" @@ -7623,6 +7934,11 @@ msgstr "" msgid "Diagram" msgstr "" +#. module: base +#: model:res.country,name:base.wf +msgid "Wallis and Futuna Islands" +msgstr "" + #. module: base #: help:multi_company.default,name:0 msgid "Name it to easily find a record" @@ -7679,6 +7995,35 @@ msgstr "" msgid "Turkmenistan" msgstr "" +#. module: base +#: code:addons/base/ir/ir_actions.py:593 +#: code:addons/base/ir/ir_actions.py:625 +#: code:addons/base/ir/ir_actions.py:709 +#: code:addons/base/ir/ir_actions.py:712 +#: code:addons/base/ir/ir_model.py:112 +#: code:addons/base/ir/ir_model.py:197 +#: code:addons/base/ir/ir_model.py:216 +#: code:addons/base/ir/ir_model.py:219 +#: code:addons/base/module/module.py:215 +#: code:addons/base/module/module.py:258 +#: code:addons/base/module/module.py:262 +#: code:addons/base/module/module.py:268 +#: code:addons/base/module/module.py:303 +#: code:addons/base/module/module.py:321 +#: code:addons/base/module/module.py:336 +#: code:addons/base/module/module.py:429 +#: code:addons/base/module/module.py:530 +#: code:addons/base/publisher_warranty/publisher_warranty.py:163 +#: code:addons/base/publisher_warranty/publisher_warranty.py:281 +#: code:addons/base/res/res_currency.py:100 +#: code:addons/base/res/res_user.py:57 +#: code:addons/base/res/res_user.py:66 +#: code:addons/custom.py:558 +#: code:addons/orm.py:3199 +#, python-format +msgid "Error" +msgstr "" + #. module: base #: model:res.country,name:base.pm msgid "Saint Pierre and Miquelon" @@ -7807,7 +8152,7 @@ msgid "Internal Header/Footer" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_export_language.py:0 +#: code:addons/base/module/wizard/base_export_language.py:59 #, python-format msgid "" "Save this document to a .tgz file. This archive containt UTF-8 %s files and " @@ -7846,6 +8191,14 @@ msgstr "" msgid "Serbian (Cyrillic) / српски" msgstr "" +#. module: base +#: code:addons/orm.py:2161 +#, python-format +msgid "" +"Invalid group_by specification: \"%s\".\n" +"A group_by specification must be a list of valid fields." +msgstr "" + #. module: base #: model:res.country,name:base.sa msgid "Saudi Arabia" @@ -7869,7 +8222,7 @@ msgid "Event Logs" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_configuration.py:0 +#: code:addons/base/module/wizard/base_module_configuration.py:37 #, python-format msgid "System Configuration done" msgstr "" @@ -7916,11 +8269,18 @@ msgid "Low" msgstr "" #. module: base -#: code:addons/base/ir/ir_ui_menu.py:0 +#: code:addons/base/ir/ir_ui_menu.py:305 #, python-format msgid "Error ! You can not create recursive Menu." msgstr "" +#. module: base +#: model:ir.actions.act_window,name:base.action_publisher_warranty_contract_add_wizard +#: model:ir.ui.menu,name:base.menu_publisher_warranty_contract_add +#: view:publisher_warranty.contract.wizard:0 +msgid "Register a Contract" +msgstr "" + #. module: base #: view:ir.rule:0 msgid "" @@ -7929,7 +8289,7 @@ msgid "" msgstr "" #. module: base -#: code:addons/base/publisher_warranty/publisher_warranty.py:0 +#: code:addons/base/publisher_warranty/publisher_warranty.py:145 #, python-format msgid "Please check your publisher warranty contract name and validity." msgstr "" @@ -8083,7 +8443,7 @@ msgid "View Auto-Load" msgstr "" #. module: base -#: code:addons/base/ir/ir_model.py:0 +#: code:addons/base/ir/ir_model.py:197 #, python-format msgid "You cannot remove the field '%s' !" msgstr "" @@ -8095,6 +8455,11 @@ msgstr "" msgid "Resource" msgstr "" +#. module: base +#: field:ir.ui.menu,web_icon:0 +msgid "Web Icon File" +msgstr "" + #. module: base #: selection:base.language.install,lang:0 msgid "Persian / فارس" @@ -8106,7 +8471,7 @@ msgid "View Ordering" msgstr "" #. module: base -#: code:addons/base/module/wizard/base_module_upgrade.py:0 +#: code:addons/base/module/wizard/base_module_upgrade.py:97 #, python-format msgid "Unmet dependency !" msgstr "" @@ -8118,6 +8483,14 @@ msgid "" "Portable Objects)" msgstr "" +#. module: base +#: code:addons/base/ir/ir_model.py:341 +#, python-format +msgid "" +"You can not delete this document (%s) ! Be sure your user belongs to one of " +"these groups: %s." +msgstr "" + #. module: base #: model:ir.model,name:base.model_base_module_configuration msgid "base.module.configuration" @@ -8242,7 +8615,7 @@ msgid "Azerbaijan" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:250 #, python-format msgid "Warning" msgstr "" @@ -8269,8 +8642,8 @@ msgid "Czech / Čeština" msgstr "" #. module: base -#: model:res.country,name:base.wf -msgid "Wallis and Futuna Islands" +#: selection:ir.model.fields,select_level:0 +msgid "Advanced Search" msgstr "" #. module: base @@ -8569,7 +8942,7 @@ msgid "Account Owner" msgstr "" #. module: base -#: code:addons/base/res/res_user.py:0 +#: code:addons/base/res/res_user.py:240 #, python-format msgid "Company Switch Warning" msgstr "" @@ -8629,7 +9002,7 @@ msgid "Workflow Instances" msgstr "" #. module: base -#: code:addons/base/res/partner/partner.py:0 +#: code:addons/base/res/partner/partner.py:261 #, python-format msgid "Partners: " msgstr "合作伙伴 " @@ -8786,6 +9159,10 @@ msgstr "" #~ msgid "State of Mind" #~ msgstr "助记状态" +#, python-format +#~ msgid "You can not create this kind of document! (%s)" +#~ msgstr "您無法建立這種文件! (%s)" + #~ msgid "%j - Day of the year as a decimal number [001,366]." #~ msgstr "%j - 十進製表示的該年中的天數 [001,366]." @@ -8897,6 +9274,10 @@ msgstr "" #~ msgid "Check new modules" #~ msgstr "檢查新模組" +#, python-format +#~ msgid "You can not read this document! (%s)" +#~ msgstr "您無法讀取這份文件! (%s)" + #~ msgid "Report Custom" #~ msgstr "自定義報表" @@ -8933,6 +9314,10 @@ msgstr "" #~ msgid "Configure User" #~ msgstr "用戶設置" +#, python-format +#~ msgid "You can not write in this document! (%s)" +#~ msgstr "您無法編寫這個文件! (%s)" + #~ msgid "left" #~ msgstr "左對齊" @@ -8945,6 +9330,10 @@ msgstr "" #~ msgid "Installation Done" #~ msgstr "安裝完成" +#, python-format +#~ msgid "You can not delete this document! (%s)" +#~ msgstr "您無法移除此文件! (%s)" + #~ msgid "%S - Second as a decimal number [00,61]." #~ msgstr "%S - 十進制的秒數 [00,61]." From 81ca85beff8602f5640cc618ccaf6678b3dc3084 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Sun, 2 Jan 2011 05:02:26 +0000 Subject: [PATCH 08/18] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20110101050531-khdl20dn77zc2jmj bzr revid: launchpad_translations_on_behalf_of_openerp-20110102050226-71740ifoogqdko3a --- addons/account/i18n/de.po | 4 +- addons/account/i18n/es.po | 4 +- addons/account/i18n/fr.po | 8 +- addons/account/i18n/pl.po | 390 +- addons/account/i18n/sv.po | 6 +- addons/account_analytic_analysis/i18n/it.po | 15 +- addons/account_analytic_plans/i18n/de.po | 4 +- addons/account_anglo_saxon/i18n/fr.po | 4 +- addons/account_coda/i18n/fr.po | 4 +- addons/account_payment/i18n/de.po | 4 +- addons/account_voucher/i18n/pl.po | 213 +- addons/analytic_user_function/i18n/it.po | 18 +- addons/base_action_rule/i18n/fr.po | 9 +- addons/base_action_rule/i18n/ru.po | 8 +- addons/base_calendar/i18n/es.po | 10 +- addons/base_contact/i18n/ru.po | 8 +- addons/base_iban/i18n/it.po | 10 +- addons/base_module_quality/i18n/de.po | 4 +- addons/base_module_record/i18n/de.po | 4 +- addons/base_module_record/i18n/it.po | 28 +- addons/base_report_creator/i18n/it.po | 10 +- addons/base_report_designer/i18n/it.po | 19 +- addons/base_report_designer/i18n/zh_CN.po | 4 +- addons/base_setup/i18n/zh_CN.po | 4 +- addons/base_vat/i18n/it.po | 14 +- addons/board/i18n/fr.po | 4 +- addons/board/i18n/it.po | 9 +- addons/board/i18n/zh_CN.po | 22 +- addons/caldav/i18n/de.po | 4 +- addons/caldav/i18n/fr.po | 61 +- addons/caldav/i18n/it.po | 12 +- addons/claim_from_delivery/i18n/fr.po | 9 +- addons/crm/i18n/de.po | 4 +- addons/crm/i18n/fr.po | 25 +- addons/crm/i18n/pt_BR.po | 4 +- addons/crm/i18n/ru.po | 8 +- addons/crm_caldav/i18n/fr.po | 10 +- addons/crm_claim/i18n/fr.po | 10 +- addons/crm_claim/i18n/it.po | 6 +- addons/crm_helpdesk/i18n/de.po | 4 +- addons/crm_helpdesk/i18n/fr.po | 4 +- addons/crm_profiling/i18n/de.po | 4 +- addons/decimal_precision/i18n/fr.po | 15 +- addons/delivery/i18n/fr.po | 11 +- addons/event/i18n/fr.po | 6 +- addons/event/i18n/it.po | 6 +- addons/event_project/i18n/fr.po | 9 +- addons/fetchmail/i18n/fr.po | 40 +- addons/fetchmail/i18n/it.po | 6 +- addons/hr/i18n/fr.po | 15 +- addons/hr/i18n/hr.po | 15 +- addons/hr_holidays/i18n/it.po | 6 +- addons/hr_payroll_account/i18n/it.po | 324 ++ addons/hr_recruitment/i18n/it.po | 943 ++++ addons/hr_timesheet/i18n/it.po | 21 +- addons/hr_timesheet_invoice/i18n/it.po | 32 +- addons/hr_timesheet_sheet/i18n/de.po | 4 +- addons/hr_timesheet_sheet/i18n/es.po | 4 +- addons/knowledge/i18n/zh_CN.po | 4 +- addons/lunch/i18n/es.po | 4 +- addons/marketing_campaign/i18n/de.po | 6 +- addons/marketing_campaign_crm_demo/i18n/es.po | 4 +- addons/mrp/i18n/hu.po | 53 +- addons/mrp/i18n/pl.po | 6 +- addons/outlook/i18n/it.po | 30 +- addons/process/i18n/zh_CN.po | 4 +- addons/procurement/i18n/de.po | 4 +- addons/procurement/i18n/vi.po | 8 +- addons/product/i18n/de.po | 4 +- addons/product/i18n/es.po | 4 +- addons/product/i18n/hu.po | 209 +- addons/product/i18n/pt_BR.po | 4 +- addons/product/i18n/zh_CN.po | 4 +- addons/product_visible_discount/i18n/de.po | 4 +- addons/product_visible_discount/i18n/es.po | 25 +- addons/profile_tools/i18n/de.po | 4 +- addons/project/i18n/de.po | 4 +- addons/project/i18n/lv.po | 6 +- addons/project_caldav/i18n/de.po | 4 +- addons/project_caldav/i18n/es.po | 4 +- addons/project_caldav/i18n/lv.po | 6 +- addons/project_gtd/i18n/de.po | 4 +- addons/project_gtd/i18n/lv.po | 286 ++ addons/project_issue/i18n/de.po | 4 +- addons/project_issue/i18n/es.po | 4 +- addons/project_issue/i18n/lv.po | 6 +- addons/project_issue_sheet/i18n/fr.po | 6 +- addons/project_issue_sheet/i18n/lv.po | 6 +- addons/project_long_term/i18n/de.po | 12 +- addons/project_long_term/i18n/es.po | 17 +- addons/project_long_term/i18n/fr.po | 12 +- addons/project_long_term/i18n/lv.po | 24 +- addons/project_long_term/i18n/pl.po | 22 +- addons/project_long_term/i18n/pt.po | 14 +- addons/project_mailgate/i18n/de.po | 4 +- addons/project_mailgate/i18n/lv.po | 6 +- addons/project_messages/i18n/de.po | 4 +- addons/project_messages/i18n/lv.po | 6 +- addons/project_mrp/i18n/de.po | 4 +- addons/project_mrp/i18n/lv.po | 134 + addons/project_planning/i18n/lv.po | 571 +++ addons/project_retro_planning/i18n/de.po | 4 +- addons/project_scrum/i18n/de.po | 4 +- addons/project_scrum/i18n/es.po | 7 +- addons/project_timesheet/i18n/de.po | 4 +- addons/project_timesheet/i18n/es.po | 4 +- addons/project_timesheet/i18n/lv.po | 122 +- addons/purchase/i18n/de.po | 4 +- addons/purchase/i18n/ru.po | 14 +- addons/purchase_analytic_plans/i18n/de.po | 4 +- addons/purchase_analytic_plans/i18n/it.po | 15 +- addons/purchase_requisition/i18n/de.po | 4 +- addons/purchase_requisition/i18n/es.po | 4 +- addons/purchase_requisition/i18n/it.po | 424 ++ addons/report_designer/i18n/de.po | 4 +- addons/report_designer/i18n/ru.po | 8 +- addons/report_intrastat/i18n/de.po | 4 +- addons/report_intrastat/i18n/ru.po | 54 +- addons/report_webkit/i18n/de.po | 4 +- addons/report_webkit_sample/i18n/de.po | 4 +- addons/resource/i18n/de.po | 4 +- addons/resource/i18n/vi.po | 6 +- addons/sale/i18n/de.po | 4 +- addons/sale/i18n/it.po | 6 +- addons/sale/i18n/pl.po | 6 +- addons/sale/i18n/ru.po | 4 +- addons/sale_analytic_plans/i18n/de.po | 4 +- addons/sale_analytic_plans/i18n/it.po | 13 +- addons/sale_crm/i18n/de.po | 4 +- addons/sale_crm/i18n/fr.po | 6 +- addons/sale_crm/i18n/it.po | 6 +- addons/sale_journal/i18n/de.po | 4 +- addons/sale_journal/i18n/it.po | 10 +- addons/sale_layout/i18n/de.po | 4 +- addons/sale_layout/i18n/ru.po | 6 +- addons/sale_margin/i18n/de.po | 4 +- addons/sale_margin/i18n/ru.po | 9 +- addons/sale_mrp/i18n/de.po | 4 +- addons/sale_order_dates/i18n/de.po | 4 +- addons/sale_order_dates/i18n/ru.po | 8 +- addons/share/i18n/de.po | 4 +- addons/share/i18n/es.po | 4 +- addons/stock/i18n/de.po | 4 +- addons/stock/i18n/es.po | 4 +- addons/stock/i18n/fr.po | 140 +- addons/stock/i18n/lv.po | 3849 +++++++++++++++++ addons/stock/i18n/pl.po | 6 +- addons/stock/i18n/ru.po | 10 +- addons/stock_invoice_directly/i18n/de.po | 4 +- addons/stock_location/i18n/de.po | 4 +- addons/stock_no_autopicking/i18n/de.po | 4 +- addons/stock_planning/i18n/es.po | 4 +- addons/stock_planning/i18n/fr.po | 6 +- addons/stock_planning/i18n/ru.po | 6 +- addons/survey/i18n/de.po | 4 +- addons/survey/i18n/es.po | 4 +- addons/thunderbird/i18n/de.po | 4 +- addons/users_ldap/i18n/de.po | 4 +- addons/users_ldap/i18n/fr.po | 6 +- addons/users_ldap/i18n/it.po | 14 +- addons/warning/i18n/de.po | 4 +- addons/wiki/i18n/de.po | 4 +- addons/wiki/i18n/fr.po | 6 +- 163 files changed, 7948 insertions(+), 973 deletions(-) create mode 100644 addons/hr_payroll_account/i18n/it.po create mode 100644 addons/hr_recruitment/i18n/it.po create mode 100644 addons/project_gtd/i18n/lv.po create mode 100644 addons/project_mrp/i18n/lv.po create mode 100644 addons/project_planning/i18n/lv.po create mode 100644 addons/purchase_requisition/i18n/it.po create mode 100644 addons/stock/i18n/lv.po diff --git a/addons/account/i18n/de.po b/addons/account/i18n/de.po index f276d936254..619d7b3a714 100644 --- a/addons/account/i18n/de.po +++ b/addons/account/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-31 00:26+0000\n" +"PO-Revision-Date: 2010-12-31 08:58+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:24+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account diff --git a/addons/account/i18n/es.po b/addons/account/i18n/es.po index 6b8ac6ba966..b4f740ab02c 100644 --- a/addons/account/i18n/es.po +++ b/addons/account/i18n/es.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-30 13:19+0000\n" +"PO-Revision-Date: 2010-12-31 08:26+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:25+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:03+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account diff --git a/addons/account/i18n/fr.po b/addons/account/i18n/fr.po index 98499791afb..e3232286a80 100644 --- a/addons/account/i18n/fr.po +++ b/addons/account/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-30 19:21+0000\n" -"Last-Translator: lolivier \n" +"PO-Revision-Date: 2011-01-01 06:56+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:24+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account @@ -7157,7 +7157,7 @@ msgstr "Impossible d'avoir deux registres ouverts pour le même journal" #. module: account #: report:account.invoice:0 msgid "Must be after setLang()" -msgstr "" +msgstr "Doit être après setlang ()" #. module: account #: view:account.payment.term.line:0 diff --git a/addons/account/i18n/pl.po b/addons/account/i18n/pl.po index c3f31e667f2..615e47f8381 100644 --- a/addons/account/i18n/pl.po +++ b/addons/account/i18n/pl.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-29 20:05+0000\n" +"PO-Revision-Date: 2011-01-01 21:50+0000\n" "Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:25+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account @@ -51,7 +51,7 @@ msgstr "Uzgodnienie zapisu dziennika" #. module: account #: field:account.installer.modules,account_voucher:0 msgid "Voucher Management" -msgstr "" +msgstr "Polecenia kięgowania" #. module: account #: view:account.account:0 @@ -178,6 +178,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the payment " "term without removing it." msgstr "" +"Jeśli pole Aktywne jest niezaznaczone, to płatność będzie ukryta (nie musisz " +"jej wtedy usuwać)." #. module: account #: code:addons/account/invoice.py:0 @@ -679,7 +681,7 @@ msgstr "Dziennik centralizowany" #. module: account #: sql_constraint:account.sequence.fiscalyear:0 msgid "Main Sequence must be different from current !" -msgstr "" +msgstr "Główna numeracja musi być inna niż aktualna !" #. module: account #: field:account.invoice.tax,tax_amount:0 @@ -1542,6 +1544,8 @@ msgstr "Wyszukaj wyciąg bankowy" msgid "" "Wrong credit or debit value in model (Credit + Debit Must Be greater \"0\")!" msgstr "" +"Błędna wartość Winien lub Ma w modelu (Winien + Ma musi być większe od " +"\"0\")!" #. module: account #: view:account.chart.template:0 @@ -1652,7 +1656,7 @@ msgstr "Suma roku" #. module: account #: model:ir.actions.report.xml,name:account.report_account_voucher_new msgid "Print Voucher" -msgstr "" +msgstr "Drukuj polecenie" #. module: account #: view:account.change.currency:0 @@ -1666,6 +1670,8 @@ msgid "" "Have a complete tree view of all journal items per account code by clicking " "on an account." msgstr "" +"Wyświetl plan kont twojej firmy dla roku podatkowego i filtruj wg okresów. " +"Otwierając konto uzyskasz widok zapisów na wybranym koncie." #. module: account #: constraint:account.fiscalyear:0 @@ -1689,6 +1695,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the journal " "period without removing it." msgstr "" +"Jeśli pole Aktywne jest niezaznaczone, to okres będzie ukryty (nie musisz go " +"wtedy usuwać)." #. module: account #: view:res.partner:0 @@ -1714,7 +1722,7 @@ msgstr "Musisz podać konto dla zapisu odpisu !" #. module: account #: model:ir.model,name:account.model_account_common_journal_report msgid "Account Common Journal Report" -msgstr "" +msgstr "Uniwersalny raport kont" #. module: account #: selection:account.partner.balance,display_partner:0 @@ -1760,7 +1768,7 @@ msgstr "Projekt wyciągu" #. module: account #: view:account.tax:0 msgid "Tax Declaration: Credit Notes" -msgstr "" +msgstr "Deklaracja podatkowa: Noty kredytowe" #. module: account #: code:addons/account/account.py:0 @@ -1776,7 +1784,7 @@ msgstr "Kwota Ma" #. module: account #: constraint:account.move.line:0 msgid "You can not create move line on closed account." -msgstr "" +msgstr "Nie możesz tworzyć zapisów na zamkniętym koncie." #. module: account #: code:addons/account/account.py:0 @@ -1795,7 +1803,7 @@ msgstr "Konto rezerwy i zysków/strat" #. module: account #: sql_constraint:account.move.line:0 msgid "Wrong credit or debit value in accounting entry !" -msgstr "" +msgstr "Nipoprawna wartość Winien lub Ma w zapisie !" #. module: account #: view:account.invoice.report:0 @@ -1822,7 +1830,7 @@ msgstr "Zapisy wg pozycji" #. module: account #: report:account.tax.code.entries:0 msgid "A/c Code" -msgstr "" +msgstr "Kod konta" #. module: account #: field:account.invoice,move_id:0 @@ -1833,7 +1841,7 @@ msgstr "Zapis dziennika" #. module: account #: view:account.tax:0 msgid "Tax Declaration: Invoices" -msgstr "" +msgstr "Deklaracja podatkowa: Faktury" #. module: account #: field:account.cashbox.line,subtotal:0 @@ -1891,13 +1899,13 @@ msgstr "Konto rezerwy i zysków/strat" #. module: account #: help:account.bank.statement,balance_end:0 msgid "Closing balance based on Starting Balance and Cash Transactions" -msgstr "" +msgstr "Bilans zamknięcia na podstawie Bilansu początkowego i płatności" #. module: account #: model:process.node,note:account.process_node_reconciliation0 #: model:process.node,note:account.process_node_supplierreconciliation0 msgid "Comparison between accounting and payment entries" -msgstr "" +msgstr "Porównanie pomiędzy zapisami księgowymi i płątnościami" #. module: account #: view:account.tax:0 @@ -1920,7 +1928,7 @@ msgstr "" msgid "" "It adds the currency column if the currency is different then the company " "currency" -msgstr "" +msgstr "To dodaje kolumnę waluty, jeśli waluta jest inna niż waluta firmy." #. module: account #: help:account.journal,allow_date:0 @@ -1928,6 +1936,7 @@ msgid "" "If set to True then do not accept the entry if the entry date is not into " "the period dates" msgstr "" +"Jeśli ustawione, to nie będą akceptowane zapisy z datą nie zawartą w okresie." #. module: account #: model:ir.actions.act_window,name:account.action_account_pl_report @@ -1958,6 +1967,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the tax " "without removing it." msgstr "" +"Jeśli pole Aktywne jest niezaznaczone, to podatek będzie ukryty (nie " +"będziesz go musiał usuwać)." #. module: account #: help:account.bank.statement,name:0 @@ -1998,7 +2009,7 @@ msgstr "Konta do uzgodnienia" #. module: account #: model:process.transition,note:account.process_transition_filestatement0 msgid "Import of the statement in the system from an electronic file" -msgstr "" +msgstr "Importuj wyciąg z pliku." #. module: account #: model:process.node,name:account.process_node_importinvoice0 @@ -2059,6 +2070,8 @@ msgid "" "There is no default default debit account defined \n" "on journal \"%s\"" msgstr "" +"Brak domyślnego konta Winien \n" +"w dzienniku \"%s\"" #. module: account #: help:account.account,type:0 @@ -2075,7 +2088,7 @@ msgstr "" #. module: account #: view:account.chart.template:0 msgid "Search Chart of Account Templates" -msgstr "" +msgstr "Przeszukaj szablon planu kont" #. module: account #: view:account.installer:0 @@ -2298,6 +2311,8 @@ msgid "" "A supplier refund is a credit note from your supplier indicating that he " "refunds part or totality of the invoice sent to you." msgstr "" +"Korekta od dostawcy jest fakturą korygującą przysłaną przez dostawcę, która " +"niweluje część lub całość faktury przysłanej wcześniej." #. module: account #: field:account.tax,base_sign:0 @@ -2317,6 +2332,11 @@ msgid "" "useful because it enables you to preview at any time the tax that you owe at " "the start and end of the month or quarter." msgstr "" +"To menu drukuje deklarację VAT na podstawie faktur i płatności. Wybierz " +"jeden lub więcej okresów. Informacja do deklaracji jest generowana przez " +"OpenERP na podstawie faktur (i płatności w niektórych krajach). Te dane są " +"cały czas modyfikowane na podstawie bieżących działań w systemie. Możesz " +"więc przeglądać podglądać bieżący stan swoich wymagań podatkowych." #. module: account #: selection:account.move.line,centralisation:0 @@ -2396,12 +2416,14 @@ msgid "" "The fiscal position will determine taxes and the accounts used for the " "partner." msgstr "" +"Obszar podatkowy określa podatki i konta dla partnerów, jeśli podlegają oni " +"innym prawom niż partnerzy standardowi (np. jeśli są z innych krajów)" #. module: account #: view:account.print.journal:0 msgid "" "This report gives you an overview of the situation of a specific journal" -msgstr "" +msgstr "Ten raport pozwala ci oglądać stan zapisów danego dziennika." #. module: account #: constraint:product.category:0 @@ -2463,6 +2485,8 @@ msgid "" "You cannot modify company of this journal as its related record exist in " "Entry Lines" msgstr "" +"Nie możesz modyfikować firmy dziennika ponieważ jest ona zapisana równieź w " +"jego pozycjach zapisów." #. module: account #: report:account.journal.period.print:0 @@ -2503,7 +2527,7 @@ msgstr "Odnośnik" #. module: account #: help:account.move.line,tax_code_id:0 msgid "The Account can either be a base tax code or a tax code account." -msgstr "" +msgstr "Konto może być zarówno rejestrem podstawy jak i rejestrem podatku." #. module: account #: model:ir.ui.menu,name:account.menu_automatic_reconcile @@ -2553,6 +2577,8 @@ msgid "" "Automatically generate entries based on what has been entered in the system " "before a specific date." msgstr "" +"Automatycznie generuje zapisy na podstawie tego co było wprowadzone do " +"systemu przed konkretną datą." #. module: account #: view:account.aged.trial.balance:0 @@ -2588,12 +2614,16 @@ msgid "" "Note that journal entries that are automatically created by the system are " "always skipping that state." msgstr "" +"Zaznacz to pole jeśli nie chcesz, aby nowe zapisy od razu wchodziły w stan " +"'Zaksięgowano' (bez ręcznego księgowania ze stanu 'Projekt'). \n" +"Dotyczy to tylko ręcznych zapisów. Zapisy automatyczne zawsze od razu są w " +"stanie 'Zaksięgowano'." #. module: account #: model:ir.actions.server,name:account.ir_actions_server_action_wizard_multi_chart #: model:ir.ui.menu,name:account.menu_act_ir_actions_bleble msgid "New Company Financial Setting" -msgstr "" +msgstr "Ustawienia finansowe nowej firmy" #. module: account #: model:ir.actions.act_window,name:account.action_report_account_sales_tree_all @@ -2605,7 +2635,7 @@ msgstr "Sprzedaż wg kont" #. module: account #: view:account.use.model:0 msgid "This wizard will create recurring accounting entries" -msgstr "" +msgstr "Ten kreator utworzy zapisy powtarzalne" #. module: account #: code:addons/account/account.py:0 @@ -2688,11 +2718,13 @@ msgid "" "The optional quantity expressed by this line, eg: number of product sold. " "The quantity is not a legal requirement but is very useful for some reports." msgstr "" +"Nieobowiązkowa ilość dotycząca tego zapisu. Np. ilość sprzedanych produktów. " +"Ilość nie jest formalnie wymagana, ale może być bardzo wygodna w raportach." #. module: account #: view:account.payment.term.line:0 msgid "Line 2:" -msgstr "" +msgstr "Pozycja 2:" #. module: account #: field:account.journal.column,required:0 @@ -2766,7 +2798,7 @@ msgstr "Obszar podatkowy" msgid "" "It adds initial balance row on report which display previous sum amount of " "debit/credit/balance" -msgstr "" +msgstr "To dodaje wiersz sumy z poprzedniej strony." #. module: account #: view:account.analytic.line:0 @@ -2825,7 +2857,7 @@ msgstr "Warunki" #. module: account #: field:account.bank.statement,total_entry_encoding:0 msgid "Cash Transaction" -msgstr "" +msgstr "Transakcje gotówkowe" #. module: account #: view:res.partner:0 @@ -2865,7 +2897,7 @@ msgstr "Nazwa pozycji" #. module: account #: view:account.fiscalyear:0 msgid "Search Fiscalyear" -msgstr "" +msgstr "Przeszukaj rok podatkowy" #. module: account #: selection:account.tax,applicable_type:0 @@ -2937,12 +2969,12 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_partner_ledger msgid "Account Partner Ledger" -msgstr "" +msgstr "Konto rejestru partnera" #. module: account #: help:account.journal.column,sequence:0 msgid "Gives the sequence order to journal column." -msgstr "" +msgstr "Ustala kolejność kolumn w dzienniku" #. module: account #: view:account.tax.template:0 @@ -2954,7 +2986,7 @@ msgstr "Rejestry podatkowe" #: help:account.account.template,currency_id:0 #: help:account.bank.accounts.wizard,currency_id:0 msgid "Forces all moves for this account to have this secondary currency." -msgstr "" +msgstr "Wymusza, aby wszystkie zapisy na koncie miały tę walutę jako drugą." #. module: account #: model:ir.actions.act_window,help:account.action_validate_account_move_line @@ -2962,6 +2994,8 @@ msgid "" "This wizard will validate all journal entries of a particular journal and " "period. Once journal entries are validated, you can not update them anymore." msgstr "" +"Ten kreator zatwierdzi wszystkie zapisy tego dziennika i okresu. Kiedy " +"zapisy są zatwierdzone, to nie możesz ich więcej zmieniać." #. module: account #: model:ir.actions.act_window,name:account.action_account_chart_template_form @@ -2977,7 +3011,7 @@ msgstr "Wygeneruj plan kont z szablonu" #. module: account #: model:ir.model,name:account.model_account_unreconcile_reconcile msgid "Account Unreconcile Reconcile" -msgstr "" +msgstr "Kasowanie uzgodnień" #. module: account #: help:account.account.type,close_method:0 @@ -3099,7 +3133,7 @@ msgstr "VAT:" msgid "" "The amount expressed in the related account currency if not equal to the " "company one." -msgstr "" +msgstr "Kwota wyrażona w walucie konta, jeśli waluta inna niż firmowa." #. module: account #: report:account.move.voucher:0 @@ -3156,7 +3190,7 @@ msgstr "rok" #. module: account #: report:account.move.voucher:0 msgid "Authorised Signatory" -msgstr "" +msgstr "Podpis ososby upoważnionej" #. module: account #: view:validate.account.move.lines:0 @@ -3164,6 +3198,8 @@ msgid "" "All selected journal entries will be validated and posted. It means you " "won't be able to modify their accounting fields anymore." msgstr "" +"Wszystkie zapisy zostaną zatwierdzone i zaksięgowane. Oznacza to, że nie " +"będziesz ich mógł zmieniać." #. module: account #: code:addons/account/invoice.py:0 @@ -3184,7 +3220,7 @@ msgstr "Przelewy" #. module: account #: view:account.payment.term.line:0 msgid " value amount: n.a" -msgstr "" +msgstr " wartość: n.d" #. module: account #: view:account.chart:0 @@ -3225,6 +3261,8 @@ msgid "" "Selected Invoice(s) cannot be cancelled as they are already in 'Cancelled' " "or 'Done' state!" msgstr "" +"Wybrane faktury nie mogą być anulowane ponieważ są już w stanie 'Anulowano' " +"lub 'Wykonano' !" #. module: account #: code:addons/account/account.py:0 @@ -3289,6 +3327,9 @@ msgid "" "that you can control what you received from your supplier according to what " "you purchased or received." msgstr "" +"Faktury od dostawców pozwala ci przeglądać te faktury. OpenERP generuje " +"faktury od dostawców automatycznie według tego co zamawiasz, kupujesz lub " +"przyjmujesz." #. module: account #: report:account.invoice:0 @@ -3307,6 +3348,8 @@ msgstr "Plan kont" #: view:account.tax.chart:0 msgid "(If you do not select period it will take all open periods)" msgstr "" +"(jeśli nie wybierzesz okresu, to system weźmie pod uwagę wszystkie otwarte " +"okresy)" #. module: account #: field:account.journal,centralisation:0 @@ -3316,7 +3359,7 @@ msgstr "Centralizacja przeciwnej strony" #. module: account #: model:ir.model,name:account.model_account_partner_reconcile_process msgid "Reconcilation Process partner by partner" -msgstr "" +msgstr "Proces uzgodnienia kolejno dla partnerów" #. module: account #: selection:account.automatic.reconcile,power:0 @@ -3408,6 +3451,7 @@ msgid "" "You cannot validate a Journal Entry unless all journal items are in same " "chart of accounts !" msgstr "" +"Nie możesz zatwierdzać zapisów, w których pozycje są z różnych planów kont !" #. module: account #: view:account.tax:0 @@ -3495,6 +3539,7 @@ msgstr "Konto zobowiązań" msgid "" "You cannot create entries on different periods/journals in the same move" msgstr "" +"Nie możesz tworzyć zapisów z różnych okresów.dzienników w tym samym zapisie." #. module: account #: model:process.node,name:account.process_node_supplierpaymentorder0 @@ -3529,14 +3574,14 @@ msgstr "Nie można zmienić podatku !" #. module: account #: field:analytic.entries.report,nbr:0 msgid "#Entries" -msgstr "" +msgstr "#Zapisów" #. module: account #: code:addons/account/invoice.py:0 #, python-format msgid "" "You selected an Unit of Measure which is not compatible with the product." -msgstr "" +msgstr "Wybrałeś jednostkę miary, która jest niekompatybilna z produktem." #. module: account #: code:addons/account/invoice.py:0 @@ -3554,7 +3599,7 @@ msgstr "Otwórz fakturę" #. module: account #: field:account.invoice.tax,factor_tax:0 msgid "Multipication factor Tax code" -msgstr "" +msgstr "Współczynnik dla rejestru podatku" #. module: account #: view:account.fiscal.position:0 @@ -3577,7 +3622,7 @@ msgstr "Nazwa" #. module: account #: model:ir.model,name:account.model_account_aged_trial_balance msgid "Account Aged Trial balance Report" -msgstr "" +msgstr "Raport próbny płatności przeterminowanych" #. module: account #: field:account.move.line,date:0 @@ -3651,12 +3696,12 @@ msgstr "Ustaw na projekt" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form msgid "Recurring Lines" -msgstr "" +msgstr "Pozycje powtarzalne" #. module: account #: field:account.partner.balance,display_partner:0 msgid "Display Partners" -msgstr "" +msgstr "Wyświetl partnerów" #. module: account #: view:account.invoice:0 @@ -3666,7 +3711,7 @@ msgstr "Zatwierdź" #. module: account #: sql_constraint:account.model.line:0 msgid "Wrong credit or debit value in model (Credit Or Debit Must Be \"0\")!" -msgstr "" +msgstr "Niepoprawne wartości Winien lub Ma w modelu !" #. module: account #: model:ir.actions.act_window,help:account.action_account_invoice_report_all @@ -3749,11 +3794,13 @@ msgid "" "If the active field is set to False, it will allow you to hide the account " "without removing it." msgstr "" +"Jeśli pole Aktywne jest niezaznaczone, to konto będzie ukryte (nie musisz go " +"wtedy usuwać)." #. module: account #: view:account.tax.template:0 msgid "Search Tax Templates" -msgstr "" +msgstr "Przeszukaj szablony kont." #. module: account #: model:ir.ui.menu,name:account.periodical_processing_journal_entries_validation @@ -3805,6 +3852,8 @@ msgid "" "Analytic costs (timesheets, some purchased products, ...) come from analytic " "accounts. These generate draft supplier invoices." msgstr "" +"Koszty analityczne (karty czasu pracy, niektóre zakupione produkty, ...) " +"pochodzące z kont analitycznych. To wygeneruje projekty faktur dostawcy." #. module: account #: view:account.bank.statement:0 @@ -3958,6 +4007,8 @@ msgid "" "When new move line is created the state will be 'Draft'.\n" "* When all the payments are done it will be in 'Valid' state." msgstr "" +"Kiedy pozycja jest tworzona, to ma stan 'Projekt'.\n" +"* Kiedy wykonane są wszystkie płatności, to stan przechodzi w 'Ważna'." #. module: account #: field:account.journal,view_id:0 @@ -3999,7 +4050,7 @@ msgstr "Statystyka faktur" #. module: account #: model:process.transition,note:account.process_transition_paymentorderreconcilation0 msgid "Bank statements are entered in the system." -msgstr "" +msgstr "Wyciągi bankowe zostały wprowadzone do systemu." #. module: account #: code:addons/account/wizard/account_reconcile.py:0 @@ -4033,12 +4084,12 @@ msgstr "Niezaimplementowane" #. module: account #: model:ir.model,name:account.model_account_journal_select msgid "Account Journal Select" -msgstr "" +msgstr "Wybór dziennika" #. module: account #: view:account.invoice:0 msgid "Print Invoice" -msgstr "" +msgstr "Drukuj fakturę" #. module: account #: view:account.tax.template:0 @@ -4116,7 +4167,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_model_form #: model:ir.ui.menu,name:account.menu_action_model_form msgid "Recurring Models" -msgstr "" +msgstr "Modele powtarzalne" #. module: account #: selection:account.automatic.reconcile,power:0 @@ -4148,12 +4199,12 @@ msgstr "Kontrole typów" #. module: account #: help:account.journal,default_credit_account_id:0 msgid "It acts as a default account for credit amount" -msgstr "" +msgstr "To jest domyślne konto dla wartości Winien" #. module: account #: help:account.partner.ledger,reconcil:0 msgid "Consider reconciled entries" -msgstr "" +msgstr "Rozważ uzgodnione zapisy" #. module: account #: model:ir.actions.act_window,name:account.action_validate_account_move_line @@ -4233,6 +4284,9 @@ msgid "" "the account \"%s - %s\". Clear the secondary currency field of the account " "definition if you want to accept all currencies." msgstr "" +"Nie można utworzyć zapisu z walutą inną niż druga waluta konta \"%s - %s\". " +"Jeśli chcesz stosować dowolną walutę na tym koncie, to musisz usunąć zapis o " +"drugiej walucie." #. module: account #: field:account.invoice.refund,date:0 @@ -4251,6 +4305,8 @@ msgid "" "All draft account entries in this journal and period will be validated. It " "means you won't be able to modify their accounting fields anymore." msgstr "" +"Wszystkie projekty zapisów w dzienniku i okresie zostaną zatwierdzone. To " +"oznacza, że nie będziesz mogła nic w nich modyfikować." #. module: account #: report:account.account.balance.landscape:0 @@ -4277,7 +4333,7 @@ msgstr "Konto dochodu w szablonie produktu" #: help:res.partner,last_reconciliation_date:0 msgid "" "Date on which the partner accounting entries were reconciled last time" -msgstr "" +msgstr "Data ostatniego uzgodnienia konta partnera." #. module: account #: field:account.fiscalyear.close,fy2_id:0 @@ -4408,7 +4464,7 @@ msgstr "Bilans (konta aktywów)" #. module: account #: report:account.tax.code.entries:0 msgid "Third Party (Country)" -msgstr "" +msgstr "Trzecia strona (Kraj)" #. module: account #: code:addons/account/account.py:0 @@ -4453,7 +4509,7 @@ msgstr "" #. module: account #: help:account.journal,refund_journal:0 msgid "Fill this if the journal is to be used for refunds of invoices." -msgstr "" +msgstr "Zaznacz to, jeśli dziennik ma być stosowany do korekt faktur." #. module: account #: view:account.fiscalyear.close:0 @@ -4595,6 +4651,13 @@ msgid "" "calendar year gives many companies an advantage, allowing them to close " "their books at a time which is most convenient for them." msgstr "" +"Zdefiniuj firmowy rok podatkowy według swoich okresów rozliczeniowych. Rok " +"podatkowy jest okresem, dla którego w firmie tworzony jest budżet. Może to " +"być dowolne 12 miesięcy. Rok podatkowy jest oznaczany rokiem, w którym się " +"kończy. Tzn. Jeśli rok kończy się 30 listopada 2011, to powinien być " +"nazywany \"RPod. 2011\" lub podobnie. Nie stosowanie roku kalendarzowego " +"może firmie przynieść korzyści wynikające z zamykania ksiąg w wygodniejszym " +"dla nich momencie." #. module: account #: model:ir.actions.act_window,name:account.action_payment_term_form @@ -4611,7 +4674,7 @@ msgstr "Nazwa kolumny" #: view:account.general.journal:0 msgid "" "This report gives you an overview of the situation of your general journals" -msgstr "" +msgstr "Ten raport zawiera informacje sytuacyjne z głównych dzienników." #. module: account #: field:account.entries.report,year:0 @@ -4632,7 +4695,7 @@ msgstr "Otwarcie kasy" #. module: account #: view:account.payment.term.line:0 msgid "Line 1:" -msgstr "" +msgstr "Pozycja 1:" #. module: account #: code:addons/account/account.py:0 @@ -4654,7 +4717,7 @@ msgstr "miesiąc" #: code:addons/account/account_bank_statement.py:0 #, python-format msgid "Journal Item \"%s\" is not valid" -msgstr "" +msgstr "Pozycja \"%s\" jest niepoprawna" #. module: account #: view:account.payment.term:0 @@ -4664,7 +4727,7 @@ msgstr "Opis do faktur" #. module: account #: field:account.partner.reconcile.process,next_partner_id:0 msgid "Next Partner to Reconcile" -msgstr "" +msgstr "Następny partner do uzgodnień" #. module: account #: field:account.invoice.tax,account_id:0 @@ -4768,6 +4831,8 @@ msgid "" "The Journal Entry of the invoice have been totally reconciled with one or " "several Journal Entries of payment." msgstr "" +"Zapis faktury został całkowicie uzgodniony z jednym lub kilkoma zapisami " +"płatności." #. module: account #: field:account.tax,child_depend:0 @@ -4780,6 +4845,7 @@ msgstr "Podatek na podrzędnych" msgid "" "You can not create move line on receivable/payable account without partner" msgstr "" +"Nie możesz tworzyć zapisów bez partnera na kontach należności/płatności." #. module: account #: code:addons/account/account.py:0 @@ -4895,7 +4961,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_common_account_report msgid "Account Common Account Report" -msgstr "" +msgstr "Raport księgowy ogólny" #. module: account #: field:account.bank.statement.line,name:0 @@ -4913,6 +4979,8 @@ msgid "" "This account will be used for invoices instead of the default one to value " "expenses for the current product" msgstr "" +"To konto będzie stosowane (zamiast domyślnego) do zapisów wydatków dla " +"bieżącego produktu." #. module: account #: selection:account.invoice,type:0 @@ -4961,6 +5029,8 @@ msgid "" "something to reconcile or not. This figure already count the current partner " "as reconciled." msgstr "" +"To są pozostali partnerzy, dla których powinieneś sprawdzić uzgodnienia. Ta " +"liczba traktuje obecnego partnera jak uzgodnionego." #. module: account #: view:account.subscription.line:0 @@ -5031,6 +5101,8 @@ msgid "" "There is no default default credit account defined \n" "on journal \"%s\"" msgstr "" +"Brak domyślnego konta Ma \n" +"w dzienniku \"%s\"" #. module: account #: field:account.entries.report,amount_currency:0 @@ -5146,12 +5218,12 @@ msgstr "Kwota stała" #. module: account #: view:account.subscription:0 msgid "Valid Up to" -msgstr "" +msgstr "Ważne do" #. module: account #: view:board.board:0 msgid "Aged Receivables" -msgstr "" +msgstr "Przeterminowane należności" #. module: account #: model:ir.actions.act_window,name:account.action_account_automatic_reconcile @@ -5313,6 +5385,8 @@ msgid "" "document shows your debit and credit taking in consideration some criteria " "you can choose by using the search tool." msgstr "" +"Z tego widoku możesz analizować różne konta. Dokument pokazuje strony Winien " +"i Ma biorąc pod uwagę różne kryteria, które możesz ustalać." #. module: account #: help:account.partner.reconcile.process,progress:0 @@ -5320,6 +5394,9 @@ msgid "" "Shows you the progress made today on the reconciliation process. Given by \n" "Partners Reconciled Today \\ (Remaining Partners + Partners Reconciled Today)" msgstr "" +"Pokazuje dzsiejszy postęp w uzgodnieniach. Jest obliczany jako \n" +"Partnerzy uzgodnieni dzisiaj \\ (Pozostali partnerzy + Partnerzy uzgodnieni " +"dzisiaj)" #. module: account #: help:account.payment.term.line,value:0 @@ -5390,7 +5467,7 @@ msgstr "Konto podatku dla faktur" #: model:ir.actions.act_window,name:account.action_account_general_journal #: model:ir.model,name:account.model_account_general_journal msgid "Account General Journal" -msgstr "" +msgstr "Dziennik główny" #. module: account #: field:account.payment.term.line,days:0 @@ -5446,7 +5523,7 @@ msgstr "Faktury korygujące dla klienta" #. module: account #: view:account.payment.term.line:0 msgid "Amount Computation" -msgstr "" +msgstr "Obliczanie kwoty" #. module: account #: field:account.journal.period,name:0 @@ -5456,13 +5533,13 @@ msgstr "Dziennik - nazwa okresu" #. module: account #: field:account.invoice.tax,factor_base:0 msgid "Multipication factor for Base code" -msgstr "" +msgstr "Współczynnik dla rejestru podstawy" #. module: account #: code:addons/account/wizard/account_report_common.py:0 #, python-format msgid "not implemented" -msgstr "" +msgstr "nie zaimplementowane" #. module: account #: help:account.journal,company_id:0 @@ -5476,6 +5553,8 @@ msgid "" "Selected Invoice(s) cannot be confirmed as they are not in 'Draft' or 'Pro-" "Forma' state!" msgstr "" +"Wybrane faktury nie mogą być potwierdzone ponieważ nie są w stanie " +"\"Projekt' lub 'Pro-Forma' !" #. module: account #: report:account.invoice:0 @@ -5487,7 +5566,7 @@ msgstr "Uwaga do obszaru podatkowego :" #: model:ir.actions.act_window,name:account.action_analytic_entries_report #: model:ir.ui.menu,name:account.menu_action_analytic_entries_report msgid "Analytic Entries Analysis" -msgstr "" +msgstr "Analiza zapisów analitycznych" #. module: account #: model:ir.actions.act_window,help:account.action_bank_statement_tree @@ -5498,6 +5577,11 @@ msgid "" "all lines of your statement. When you are in the Payment column of the a " "line, you can press F1 to open the reconciliation form." msgstr "" +"Wyciąg bankowy jest spisem transakcji finansowych związanych kontem " +"bankowym, kartą kredytową lub innym kontem finansowym w danym okresie. " +"Rozpocznij wpisując stan początkowy i końcowy, a następnie wpisuj kolejne " +"pozycje. W kolumnie Płatność możesz nacisnąć F11, aby otworzyć formularz " +"uzgodnienia." #. module: account #: selection:account.aged.trial.balance,direction_selection:0 @@ -5535,7 +5619,7 @@ msgstr "Kwota" msgid "" "The code will be used to generate the numbers of the journal entries of this " "journal." -msgstr "" +msgstr "Ten kod będzie stosowany do generowania numerów zapisów dziennika." #. module: account #: view:account.invoice:0 @@ -5548,6 +5632,8 @@ msgid "" "As soon as the reconciliation is done, the invoice's state turns to “done” " "(i.e. paid) in the system." msgstr "" +"Kiedy uzgodnienie zostanie wykonane, to stan faktury zmieni się na " +"'Wykonano'." #. module: account #: code:addons/account/invoice.py:0 @@ -5564,7 +5650,7 @@ msgstr "Konto główne" #. module: account #: field:res.partner,last_reconciliation_date:0 msgid "Latest Reconciliation Date" -msgstr "" +msgstr "Data ostatniego uzgodnienia" #. module: account #: model:ir.model,name:account.model_account_analytic_line @@ -5579,7 +5665,7 @@ msgstr "Podatki klienta" #. module: account #: view:account.addtmpl.wizard:0 msgid "Create an Account based on this template" -msgstr "" +msgstr "Utwórz konto według tego szablonu" #. module: account #: view:account.account.type:0 @@ -5590,7 +5676,7 @@ msgstr "Konfiguracja raportowania" #. module: account #: constraint:account.move.line:0 msgid "Company must be same for its related account and period." -msgstr "" +msgstr "Firma musi odpowiednia do konta i okresu." #. module: account #: field:account.tax,type:0 @@ -5607,7 +5693,7 @@ msgstr "Szablony kont" #. module: account #: report:account.vat.declaration:0 msgid "Tax Statement" -msgstr "" +msgstr "Deklaracja podatkowa" #. module: account #: model:ir.model,name:account.model_res_company @@ -5621,6 +5707,7 @@ msgid "" "You cannot modify Company of account as its related record exist in Entry " "Lines" msgstr "" +"Nie możesz zmieniać firmy konta ponieważ jest ona związana z pozycja zapisów." #. module: account #: help:account.fiscalyear.close.state,fy_id:0 @@ -5735,7 +5822,7 @@ msgstr "Domyślne konto Ma" #. module: account #: view:account.installer:0 msgid "Configure Your Accounting Chart" -msgstr "" +msgstr "Konfiguruj swój plan kont" #. module: account #: view:account.payment.term.line:0 @@ -5745,7 +5832,7 @@ msgstr " liczba dni: 30" #. module: account #: help:account.analytic.line,currency_id:0 msgid "The related account currency if not equal to the company one." -msgstr "" +msgstr "Waluta powiązanego konta nie jest zgodna z walutą firmy." #. module: account #: view:account.analytic.account:0 @@ -5809,6 +5896,8 @@ msgid "" "Indicates if the amount of tax must be included in the base amount for the " "computation of the next taxes" msgstr "" +"Określa, czy podatek ma być wliczony w podstawę do obliczenia następnego " +"podatku" #. module: account #: model:ir.actions.act_window,name:account.action_account_partner_reconcile @@ -5848,7 +5937,7 @@ msgstr "" #: selection:account.account.template,type:0 #: view:account.journal:0 msgid "Liquidity" -msgstr "" +msgstr "Likwidacja" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_journal_open_form @@ -5863,6 +5952,9 @@ msgid "" "year. Note that you can run this wizard many times for the same fiscal year: " "it will simply replace the old opening entries with the new ones." msgstr "" +"Ten kreator generuje zapisy końca roku. Możesz uruchamiać go wielokrotnie " +"dla tego samego roku: Kreator po prostu podmieni poprzednie zapisy otwarcia " +"na nowe." #. module: account #: model:ir.ui.menu,name:account.menu_finance_bank_and_cash @@ -5892,7 +5984,7 @@ msgstr "" #: code:addons/account/invoice.py:0 #, python-format msgid "Can not find account chart for this company, Please Create account." -msgstr "" +msgstr "Nie ma planu kont dla tej firmy. Utwórz go." #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:0 @@ -5926,7 +6018,7 @@ msgstr "Centralizacja" #. module: account #: view:wizard.multi.charts.accounts:0 msgid "Generate Your Accounting Chart from a Chart Template" -msgstr "" +msgstr "Wygeneruj plan kont z szablonu planu kont." #. module: account #: view:account.account:0 @@ -6048,7 +6140,7 @@ msgstr "Zapisy: " #. module: account #: view:account.use.model:0 msgid "Create manual recurring entries in a chosen journal." -msgstr "" +msgstr "Utwórz ręcznie powtarzalne zapisy w wybranym dzienniku." #. module: account #: code:addons/account/account.py:0 @@ -6063,6 +6155,8 @@ msgid "" "corresponds with the entries (or records) of that account in your accounting " "system." msgstr "" +"Uzgodnienie bankowe jest weryfikacją, że wyciągi bankowe zgadzają się z " +"zapisami w twojej księgowości." #. module: account #: model:process.node,note:account.process_node_draftstatement0 @@ -6124,6 +6218,8 @@ msgid "" "Check this box if you want to allow the cancellation the entries related to " "this journal or of the invoice related to this journal" msgstr "" +"Zaznacz to pole, jeśli chcesz pozwolić na anulowanie zapisów związanych z " +"tego dziennika lub faktur tego dziennika." #. module: account #: view:account.fiscalyear.close:0 @@ -6260,7 +6356,7 @@ msgstr "Wszystkie zapisy" #: constraint:product.template:0 msgid "" "Error: The default UOM and the purchase UOM must be in the same category." -msgstr "" +msgstr "Błąd: domyślna JM i zakupowa JM muszą być tej samej kategorii." #. module: account #: view:account.journal.select:0 @@ -6359,7 +6455,7 @@ msgstr "Konta dochodowe" #. module: account #: help:report.invoice.created,origin:0 msgid "Reference of the document that generated this invoice report." -msgstr "" +msgstr "Odnośnik do dokumentu, który wygenerował te fakturę." #. module: account #: field:account.tax.code,child_ids:0 @@ -6407,7 +6503,7 @@ msgstr "Wykonano" #. module: account #: model:process.transition,note:account.process_transition_invoicemanually0 msgid "A statement with manual entries becomes a draft statement." -msgstr "" +msgstr "Wyciąg z ręcznymi zapisami zostanie projektem wyciągu." #. module: account #: view:account.aged.trial.balance:0 @@ -6419,6 +6515,11 @@ msgid "" "you request an interval of 30 days OpenERP generates an analysis of " "creditors for the past month, past two months, and so on. " msgstr "" +"Raport przeterminowanych należności sporządza wykaz należności wg " +"interwałów. OpenERP zapyta cię nazwę firmy, okres i wielkość interwałów w " +"dniach. Następnie system obliczy tabelę należności. Jeśli podasz interwał 30 " +"dni, to system wygeneruje wartości należności za ostatni miesiąc, za " +"przedostatni miesiąc itd. " #. module: account #: model:ir.actions.act_window,help:account.action_account_journal_view @@ -6510,6 +6611,11 @@ msgid "" "Most of the OpenERP operations (invoices, timesheets, expenses, etc) " "generate analytic entries on the related account." msgstr "" +"Podstawowy plan kont ma strukturę wymaganą przez prawo twojego kraju. " +"Analityczny plan kont powinien odpowiadać twoim potrzebom raportowania " +"kosztów i przychodów. Zwykle jest układany wg umów, projektów, produktów lub " +"departamentów. Większość operacji OpenERP (faktury, karty czasu pracy, " +"wydatki, ...) generuje zapisy analityczne." #. module: account #: field:account.analytic.journal,line_ids:0 @@ -6557,7 +6663,7 @@ msgstr "Wyciąg" #. module: account #: help:account.journal,default_debit_account_id:0 msgid "It acts as a default account for debit amount" -msgstr "" +msgstr "Jest to domyślne konto dla wartości Winien." #. module: account #: model:ir.module.module,description:account.module_meta_information @@ -6583,6 +6689,23 @@ msgid "" "module named account_voucher.\n" " " msgstr "" +"Moduł finasowo-księgowy który obejmuje:\n" +" Księgowość ogólną \n" +" Księgowość kosztową i analityczną\n" +" Księgowość podniotów zewnętrznych\n" +" Wyliczanie podatków\n" +" Budżetowanie\n" +" Obsługę faktur klientów i dostawców\n" +" Wyciągi bankowe\n" +" Procesy uzgadniania zapisów\n" +" Tworzenie konsol księgowych\n" +" * Lista wartości niezafakturowanych\n" +" * Wykresy zaległych należności\n" +" * Wykres dochodów\n" +"\n" +"Proces utrzymania księgi głównej jest prowadzony przez definiowanie " +"dzienników. dla lat podatkowych.\n" +" " #. module: account #: report:account.invoice:0 @@ -6679,6 +6802,8 @@ msgid "" "Bank Account Number, Company bank account if Invoice is customer or supplier " "refund, otherwise Partner bank account number." msgstr "" +"Konto bankowe, Konto firmy kiedy faktura jest dostawcy, a konto bankowe " +"partnera w pozostałych przypadkach." #. module: account #: help:account.tax,domain:0 @@ -6719,7 +6844,7 @@ msgstr "Kod dziennika musi być unikalny w ramach firmy !" #. module: account #: field:account.bank.statement,ending_details_ids:0 msgid "Closing Cashbox" -msgstr "" +msgstr "Zamknięcie kasy" #. module: account #: view:account.journal:0 @@ -6739,6 +6864,9 @@ msgid "" "the system to go through the reconciliation process, based on the latest day " "it have been reconciled." msgstr "" +"To pole pokazuje następnego partnera wybieranego automatycznie przez system " +"w trakcie uzgodnień. System zrobi to na podstawie daty ostatniego " +"uzgodnienia." #. module: account #: field:account.move.line.reconcile.writeoff,comment:0 @@ -6754,7 +6882,7 @@ msgstr "Domena" #. module: account #: model:ir.model,name:account.model_account_use_model msgid "Use model" -msgstr "" +msgstr "Stosuj model" #. module: account #: model:ir.actions.act_window,help:account.action_account_moves_all_a @@ -6765,6 +6893,10 @@ msgid "" "line of the expense account, OpenERP will propose to you automatically the " "Tax related to this account and the counter-part \"Account Payable\"." msgstr "" +"Ten widok jest stosowany przez księgowych do tworzenia masowych zapisów. " +"Jeśli chcesz wprowadzić fakturę od dostawcy, to zacznij od konta wydatków. " +"OpenERP automatycznie zaproponuje ci podatek związany z tym kontem i konto " +"przeciwstawne do płatności." #. module: account #: help:res.company,property_reserve_and_surplus_account:0 @@ -6815,6 +6947,7 @@ msgstr " dzień miesiąca= -1" #: constraint:res.partner:0 msgid "Error ! You can not create recursive associated members." msgstr "" +"Błąd ! Tworzenie rekursywnych elementów skojarzonych jest zabronione." #. module: account #: help:account.journal,type:0 @@ -6826,6 +6959,11 @@ msgid "" "Situation' to be used at the time of new fiscal year creation or end of year " "entries generation." msgstr "" +"Wybierz 'Sprzedaż' dla dziennika sprzedaży stosowanego do faktur. Wybierz " +"'Zakup' dla dzienników stosowanych w zakupach. Wybierz 'Gotówka' do " +"rejestracji płatności. Wybierz 'Ogólny' dla innych operacji. Wybierz " +"'Sytuacja Otwarcia/Zamknięcia' do stosowania w trakcie tworzenia lub " +"zamykania lat podatkowych." #. module: account #: report:account.invoice:0 @@ -6884,6 +7022,8 @@ msgid "" "This field is used for payable and receivable journal entries. You can put " "the limit date for the payment of this line." msgstr "" +"To pole jest stosowane do zapisów zobowiązań i należności. Możesz wstawić tu " +"datę graniczną płatności." #. module: account #: code:addons/account/account_move_line.py:0 @@ -7063,7 +7203,7 @@ msgstr "Środek trwały" #. module: account #: view:analytic.entries.report:0 msgid " 7 Days " -msgstr "" +msgstr " 7 Dni " #. module: account #: field:account.partner.reconcile.process,progress:0 @@ -7194,7 +7334,7 @@ msgstr "Partner" #. module: account #: help:account.change.currency,currency_id:0 msgid "Select a currency to apply on the invoice" -msgstr "" +msgstr "Wybierz walutę dla faktury" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:0 @@ -7234,6 +7374,8 @@ msgid "" "Select Fiscal Year which you want to remove entries for its End of year " "entries journal" msgstr "" +"Wybierz rok podatkowy, dla którego chcesz usunąć zapisy dziennika zapisów " +"końca roku." #. module: account #: field:account.tax.template,type_tax_use:0 @@ -7250,6 +7392,9 @@ msgid "" "daily transactions, a company may keep several types of specialized " "journals such as a cash journal, purchases journal, and sales journal." msgstr "" +"W tym menu możesz zarządzać dziennikami. Dziennik jest miejscem " +"porządkowania zapisów księgowych. W zależności od złożoności operacji " +"księgowych firma może prowadzić wiele dzienników księgowych." #. module: account #: code:addons/account/account_bank_statement.py:0 @@ -7276,7 +7421,7 @@ msgstr "Zapis automatyczny" #. module: account #: constraint:account.tax.code.template:0 msgid "Error ! You can not create recursive Tax Codes." -msgstr "" +msgstr "Błąd ! Nie możesz tworzyć rekurencyjnych rejestrów podatkowych." #. module: account #: view:account.invoice.line:0 @@ -7289,6 +7434,8 @@ msgid "" "This account will be used for invoices instead of the default one to value " "sales for the current product" msgstr "" +"To konto będzie stosowane dla produktu (zamiast domyślnego) do zapisów " +"sprzedaży." #. module: account #: help:account.journal,group_invoice_lines:0 @@ -7305,6 +7452,8 @@ msgid "" "When monthly periods are created. The state is 'Draft'. At the end of " "monthly period it is in 'Done' state." msgstr "" +"Kiedy utworzone zostały okresy miesięczne, to stan jest 'Projekt'. Na koniec " +"miesiąca stan zmienia się na \"Wykonano'." #. module: account #: report:account.analytic.account.inverted.balance:0 @@ -7364,7 +7513,7 @@ msgstr "Stan faktury jest Otwarte" #. module: account #: view:account.installer.modules:0 msgid "Add extra Accounting functionalities to the ones already installed." -msgstr "" +msgstr "Dodaje funkcjonalność księgową do tej już zainstalowanej." #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -7412,6 +7561,8 @@ msgid "" "Modify Invoice: Cancels the current invoice and creates a new copy of it " "ready for editing." msgstr "" +"Modyfikuj fakturę: Anuluje bieżącą fakturę (korektą do zera) i tworzy nową " +"kopię faktury do edycji." #. module: account #: model:ir.module.module,shortdesc:account.module_meta_information @@ -7498,6 +7649,10 @@ msgid "" "useful because it enables you to preview at any time the tax that you owe at " "the start and end of the month or quarter." msgstr "" +"To menu drukuje deklarację VAT na podstawie faktur (lub płatności). Możesz " +"wybrać kilka okresów. Informacja do deklaracji jest w OpenERP generowana " +"automatycznie na podstawie faktur (i w niektórych krajach również " +"płatności). Te dane są dostępne na bieżąco po każdej operacji." #. module: account #: report:account.invoice:0 @@ -7529,7 +7684,7 @@ msgid "" "You can look up individual account entries by searching for useful " "information. To search for account entries, open a journal, then select a " "record line." -msgstr "" +msgstr "Możesz przeglądać zapisy. Do tego celu otwórz dziennik." #. module: account #: help:product.category,property_account_income_categ:0 @@ -7626,7 +7781,7 @@ msgstr "Bilans kasy" #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close_state msgid "Fiscalyear Close state" -msgstr "" +msgstr "Stan zamknięcia roku podatkowego" #. module: account #: field:account.invoice.refund,journal_id:0 @@ -7696,7 +7851,7 @@ msgstr "Drukuj deklarację VAT" #. module: account #: view:account.model.line:0 msgid "Journal Entry Model Line" -msgstr "" +msgstr "Pozycja modelu zapisów" #. module: account #: view:account.invoice:0 @@ -7758,6 +7913,8 @@ msgid "" "expense account or payable account. From this view, you can create and " "manage the account types you need to be used for your company management." msgstr "" +"Typ konta jest nazwą lub kodem nadanym do określania zastosowania konta. Na " +"przykład, typ może być konto środków trwałych, wydatków, płatności itp." #. module: account #: model:ir.actions.act_window,name:account.act_account_journal_2_account_invoice_opened @@ -7994,7 +8151,7 @@ msgstr "" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 msgid "Cost Ledger for period" -msgstr "" +msgstr "Rejestr kosztów dla okresu" #. module: account #: help:account.tax,child_depend:0 @@ -8068,6 +8225,8 @@ msgid "" "You cannot modify company of this period as its related record exist in " "Entry Lines" msgstr "" +"Nie możesz modyfikować firmy dla okresu ponieważ jest ona wpisana już do " +"pozycji zapisów." #. module: account #: view:account.move:0 @@ -8089,7 +8248,7 @@ msgstr "Zamknij stany roku podatkowego i okresów" #. module: account #: view:account.analytic.line:0 msgid "Product Information" -msgstr "" +msgstr "Informacja o produkcie" #. module: account #: report:account.analytic.account.journal:0 @@ -8123,6 +8282,8 @@ msgid "" "depending on the country and sometimes industry sector. OpenERP allows you " "to define and manage them from this menu." msgstr "" +"Rejestry podatkowe służą do rozdzielania kwot brutto w zależności od kraju i " +"czasem sektora firmy. Możesz nimi zarządzać w tym menu." #. module: account #: report:account.overdue:0 @@ -8132,7 +8293,7 @@ msgstr "Droga(i) Pani(e)" #. module: account #: view:account.installer.modules:0 msgid "Configure Your Accounting Application" -msgstr "" +msgstr "Konfiguruj aplikację księgową" #. module: account #: model:ir.actions.act_window,help:account.action_account_form @@ -8143,7 +8304,7 @@ msgid "" "balance sheet and the income statement (profit and loss account). The annual " "accounts of a company are required by law to disclose a certain amount of " "information. They have to be certified by an external auditor yearly." -msgstr "" +msgstr "Tutaj możesz operować kontami księgowymi." #. module: account #: code:addons/account/account.py:0 @@ -8167,6 +8328,10 @@ msgid "" "in which order. You can create your own view for a faster encoding in each " "journal." msgstr "" +"Ten widok służy do określania widoków dla dzienników. Możesz tu określać, " +"które pola mają być widoczne, wymagane lub tylko do odczytu. Możesz również " +"określać kolejność kolumn i inne ustawienia, aby przyśpieszyć wprowadzanie " +"danych." #. module: account #: field:account.period,date_stop:0 @@ -8254,6 +8419,8 @@ msgid "" "see here the taxes with codes related to your legal statement according to " "your country." msgstr "" +"Rejestry podatkowe pozwalają ci oglądać hierarchię rejestrów i ich stan na " +"bieżący okres." #. module: account #: report:account.overdue:0 @@ -8263,7 +8430,7 @@ msgstr "Dokument: Zestawienie kont klienta" #. module: account #: constraint:account.move.line:0 msgid "You can not create move line on view account." -msgstr "" +msgstr "Nie możesz tworzyć zapisów na koncie widokowym." #. module: account #: code:addons/account/wizard/account_change_currency.py:0 @@ -8450,7 +8617,7 @@ msgstr "" #. module: account #: report:account.central.journal:0 msgid "A/C No." -msgstr "" +msgstr "Konto nr" #. module: account #: model:ir.actions.act_window,name:account.act_account_journal_2_account_bank_statement @@ -8671,7 +8838,7 @@ msgstr "Oczekujący" #: model:process.transition,name:account.process_transition_analyticinvoice0 #: model:process.transition,name:account.process_transition_supplieranalyticcost0 msgid "From analytic accounts" -msgstr "" +msgstr "Z kont analitycznych" #. module: account #: field:account.installer.modules,account_payment:0 @@ -8701,7 +8868,7 @@ msgstr "Aktywne" #: code:addons/account/invoice.py:0 #, python-format msgid "Unknown Error" -msgstr "" +msgstr "Nieznany błąd" #. module: account #: code:addons/account/account.py:0 @@ -8711,6 +8878,9 @@ msgid "" "Make sure you have configured Payment Term properly !\n" "It should contain atleast one Payment Term Line with type \"Balance\" !" msgstr "" +"Nie możesz zatwierdzić zapisu niebilansującego się !\n" +"Upewnij się, że skonfigurowałeś poprawnie warunki płatności !\n" +"Zapis powinien zawierać co najmniej jedną pozycję z typem \"Bilans\" !" #. module: account #: help:res.partner,property_account_payable:0 @@ -8769,6 +8939,8 @@ msgid "" "created. If you leave that field empty, it will use the same journal as the " "current invoice." msgstr "" +"Możesz wybrać dziennik dla faktur korygujących. Jeśli zostawisz to pole " +"puste, to będzie zastosowany ten sam dziennik jak dla faktury pierwotnej." #. module: account #: report:account.move.voucher:0 @@ -8794,6 +8966,9 @@ msgid "" "payment term!\n" "Please define partner on it!" msgstr "" +"Data płatności w pozycji generowana przez pozycję modelu '%s' jest tworzona " +"na podstawie warunków płatności!\n" +"Zdefiniuj partnera!" #. module: account #: field:account.cashbox.line,number:0 @@ -9126,17 +9301,17 @@ msgstr "Firma" #. module: account #: model:ir.ui.menu,name:account.menu_action_subscription_form msgid "Define Recurring Entries" -msgstr "" +msgstr "Definiuj powtarzalne zapisy" #. module: account #: field:account.entries.report,date_maturity:0 msgid "Date Maturity" -msgstr "" +msgstr "Data płatności" #. module: account #: help:account.bank.statement,total_entry_encoding:0 msgid "Total cash transactions" -msgstr "" +msgstr "Suma transakcji gotówkowych" #. module: account #: help:account.partner.reconcile.process,today_reconciled:0 @@ -9145,6 +9320,8 @@ msgid "" "reconciliation process today. The current partner is counted as already " "processed." msgstr "" +"Określa liczbę partnerów przejrzanych dzisiaj w procesie uzgodnień. Bieżący " +"partner jest traktowany jako już przejrzany." #. module: account #: view:account.fiscalyear:0 @@ -9171,6 +9348,7 @@ msgstr "Projekty wyciągów" msgid "" "Manual or automatic creation of payment entries according to the statements" msgstr "" +"Ręczne lub automatyczne tworzenie zapisów płatności w zależności od wyciągów." #. module: account #: view:account.invoice:0 @@ -9283,11 +9461,13 @@ msgid "" "This account will be used for invoices to value expenses for the current " "product category" msgstr "" +"To konto będzie stosowane w fakturach do zapisów wydatkowych dla bieżącej " +"kategorii produktów." #. module: account #: constraint:account.account.template:0 msgid "Error ! You can not create recursive account templates." -msgstr "" +msgstr "Błąd ! Nie możesz tworzyć rekurencyjnego szablonu kont." #. module: account #: view:account.subscription:0 @@ -9371,7 +9551,7 @@ msgstr "Drukuj dzienniki analityczne" #. module: account #: view:account.analytic.line:0 msgid "Fin.Account" -msgstr "" +msgstr "Konto fin." #. module: account #: model:ir.actions.act_window,name:account.action_aged_receivable_graph @@ -9543,7 +9723,7 @@ msgstr "Jak tylko uzgodnienie jest wykonane, to faktura może być zapłacona." #. module: account #: view:account.account.template:0 msgid "Search Account Templates" -msgstr "" +msgstr "Przeszukaj szablony kont" #. module: account #: view:account.invoice.tax:0 @@ -9580,7 +9760,7 @@ msgstr "" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Partner's" -msgstr "" +msgstr "Partnerzy" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear_form @@ -9595,6 +9775,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the analytic " "journal without removing it." msgstr "" +"Niezaznaczenie tego pola pozwala ukryć dziennik analityczny bez konieczności " +"usuwania go." #. module: account #: field:account.analytic.line,ref:0 @@ -9614,7 +9796,7 @@ msgstr "Model konta" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "February" -msgstr "" +msgstr "Luty" #. module: account #: field:account.bank.accounts.wizard,bank_account_id:0 @@ -9629,7 +9811,7 @@ msgstr "Konto bankowe" #: model:ir.actions.act_window,name:account.action_account_central_journal #: model:ir.model,name:account.model_account_central_journal msgid "Account Central Journal" -msgstr "" +msgstr "Dziennik główny" #. module: account #: report:account.overdue:0 @@ -9644,7 +9826,7 @@ msgstr "Przyszłość" #. module: account #: view:account.move.line:0 msgid "Search Journal Items" -msgstr "" +msgstr "Szukaj pozycji zapisów" #. module: account #: help:account.tax,base_sign:0 @@ -9671,7 +9853,7 @@ msgstr "Konto wydatków dla szablonu produktu" #. module: account #: field:account.analytic.line,amount_currency:0 msgid "Amount currency" -msgstr "" +msgstr "Kwota w walucie" #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:0 diff --git a/addons/account/i18n/sv.po b/addons/account/i18n/sv.po index f3189b21e2f..25e596f3621 100644 --- a/addons/account/i18n/sv.po +++ b/addons/account/i18n/sv.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.14\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-29 16:48+0000\n" -"Last-Translator: Anders Eriksson, Aspirix AB \n" +"PO-Revision-Date: 2010-12-31 09:55+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:25+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:03+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account diff --git a/addons/account_analytic_analysis/i18n/it.po b/addons/account_analytic_analysis/i18n/it.po index 68ad08c2a35..16604362e51 100644 --- a/addons/account_analytic_analysis/i18n/it.po +++ b/addons/account_analytic_analysis/i18n/it.po @@ -7,14 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-12 10:11+0000\n" -"Last-Translator: Lorenzo Battistini - agilebg.com " -"\n" +"PO-Revision-Date: 2011-01-01 13:31+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: <>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:31+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_analytic_analysis @@ -64,6 +63,14 @@ msgid "" "You can also view the report of account analytic summary\n" "user-wise as well as month wise.\n" msgstr "" +"\n" +"Questo moduli è creato per modificare le viste dei conti analitici per " +"mostrare\n" +"dati importanti al manager di progetto per una compagnia di servizi.\n" +"Aggiunge menu per mostrare informazioni rilevanti ad ogni manager.\n" +"\n" +"E' inoltre possibile visulizzare il report riepilogativo di conti analitici\n" +"in modalità utente così come in modalità mensile.\n" #. module: account_analytic_analysis #: field:account.analytic.account,last_invoice_date:0 diff --git a/addons/account_analytic_plans/i18n/de.po b/addons/account_analytic_plans/i18n/de.po index 4c7fee5cbb9..805481c2693 100644 --- a/addons/account_analytic_plans/i18n/de.po +++ b/addons/account_analytic_plans/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-30 23:11+0000\n" +"PO-Revision-Date: 2010-12-31 10:33+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:26+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:03+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_analytic_plans diff --git a/addons/account_anglo_saxon/i18n/fr.po b/addons/account_anglo_saxon/i18n/fr.po index 28e8f88ce29..2399c9b3827 100644 --- a/addons/account_anglo_saxon/i18n/fr.po +++ b/addons/account_anglo_saxon/i18n/fr.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-30 18:55+0000\n" +"PO-Revision-Date: 2010-12-31 11:02+0000\n" "Last-Translator: lolivier \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_anglo_saxon diff --git a/addons/account_coda/i18n/fr.po b/addons/account_coda/i18n/fr.po index 59e1f3a54dd..6a4b94b2866 100644 --- a/addons/account_coda/i18n/fr.po +++ b/addons/account_coda/i18n/fr.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-30 19:27+0000\n" +"PO-Revision-Date: 2010-12-31 10:33+0000\n" "Last-Translator: lolivier \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_coda diff --git a/addons/account_payment/i18n/de.po b/addons/account_payment/i18n/de.po index d55eb563504..17e488e88c0 100644 --- a/addons/account_payment/i18n/de.po +++ b/addons/account_payment/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-30 09:47+0000\n" +"PO-Revision-Date: 2010-12-31 10:59+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:26+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_payment diff --git a/addons/account_voucher/i18n/pl.po b/addons/account_voucher/i18n/pl.po index 6916658564f..17f93dc22fc 100644 --- a/addons/account_voucher/i18n/pl.po +++ b/addons/account_voucher/i18n/pl.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-10-08 07:28+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-01 19:25+0000\n" +"Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:43+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: account_voucher @@ -79,12 +79,12 @@ msgstr "" #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.act_pay_bills msgid "Bill Payment" -msgstr "" +msgstr "Płatność rachunku" #. module: account_voucher #: field:account.voucher.line,amount_original:0 msgid "Originial Amount" -msgstr "" +msgstr "Wartość oryginalna" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 @@ -92,7 +92,7 @@ msgstr "" #: model:ir.actions.act_window,name:account_voucher.action_view_account_statement_from_invoice_lines #, python-format msgid "Import Entries" -msgstr "" +msgstr "Importuj zapisy" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_voucher_unreconcile @@ -107,11 +107,15 @@ msgid "" "automatically and you can record the customer payment related to this sales " "receipt." msgstr "" +"Kiedy sprzedajesz produkty klientowi, to możesz mu dać potwierdzenie " +"sprzedaży lub fakturę. Kiedy potwierdzisz potwierdzenie sprzedaży, to " +"tworzone są automatycznie zapisy księgowe i możesz wprowadzić płatność " +"klienta związaną z tym potwierdzeniem sprzedaży." #. module: account_voucher #: view:account.voucher:0 msgid "Pay Bill" -msgstr "" +msgstr "Zapłać rachunek" #. module: account_voucher #: field:account.voucher,company_id:0 @@ -127,32 +131,32 @@ msgstr "Ustaw na projekt" #. module: account_voucher #: field:account.voucher,comment:0 msgid "Write-Off Comment" -msgstr "" +msgstr "Komentarz odpisu" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_view_account_voucher_unreconcile msgid "Unreconcile entries" -msgstr "" +msgstr "Skasuj uzgodnienie" #. module: account_voucher #: view:account.voucher:0 msgid "Voucher Statistics" -msgstr "" +msgstr "Statystyka poleceń" #. module: account_voucher #: view:account.voucher:0 msgid "Validate" -msgstr "" +msgstr "Zatwierdź" #. module: account_voucher #: view:account.voucher:0 msgid "Search Vouchers" -msgstr "" +msgstr "Szukaj poleceń" #. module: account_voucher #: selection:account.voucher,type:0 msgid "Purchase" -msgstr "" +msgstr "Zakup" #. module: account_voucher #: field:account.voucher,account_id:0 @@ -163,7 +167,7 @@ msgstr "Konto" #. module: account_voucher #: field:account.voucher,line_dr_ids:0 msgid "Debits" -msgstr "" +msgstr "Winien" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 @@ -174,17 +178,17 @@ msgstr "" #: field:account.voucher,date_due:0 #: field:account.voucher.line,date_due:0 msgid "Due Date" -msgstr "" +msgstr "Data płatności" #. module: account_voucher #: constraint:account.move.line:0 msgid "You can not create move line on closed account." -msgstr "" +msgstr "Nie możesz tworzyć zapisu dla zamkniętego konta." #. module: account_voucher #: field:account.voucher,narration:0 msgid "Notes" -msgstr "" +msgstr "Notatki" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_vendor_receipt @@ -199,17 +203,17 @@ msgstr "" #. module: account_voucher #: selection:account.voucher,type:0 msgid "Sale" -msgstr "" +msgstr "Sprzedaż" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 msgid "Journal Item" -msgstr "" +msgstr "Pozycja zapisu dziennika" #. module: account_voucher #: field:account.voucher,reference:0 msgid "Ref #" -msgstr "" +msgstr "Odn #" #. module: account_voucher #: field:account.voucher.line,amount:0 @@ -220,32 +224,32 @@ msgstr "Kwota" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Options" -msgstr "" +msgstr "Opcje płatności" #. module: account_voucher #: sql_constraint:account.move.line:0 msgid "Wrong credit or debit value in accounting entry !" -msgstr "" +msgstr "Niepoprawna wartość Winien lub Ma w zapisie !" #. module: account_voucher #: view:account.voucher:0 msgid "Bill Information" -msgstr "" +msgstr "Inofrmacja o rachunku" #. module: account_voucher #: selection:account.voucher,state:0 msgid "Cancelled" -msgstr "" +msgstr "Anulowano" #. module: account_voucher #: field:account.statement.from.invoice,date:0 msgid "Date payment" -msgstr "" +msgstr "Data płatności" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_bank_statement_line msgid "Bank Statement Line" -msgstr "" +msgstr "Pozycja wyciągu bankowego" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_purchase_receipt @@ -257,12 +261,12 @@ msgstr "" #: view:account.voucher:0 #: view:account.voucher.unreconcile:0 msgid "Unreconcile" -msgstr "" +msgstr "Skasuj uzgodnienie" #. module: account_voucher #: field:account.voucher,tax_id:0 msgid "Tax" -msgstr "" +msgstr "Podatek" #. module: account_voucher #: report:voucher.print:0 @@ -279,6 +283,7 @@ msgstr "Konto analityczne" msgid "" "You can not create move line on receivable/payable account without partner" msgstr "" +"Nie możesz tworzyć zapisów bez partnera na kontach należności/płatności." #. module: account_voucher #: help:account.voucher,state:0 @@ -296,7 +301,7 @@ msgstr "" #. module: account_voucher #: view:account.statement.from.invoice:0 msgid "Go" -msgstr "" +msgstr "Przejdź" #. module: account_voucher #: view:account.voucher:0 @@ -308,7 +313,7 @@ msgstr "" #. module: account_voucher #: view:account.bank.statement:0 msgid "Import Invoices" -msgstr "" +msgstr "Importuj faktury" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:0 @@ -316,36 +321,37 @@ msgstr "" msgid "" "You have to configure account base code and account tax code on the '%s' tax!" msgstr "" +"Musisz skonfigurować rejestr podstawy i rejestr podatku dla podatku '%s' !" #. module: account_voucher #: selection:account.voucher,pay_now:0 msgid "Pay Later or Group Funds" -msgstr "" +msgstr "Zapłać później lub grupuj płatności" #. module: account_voucher #: selection:account.voucher,type:0 msgid "Receipt" -msgstr "" +msgstr "Potwierdzenie" #. module: account_voucher #: report:voucher.print:0 msgid "On Account of :" -msgstr "" +msgstr "Na koncie:" #. module: account_voucher #: field:account.voucher,writeoff_amount:0 msgid "Write-Off Amount" -msgstr "" +msgstr "Wartość odpisu" #. module: account_voucher #: view:account.voucher:0 msgid "Sales Lines" -msgstr "" +msgstr "Pozycje sprzedaży" #. module: account_voucher #: report:voucher.print:0 msgid "Date:" -msgstr "" +msgstr "Data:" #. module: account_voucher #: view:account.voucher:0 @@ -357,7 +363,7 @@ msgstr "Okres" #: view:account.voucher:0 #: field:account.voucher,state:0 msgid "State" -msgstr "Województwo" +msgstr "Stan" #. module: account_voucher #: model:ir.module.module,shortdesc:account_voucher.module_meta_information @@ -374,7 +380,7 @@ msgstr "" #: code:addons/account_voucher/account_voucher.py:0 #, python-format msgid "Error !" -msgstr "" +msgstr "Błąd !" #. module: account_voucher #: view:account.voucher:0 @@ -384,12 +390,12 @@ msgstr "" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_review_voucher_list msgid "Vouchers Entries" -msgstr "" +msgstr "Zapisy polecenia" #. module: account_voucher #: field:account.voucher,name:0 msgid "Memo" -msgstr "" +msgstr "Notatka" #. module: account_voucher #: view:account.voucher:0 @@ -402,55 +408,55 @@ msgstr "" #: code:addons/account_voucher/account_voucher.py:0 #, python-format msgid "Invalid action !" -msgstr "" +msgstr "Niedozwolona akcja !" #. module: account_voucher #: view:account.voucher:0 msgid "Other Information" -msgstr "" +msgstr "Inne informacje" #. module: account_voucher #: view:account.voucher.unreconcile:0 msgid "Unreconciliation" -msgstr "" +msgstr "Kasowanie uzgodnień" #. module: account_voucher #: field:account.voucher,tax_amount:0 msgid "Tax Amount" -msgstr "" +msgstr "Kwota Podatku" #. module: account_voucher #: view:account.invoice:0 #: code:addons/account_voucher/invoice.py:0 #, python-format msgid "Pay Invoice" -msgstr "" +msgstr "Zapłać fakturę" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:0 #, python-format msgid "No Account Base Code and Account Tax Code!" -msgstr "" +msgstr "Brak rejestru podstawy i rejestru podatku !" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Information" -msgstr "" +msgstr "Informacje o płatności" #. module: account_voucher #: view:account.voucher:0 msgid "Voucher Entry" -msgstr "" +msgstr "Zapis polecenia" #. module: account_voucher #: view:account.voucher:0 msgid "Paid Amount" -msgstr "" +msgstr "Zapłacona wartość" #. module: account_voucher #: field:account.voucher,payment_option:0 msgid "Payment Difference" -msgstr "" +msgstr "Różnica w płatności" #. module: account_voucher #: constraint:account.bank.statement.line:0 @@ -462,24 +468,24 @@ msgstr "" #. module: account_voucher #: selection:account.voucher,pay_now:0 msgid "Pay Directly" -msgstr "" +msgstr "Zapłać od razu" #. module: account_voucher #: field:account.statement.from.invoice,line_ids:0 #: field:account.statement.from.invoice.lines,line_ids:0 msgid "Invoices" -msgstr "" +msgstr "Faktury" #. module: account_voucher #: field:account.voucher.unreconcile,remove:0 msgid "Want to remove accounting entries too ?" -msgstr "" +msgstr "Chcesz usunąć zapisy również ?" #. module: account_voucher #: field:account.voucher,line_ids:0 #: model:ir.model,name:account_voucher.model_account_voucher_line msgid "Voucher Lines" -msgstr "" +msgstr "Pozycje polecenia" #. module: account_voucher #: field:account.voucher,currency_id:0 @@ -489,7 +495,7 @@ msgstr "Waluta" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 msgid "Payable and Receivables" -msgstr "" +msgstr "Zobowiązania i należności" #. module: account_voucher #: report:voucher.print:0 @@ -506,12 +512,12 @@ msgstr "Projekt" #. module: account_voucher #: field:account.voucher,type:0 msgid "Default Type" -msgstr "" +msgstr "Typ domyślny" #. module: account_voucher #: report:voucher.print:0 msgid "Currency:" -msgstr "" +msgstr "Waluta:" #. module: account_voucher #: report:voucher.print:0 @@ -526,16 +532,19 @@ msgid "" "the payment, OpenERP will propose to reconcile your payment with the open " "supplier invoices or bills." msgstr "" +"Formularz Płatności dla dostawcy pozwala ci przeglądać te płatności. Możesz " +"wybrać dostawcę, metodę płatności i wartości. OpenERP zaproponuje ci " +"uzgodnienie płatności z otwartymi fakturami." #. module: account_voucher #: view:account.voucher:0 msgid "Total Amount" -msgstr "" +msgstr "Suma kwot" #. module: account_voucher #: field:account.voucher.line,type:0 msgid "Cr/Dr" -msgstr "" +msgstr "Ma/Wn" #. module: account_voucher #: field:account.voucher,audit:0 @@ -545,12 +554,12 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Terms" -msgstr "" +msgstr "Warunki płatności" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure to unreconcile this record ?" -msgstr "" +msgstr "Na pewno chcesz skasowac uzgodnienia tego rekordu ?" #. module: account_voucher #: field:account.voucher,date:0 @@ -561,37 +570,37 @@ msgstr "Data" #. module: account_voucher #: view:account.voucher:0 msgid "Post" -msgstr "" +msgstr "Zaksięguj" #. module: account_voucher #: view:account.voucher:0 msgid "Extended Filters..." -msgstr "" +msgstr "Rozszerzone filtry..." #. module: account_voucher #: report:voucher.print:0 msgid "Number:" -msgstr "" +msgstr "Numer:" #. module: account_voucher #: field:account.bank.statement.line,amount_reconciled:0 msgid "Amount reconciled" -msgstr "" +msgstr "Kwota uzgodniona" #. module: account_voucher #: field:account.voucher,analytic_id:0 msgid "Write-Off Analytic Account" -msgstr "" +msgstr "Konto analityczne odpisów" #. module: account_voucher #: view:account.voucher:0 msgid "Expense Lines" -msgstr "" +msgstr "Pozycje wydatków" #. module: account_voucher #: field:account.voucher,pre_line:0 msgid "Previous Payments ?" -msgstr "" +msgstr "Poprzednia płatność ?" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -602,7 +611,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Compute Tax" -msgstr "" +msgstr "Oblicz podatki" #. module: account_voucher #: selection:account.voucher.line,type:0 @@ -613,23 +622,23 @@ msgstr "Ma" #: code:addons/account_voucher/account_voucher.py:0 #, python-format msgid "Please define a sequence on the journal !" -msgstr "" +msgstr "Zdefiniuj numerację dla dziennika !" #. module: account_voucher #: report:voucher.print:0 msgid "Through :" -msgstr "" +msgstr "Przez:" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_vendor_payment #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_payment msgid "Supplier Payment" -msgstr "" +msgstr "Płatność Dostawcy" #. module: account_voucher #: help:account.voucher,reference:0 msgid "Transaction reference number." -msgstr "" +msgstr "Numer odnośny transakcji" #. module: account_voucher #: view:account.voucher:0 @@ -639,12 +648,12 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Bill Date" -msgstr "" +msgstr "Data rachunku" #. module: account_voucher #: constraint:account.move.line:0 msgid "Company must be same for its related account and period." -msgstr "" +msgstr "Firma musi odpowiednia do konta i okresu." #. module: account_voucher #: view:account.voucher:0 @@ -660,17 +669,17 @@ msgstr "Numer" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_bank_statement msgid "Bank Statement" -msgstr "" +msgstr "Wyciąg bankowy" #. module: account_voucher #: view:account.voucher:0 msgid "To Review" -msgstr "" +msgstr "Do sprawdzenia" #. module: account_voucher #: view:account.voucher:0 msgid "Sales Information" -msgstr "" +msgstr "Informacja o sprzedaży" #. module: account_voucher #: field:account.voucher.line,voucher_id:0 @@ -681,12 +690,12 @@ msgstr "" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_invoice msgid "Invoice" -msgstr "" +msgstr "Faktura" #. module: account_voucher #: view:account.voucher:0 msgid "Voucher Items" -msgstr "" +msgstr "Pozycje polecenia" #. module: account_voucher #: view:account.statement.from.invoice:0 @@ -706,7 +715,7 @@ msgstr "" #: field:account.voucher,move_ids:0 #: model:ir.model,name:account_voucher.model_account_move_line msgid "Journal Items" -msgstr "" +msgstr "Pozycje zapisów dziennika" #. module: account_voucher #: view:account.voucher:0 @@ -714,23 +723,23 @@ msgstr "" #: model:ir.actions.act_window,name:account_voucher.action_vendor_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_receipt msgid "Customer Payment" -msgstr "" +msgstr "Płatności klienta" #. module: account_voucher #: field:account.move.line,amount_unreconciled:0 msgid "Unreconciled Amount" -msgstr "" +msgstr "Kowta nieuzgodniona" #. module: account_voucher #: view:account.statement.from.invoice:0 #: model:ir.actions.act_window,name:account_voucher.action_view_account_statement_from_invoice msgid "Import Invoices in Statement" -msgstr "" +msgstr "Importuj faktury do wyciągu" #. module: account_voucher #: view:account.voucher:0 msgid "Pay" -msgstr "" +msgstr "Zapłać" #. module: account_voucher #: selection:account.voucher.line,type:0 @@ -740,17 +749,17 @@ msgstr "Winien" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure to confirm this record ?" -msgstr "" +msgstr "Na pweno chcesz potwierdzić ten rekord ?" #. module: account_voucher #: selection:account.voucher,payment_option:0 msgid "Reconcile with Write-Off" -msgstr "" +msgstr "Uzgodnij z odpisem" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Method" -msgstr "" +msgstr "Metoda płatności" #. module: account_voucher #: field:account.voucher.line,name:0 @@ -767,23 +776,23 @@ msgstr "Anulowano" #: view:account.voucher:0 #: field:account.voucher,journal_id:0 msgid "Journal" -msgstr "" +msgstr "Dziennik" #. module: account_voucher #: view:account.voucher:0 msgid "Internal Notes" -msgstr "" +msgstr "Uwagi wewnętrzne" #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher,line_cr_ids:0 msgid "Credits" -msgstr "" +msgstr "Ma" #. module: account_voucher #: report:voucher.print:0 msgid "State:" -msgstr "" +msgstr "Stan:" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -792,7 +801,7 @@ msgstr "" #: field:account.voucher,pay_now:0 #: selection:account.voucher,type:0 msgid "Payment" -msgstr "" +msgstr "Płatność" #. module: account_voucher #: view:account.voucher:0 @@ -804,28 +813,28 @@ msgstr "Zaksięgowano" #. module: account_voucher #: view:account.voucher:0 msgid "Customer" -msgstr "" +msgstr "Klient" #. module: account_voucher #: field:account.voucher,writeoff_acc_id:0 msgid "Write-Off account" -msgstr "" +msgstr "Konto odpisów" #. module: account_voucher #: view:account.voucher:0 msgid "Supplier Invoices and Outstanding transactions" -msgstr "" +msgstr "Faktury dostawców i inne transakcje" #. module: account_voucher #: view:account.voucher:0 msgid "Open Supplier Journal Entries" -msgstr "" +msgstr "Otwarte zapisy dostawcy" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_statement_from_invoice #: model:ir.model,name:account_voucher.model_account_statement_from_invoice_lines msgid "Entries by Statement from Invoices" -msgstr "" +msgstr "Zapisy faktur wg wyciągów" #. module: account_voucher #: field:account.voucher,move_id:0 @@ -835,12 +844,12 @@ msgstr "Zapis na koncie" #. module: account_voucher #: help:account.voucher,date:0 msgid "Effective date for accounting entries" -msgstr "" +msgstr "Efektywna data zapisów" #. module: account_voucher #: selection:account.voucher,payment_option:0 msgid "Keep Open" -msgstr "" +msgstr "Pozostaw otwarte" #. module: account_voucher #: view:account.voucher.unreconcile:0 @@ -848,11 +857,13 @@ msgid "" "If you unreconciliate transactions, you must also verify all the actions " "that are linked to those transactions because they will not be disable" msgstr "" +"Jeśli skasujesz uzgodnienie transakcji, to musisz sprawdzić wszystkie akcje " +"powiązane z tymi transakcjami, ponieważ one nie zostaną zdezaktywowane." #. module: account_voucher #: field:account.voucher.line,untax_amount:0 msgid "Untax Amount" -msgstr "" +msgstr "Kowta bez podatku" #. module: account_voucher #: view:account.voucher:0 diff --git a/addons/analytic_user_function/i18n/it.po b/addons/analytic_user_function/i18n/it.po index 3eee6f2985b..f2530273b70 100644 --- a/addons/analytic_user_function/i18n/it.po +++ b/addons/analytic_user_function/i18n/it.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-28 07:57+0000\n" +"PO-Revision-Date: 2011-01-01 07:11+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-29 04:57+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: analytic_user_function @@ -77,6 +77,20 @@ msgid "" "\n" " " msgstr "" +"\n" +"\n" +" Questo modulo vi permette di definire qual'è la funzione default di uno " +"specifico utente su un dato conto. Questo è molto utile quando un utente " +"codifica il suo timesheet: i valori sono recuperati e i campi sono compilati " +"automaticamente... ma la possibilità di cambiare questi valori è ancora " +"disponibile.\n" +"\n" +" Ovviamente se nessun dato è stato impostato per il conto attuale, è " +"fornito il valore di default, come al solito, prelevato dai dati impiegato " +"in modo che, questo modulo, risulti perfettamente compatibile con vecchie " +"configurazioni.\n" +"\n" +" " #. module: analytic_user_function #: model:ir.module.module,shortdesc:analytic_user_function.module_meta_information diff --git a/addons/base_action_rule/i18n/fr.po b/addons/base_action_rule/i18n/fr.po index ad6faf14a40..cbf30fe29c7 100644 --- a/addons/base_action_rule/i18n/fr.po +++ b/addons/base_action_rule/i18n/fr.po @@ -7,14 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-21 14:13+0000\n" -"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " -"\n" +"PO-Revision-Date: 2011-01-01 12:38+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:57+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_action_rule @@ -425,7 +424,7 @@ msgstr "%(partner_email)s = Courriel du partenaire" #. module: base_action_rule #: view:base.action.rule:0 msgid "%(object_date)s = Creation date" -msgstr "" +msgstr "%(object_date)s = Date de création" #. module: base_action_rule #: view:base.action.rule:0 diff --git a/addons/base_action_rule/i18n/ru.po b/addons/base_action_rule/i18n/ru.po index f551259efe6..2a63fa0ebfc 100644 --- a/addons/base_action_rule/i18n/ru.po +++ b/addons/base_action_rule/i18n/ru.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-11-26 22:25+0000\n" +"PO-Revision-Date: 2011-01-01 10:11+0000\n" "Last-Translator: Chertykov Denis \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:57+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_action_rule @@ -375,7 +375,7 @@ msgstr "%(object_description)s = Описание объекта" #. module: base_action_rule #: constraint:base.action.rule:0 msgid "Error: The mail is not well formated" -msgstr "" +msgstr "Ошибка: письмо плохо отформатировано" #. module: base_action_rule #: view:base.action.rule:0 @@ -410,7 +410,7 @@ msgstr "%(partner_email)s = Эл. почта партнера" #. module: base_action_rule #: view:base.action.rule:0 msgid "%(object_date)s = Creation date" -msgstr "" +msgstr "%(object_date)s = дата создания" #. module: base_action_rule #: view:base.action.rule:0 diff --git a/addons/base_calendar/i18n/es.po b/addons/base_calendar/i18n/es.po index 8e36af2bf51..cb0057c0254 100644 --- a/addons/base_calendar/i18n/es.po +++ b/addons/base_calendar/i18n/es.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-29 13:19+0000\n" -"Last-Translator: Borja López Soilán \n" +"PO-Revision-Date: 2011-01-01 14:51+0000\n" +"Last-Translator: Raimon Esteve (Zikzakmedia) \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_calendar @@ -1592,6 +1592,8 @@ msgid "" "Create specific calendar alarms that can be assigned to calendar events or " "meetings." msgstr "" +"Cree alarmas específicas del calendario que se puede asignar a los eventos " +"del calendario o reuniones." #. module: base_calendar #: field:calendar.alarm,trigger_date:0 @@ -1614,7 +1616,7 @@ msgstr "" #: selection:calendar.event,byday:0 #: selection:calendar.todo,byday:0 msgid "Fifth" -msgstr "" +msgstr "Quinto" #~ msgid "Set Exclude range" #~ msgstr "Fijar el rango de exclusión" diff --git a/addons/base_contact/i18n/ru.po b/addons/base_contact/i18n/ru.po index e64c6615cbe..234743e58b2 100644 --- a/addons/base_contact/i18n/ru.po +++ b/addons/base_contact/i18n/ru.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-12 01:22+0000\n" +"PO-Revision-Date: 2011-01-01 19:25+0000\n" "Last-Translator: Chertykov Denis \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:13+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_contact @@ -239,7 +239,7 @@ msgstr "Фамилия" #: view:res.partner:0 #: view:res.partner.contact:0 msgid "Communication" -msgstr "" +msgstr "Общение" #. module: base_contact #: field:base.contact.installer,config_logo:0 @@ -324,7 +324,7 @@ msgstr "Иначе эти подробности не будут видны в #. module: base_contact #: view:base.contact.installer:0 msgid "Configure" -msgstr "" +msgstr "Настройка" #. module: base_contact #: field:res.partner.contact,email:0 diff --git a/addons/base_iban/i18n/it.po b/addons/base_iban/i18n/it.po index e637d87ef9a..415df8e98f5 100644 --- a/addons/base_iban/i18n/it.po +++ b/addons/base_iban/i18n/it.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-11-22 07:28+0000\n" +"PO-Revision-Date: 2011-01-01 12:30+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:02+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:00+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_iban @@ -63,6 +63,12 @@ msgid "" "\n" " " msgstr "" +"\n" +"Questo moduli installa la gestione base per l'IBAN (International Bank " +"Account Number) il valore del conto è controllato per verificarne la sua " +"validità\n" +"\n" +" " #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_iban_field diff --git a/addons/base_module_quality/i18n/de.po b/addons/base_module_quality/i18n/de.po index b83967f099c..a4aa9d19ae5 100644 --- a/addons/base_module_quality/i18n/de.po +++ b/addons/base_module_quality/i18n/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-30 23:12+0000\n" +"PO-Revision-Date: 2010-12-31 10:20+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_module_quality diff --git a/addons/base_module_record/i18n/de.po b/addons/base_module_record/i18n/de.po index 3d040997337..a52a29a888c 100644 --- a/addons/base_module_record/i18n/de.po +++ b/addons/base_module_record/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-30 23:12+0000\n" +"PO-Revision-Date: 2010-12-31 09:44+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:24+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_module_record diff --git a/addons/base_module_record/i18n/it.po b/addons/base_module_record/i18n/it.po index 02d0917075b..01c6fed3156 100644 --- a/addons/base_module_record/i18n/it.po +++ b/addons/base_module_record/i18n/it.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-11-22 07:34+0000\n" +"PO-Revision-Date: 2011-01-01 13:13+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:13+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_module_record @@ -296,6 +296,30 @@ msgid "" "module.\n" " " msgstr "" +"\n" +"Questo moduli vi permette di creare un nuovo modulo senza sviluppo alcuno.\n" +"Esso registra tutte le operazioni sull'oggetto durante la sessione di " +"registrazione e\n" +"produce un modulo .ZIP. E' così possibile creare il vostro modulo personale " +"direttamente dal\n" +"client OpenERP.\n" +"\n" +"Questa versione lavora per creare e aggiornare registrazioni esistenti. Essa " +"ricalcola dipendenze e collegamenti per tutti i tipi di Widget (molti a uno, " +"molti a molti, ...).\n" +"Supporta inoltre i workflow e i dati demo/aggiornamento.\n" +"\n" +"Questo dovrebbe aiutare nella creazione semplice, riusabile e pubblicabile " +"dei moduli, \n" +"nella personalizzazione, nella configurazione e nell'inserimento di dati " +"demo / test.\n" +"\n" +"Come usarlo:\n" +"Lancia il wizard: Amministrazione/Personalizzazione/Creazione moduli/Esporta " +"personalizzazione come un modulo.\n" +"Seleziona il criterio data / ora della registrazione e gli oggetti " +"interessati e registra il modulo.\n" +" " #~ msgid "" #~ "The Object name must start with x_ and not contain any special character !" diff --git a/addons/base_report_creator/i18n/it.po b/addons/base_report_creator/i18n/it.po index 928101159e0..ed06b86d722 100644 --- a/addons/base_report_creator/i18n/it.po +++ b/addons/base_report_creator/i18n/it.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-11-22 07:27+0000\n" +"PO-Revision-Date: 2011-01-01 12:10+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:40+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_report_creator @@ -145,6 +145,8 @@ msgstr "Somma" #: constraint:base_report_creator.report:0 msgid "You must have to give calendar view's color,start date and delay." msgstr "" +"E' necessario fornire il colore di visualizzazione calendario, la data " +"iniziale e la durata periodo." #. module: base_report_creator #: field:base_report_creator.report,model_ids:0 @@ -246,6 +248,7 @@ msgstr "AND" #: constraint:base_report_creator.report:0 msgid "You can not display field which are not stored in Database." msgstr "" +"Non è possibile visualizzare campi che non sono memorizzati nel database." #. module: base_report_creator #: field:base_report_creator.report.fields,calendar_mode:0 @@ -384,6 +387,7 @@ msgstr "Annulla" #: constraint:base_report_creator.report:0 msgid "You can apply aggregate function to the non calculated field." msgstr "" +"Non è possibile applicare la funzione aggregativa ai campi non calcolati." #. module: base_report_creator #: field:base_report_creator.report,menu_id:0 @@ -416,6 +420,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the report " "without removing it." msgstr "" +"Se il campo attivo è impostato su \"falso\", vi permetterà di nascondere il " +"report senza rimuoverlo." #. module: base_report_creator #: selection:base_report_creator.report,view_graph_type:0 diff --git a/addons/base_report_designer/i18n/it.po b/addons/base_report_designer/i18n/it.po index 7d3e5520a2a..51c4ff40343 100644 --- a/addons/base_report_designer/i18n/it.po +++ b/addons/base_report_designer/i18n/it.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-11-22 07:25+0000\n" +"PO-Revision-Date: 2011-01-01 11:50+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:34+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_report_designer @@ -24,7 +24,7 @@ msgstr "base.report.sxw" #. module: base_report_designer #: view:base_report_designer.installer:0 msgid "OpenERP Report Designer Configuration" -msgstr "" +msgstr "Configurazione Report Designer di OpenERP" #. module: base_report_designer #: model:ir.module.module,shortdesc:base_report_designer.module_meta_information @@ -37,6 +37,8 @@ msgid "" "This plug-in allows you to create/modify OpenERP Reports into OpenOffice " "Writer." msgstr "" +"Questo plug in vi permette di creare/modificare i report OpenERP nel Writer " +"di OpenOffice" #. module: base_report_designer #: view:base.report.file.sxw:0 @@ -55,6 +57,15 @@ msgid "" "you can modify in OpenOffice.Once you have modified it you can\n" "upload the report using the same wizard.\n" msgstr "" +"\n" +"Questo modulo è usato in abbinamento al plug in OpenERP per OpenOffice.\n" +"E' necessario prima di tutto installare il plug in, che è disponibile su:\n" +"http://www.openerp.com\n" +"\n" +"Questo modulo aggiunge wizard per importare/esportare report .SXW che\n" +"sono modificabili in OpenOffice. Una volta che è stato modificato è anche " +"possibile\n" +"ricaricare il report in OpenERP utilizzando lo stesso wizard.\n" #. module: base_report_designer #: view:base.report.file.sxw:0 @@ -191,7 +202,7 @@ msgstr "Imagine" #. module: base_report_designer #: model:ir.actions.act_window,name:base_report_designer.action_view_base_report_sxw msgid "Base Report sxw" -msgstr "" +msgstr "Report base SXW" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_file_sxw diff --git a/addons/base_report_designer/i18n/zh_CN.po b/addons/base_report_designer/i18n/zh_CN.po index 3cdba9dbb17..f4730290ce7 100644 --- a/addons/base_report_designer/i18n/zh_CN.po +++ b/addons/base_report_designer/i18n/zh_CN.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-30 13:59+0000\n" +"PO-Revision-Date: 2010-12-31 10:45+0000\n" "Last-Translator: Wei \"oldrev\" Li \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:26+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_report_designer diff --git a/addons/base_setup/i18n/zh_CN.po b/addons/base_setup/i18n/zh_CN.po index cdd00867621..2be552ea151 100644 --- a/addons/base_setup/i18n/zh_CN.po +++ b/addons/base_setup/i18n/zh_CN.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-30 14:16+0000\n" +"PO-Revision-Date: 2010-12-31 10:59+0000\n" "Last-Translator: Wei \"oldrev\" Li \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:24+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_setup diff --git a/addons/base_vat/i18n/it.po b/addons/base_vat/i18n/it.po index a135d71f276..07c47c4d2a6 100644 --- a/addons/base_vat/i18n/it.po +++ b/addons/base_vat/i18n/it.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-11-22 07:37+0000\n" +"PO-Revision-Date: 2011-01-01 13:29+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:14+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: base_vat @@ -39,6 +39,14 @@ msgid "" "countries.\n" " " msgstr "" +"\n" +" Abilita la partita IVA per il partner. Controlla la validità del valore " +"fornito.\n" +"\n" +" Questo modulo segue i metofi definiti in http://sima-pc.com/nif.php per\n" +" controllare la validità del numero assegnato ai partner nei paesi " +"europei.\n" +" " #. module: base_vat #: model:ir.module.module,shortdesc:base_vat.module_meta_information @@ -48,7 +56,7 @@ msgstr "Base VAT - Per controllare la correttezza della Partita IVA" #. module: base_vat #: constraint:res.partner:0 msgid "Error ! You can not create recursive associated members." -msgstr "" +msgstr "Errore! Non è possibile creare membri associati ricorsivi." #. module: base_vat #: code:addons/base_vat/base_vat.py:0 diff --git a/addons/board/i18n/fr.po b/addons/board/i18n/fr.po index 8505fc7ca19..bc3d5db102a 100644 --- a/addons/board/i18n/fr.po +++ b/addons/board/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-30 20:00+0000\n" +"PO-Revision-Date: 2010-12-31 09:03+0000\n" "Last-Translator: lolivier \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:26+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: board diff --git a/addons/board/i18n/it.po b/addons/board/i18n/it.po index bd29d722d14..533d0f89484 100644 --- a/addons/board/i18n/it.po +++ b/addons/board/i18n/it.po @@ -7,14 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-12 09:19+0000\n" -"Last-Translator: Lorenzo Battistini - agilebg.com " -"\n" +"PO-Revision-Date: 2011-01-01 11:27+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:40+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: board @@ -229,7 +228,7 @@ msgstr "Menu Superiore" #. module: board #: view:res.log.report:0 msgid " Month-1 " -msgstr "" +msgstr " Mese-1 " #. module: board #: selection:res.log.report,month:0 diff --git a/addons/board/i18n/zh_CN.po b/addons/board/i18n/zh_CN.po index aa8da752a9b..89a048e69c4 100644 --- a/addons/board/i18n/zh_CN.po +++ b/addons/board/i18n/zh_CN.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-11 23:27+0000\n" -"Last-Translator: ZhangCheng \n" +"PO-Revision-Date: 2011-01-01 12:57+0000\n" +"Last-Translator: Wei \"oldrev\" Li \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:40+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: board @@ -24,7 +24,7 @@ msgstr "" #. module: board #: model:ir.model,name:board.model_board_menu_create msgid "Menu Create" -msgstr "" +msgstr "菜单创建" #. module: board #: view:board.note:0 @@ -60,7 +60,7 @@ msgstr "用户错误!" #: model:ir.actions.act_window,name:board.open_board_administration_form #: model:ir.ui.menu,name:board.menu_board_admin msgid "Administration Dashboard" -msgstr "" +msgstr "管理员仪表盘" #. module: board #: view:board.note:0 @@ -73,19 +73,19 @@ msgstr "备注" #: view:board.note:0 #: view:res.log.report:0 msgid "Group By..." -msgstr "" +msgstr "分组于" #. module: board #: model:ir.model,name:board.model_board_board msgid "Board" -msgstr "" +msgstr "仪表盘" #. module: board #: view:board.board:0 #: model:ir.actions.act_window,name:board.board_weekly_res_log_report_action #: view:res.log.report:0 msgid "Weekly Global Activity" -msgstr "" +msgstr "每周全局活动" #. module: board #: field:board.board.line,name:0 @@ -95,7 +95,7 @@ msgstr "标题" #. module: board #: field:res.log.report,nbr:0 msgid "# of Entries" -msgstr "" +msgstr "# 条" #. module: board #: view:res.log.report:0 @@ -118,7 +118,7 @@ msgstr "" #. module: board #: view:res.log.report:0 msgid "Log Analysis" -msgstr "" +msgstr "日志分析" #. module: board #: model:ir.actions.act_window,name:board.action_view_board_list_form @@ -140,7 +140,7 @@ msgstr "八月" #: view:board.board:0 #: model:ir.actions.act_window,name:board.action_user_connection_tree msgid "User Connections" -msgstr "" +msgstr "用户连接列表" #. module: board #: field:res.log.report,creation_date:0 diff --git a/addons/caldav/i18n/de.po b/addons/caldav/i18n/de.po index c4ef051dd52..df950d85f1b 100644 --- a/addons/caldav/i18n/de.po +++ b/addons/caldav/i18n/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-30 23:14+0000\n" +"PO-Revision-Date: 2010-12-31 09:27+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: caldav diff --git a/addons/caldav/i18n/fr.po b/addons/caldav/i18n/fr.po index f36dcf54a0c..7f4c70f1b09 100644 --- a/addons/caldav/i18n/fr.po +++ b/addons/caldav/i18n/fr.po @@ -8,14 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-20 00:07+0000\n" -"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " -"\n" +"PO-Revision-Date: 2011-01-01 11:48+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:57+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: caldav @@ -46,7 +45,7 @@ msgstr "" #. module: caldav #: view:calendar.event.export:0 msgid "_Close" -msgstr "" +msgstr "_Fermer" #. module: caldav #: selection:basic.calendar.attributes,type:0 @@ -64,12 +63,12 @@ msgstr "" #: selection:basic.calendar.attributes,type:0 #: selection:basic.calendar.lines,name:0 msgid "TODO" -msgstr "" +msgstr "Á faire" #. module: caldav #: field:basic.calendar.lines,object_id:0 msgid "Object" -msgstr "" +msgstr "Objet" #. module: caldav #: selection:basic.calendar.fields,fn:0 @@ -80,7 +79,7 @@ msgstr "" #: view:calendar.event.import:0 #: view:calendar.event.subscribe:0 msgid "Ok" -msgstr "" +msgstr "Ok" #. module: caldav #: code:addons/caldav/calendar.py:0 @@ -93,20 +92,20 @@ msgstr "" #. module: caldav #: field:calendar.event.export,name:0 msgid "File name" -msgstr "" +msgstr "Nom du fichier" #. module: caldav #: code:addons/caldav/wizard/calendar_event_subscribe.py:0 #, python-format msgid "Error!" -msgstr "" +msgstr "Erreur !" #. module: caldav #: code:addons/caldav/calendar.py:0 #: code:addons/caldav/wizard/calendar_event_import.py:0 #, python-format msgid "Warning !" -msgstr "" +msgstr "Avertissement !" #. module: caldav #: view:calendar.event.export:0 @@ -122,7 +121,7 @@ msgstr "" #: code:addons/caldav/calendar.py:0 #, python-format msgid "Can not create line \"%s\" more than once" -msgstr "" +msgstr "Impossible de créer la ligne \"%s\" plus d'une fois" #. module: caldav #: view:basic.calendar:0 @@ -192,7 +191,7 @@ msgstr "Sauvegarder au format .ics" #: code:addons/caldav/calendar.py:0 #, python-format msgid "Error !" -msgstr "" +msgstr "Erreur !" #. module: caldav #: model:ir.model,name:caldav.model_basic_calendar_attributes @@ -229,7 +228,7 @@ msgstr "" #. module: caldav #: field:basic.calendar,create_date:0 msgid "Created Date" -msgstr "" +msgstr "Date de création" #. module: caldav #: view:basic.calendar:0 @@ -239,7 +238,7 @@ msgstr "" #. module: caldav #: model:ir.model,name:caldav.model_document_directory msgid "Directory" -msgstr "" +msgstr "Répertoire" #. module: caldav #: field:calendar.event.subscribe,url_path:0 @@ -249,12 +248,12 @@ msgstr "" #. module: caldav #: field:basic.calendar.lines,domain:0 msgid "Domain" -msgstr "" +msgstr "Domaine" #. module: caldav #: field:basic.calendar,user_id:0 msgid "Owner" -msgstr "" +msgstr "Propriétaire" #. module: caldav #: view:basic.calendar:0 @@ -262,7 +261,7 @@ msgstr "" #: field:basic.calendar.lines,calendar_id:0 #: model:ir.ui.menu,name:caldav.menu_calendar msgid "Calendar" -msgstr "" +msgstr "Calendrier" #. module: caldav #: code:addons/caldav/calendar.py:0 @@ -290,7 +289,7 @@ msgstr "" #. module: caldav #: view:calendar.event.subscribe:0 msgid "Message..." -msgstr "" +msgstr "Message..." #. module: caldav #: view:basic.calendar:0 @@ -323,7 +322,7 @@ msgstr "" #: model:ir.actions.act_window,name:caldav.action_caldav_form #: model:ir.ui.menu,name:caldav.menu_caldav_directories msgid "Calendars" -msgstr "" +msgstr "Calendriers" #. module: caldav #: field:basic.calendar,collection_id:0 @@ -333,7 +332,7 @@ msgstr "" #. module: caldav #: sql_constraint:document.directory:0 msgid "The directory name must be unique !" -msgstr "" +msgstr "Le nom du répertoire doit être unique !" #. module: caldav #: code:addons/caldav/wizard/calendar_event_subscribe.py:0 @@ -349,7 +348,7 @@ msgstr "" #. module: caldav #: field:basic.calendar.fields,expr:0 msgid "Expression" -msgstr "" +msgstr "Expression" #. module: caldav #: model:ir.model,name:caldav.model_basic_calendar_attendee @@ -380,7 +379,7 @@ msgstr "" #. module: caldav #: view:basic.calendar:0 msgid "Other Info" -msgstr "" +msgstr "Autres Informations" #. module: caldav #: view:calendar.event.subscribe:0 @@ -397,12 +396,12 @@ msgstr "" #. module: caldav #: field:basic.calendar.fields,fn:0 msgid "Function" -msgstr "" +msgstr "Fonction" #. module: caldav #: view:basic.calendar:0 msgid "Description" -msgstr "" +msgstr "Description" #. module: caldav #: help:basic.calendar.alias,cal_line_id:0 @@ -417,7 +416,7 @@ msgstr "" #. module: caldav #: view:calendar.event.import:0 msgid "_Import" -msgstr "" +msgstr "_Importer" #. module: caldav #: field:basic.calendar,write_date:0 @@ -432,7 +431,7 @@ msgstr "" #. module: caldav #: selection:basic.calendar.fields,fn:0 msgid "Interval in hours" -msgstr "" +msgstr "Intervalle (en heures)" #. module: caldav #: view:calendar.event.subscribe:0 @@ -449,13 +448,13 @@ msgstr "" #: field:basic.calendar.attributes,name:0 #: field:basic.calendar.fields,name:0 msgid "Name" -msgstr "" +msgstr "Nom" #. module: caldav #: selection:basic.calendar.attributes,type:0 #: selection:basic.calendar.lines,name:0 msgid "Alarm" -msgstr "" +msgstr "Rappel" #. module: caldav #: model:ir.model,name:caldav.model_basic_calendar_alarm @@ -502,12 +501,12 @@ msgstr "" #. module: caldav #: field:basic.calendar,calendar_color:0 msgid "Color" -msgstr "" +msgstr "Couleur" #. module: caldav #: view:basic.calendar:0 msgid "Todo" -msgstr "" +msgstr "À faire" #. module: caldav #: model:ir.model,name:caldav.model_basic_calendar_fields diff --git a/addons/caldav/i18n/it.po b/addons/caldav/i18n/it.po index bbea214de58..2a99e0d2a75 100644 --- a/addons/caldav/i18n/it.po +++ b/addons/caldav/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-11-30 18:49+0000\n" +"PO-Revision-Date: 2011-01-01 13:26+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:58+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: caldav @@ -56,7 +56,7 @@ msgstr "Partecipante" #. module: caldav #: sql_constraint:basic.calendar.fields:0 msgid "Can not map a field more than once" -msgstr "" +msgstr "Non è possibile mappare un campo più di una volta" #. module: caldav #: selection:basic.calendar,type:0 @@ -269,12 +269,14 @@ msgstr "Calendario" msgid "" "Please install python-vobject from http://vobject.skyhouseconsulting.com/" msgstr "" +"Per favore installare python-vobject da " +"http://vobject.skyhouseconsulting.com/" #. module: caldav #: code:addons/caldav/wizard/calendar_event_import.py:0 #, python-format msgid "Invalid format of the ics, file can not be imported" -msgstr "" +msgstr "Formato non valido dell ics, il file non può essere importato" #. module: caldav #: field:basic.calendar.fields,field_id:0 @@ -478,7 +480,7 @@ msgstr "Esporta file .ICS" #: code:addons/caldav/calendar.py:0 #, python-format msgid "vobject Import Error!" -msgstr "" +msgstr "Errore importazione vobject!" #. module: caldav #: view:basic.calendar:0 diff --git a/addons/claim_from_delivery/i18n/fr.po b/addons/claim_from_delivery/i18n/fr.po index 1b767834e16..0d711631a19 100644 --- a/addons/claim_from_delivery/i18n/fr.po +++ b/addons/claim_from_delivery/i18n/fr.po @@ -7,20 +7,19 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-04 08:48+0000\n" -"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " -"\n" +"PO-Revision-Date: 2011-01-01 13:04+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:54+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: claim_from_delivery #: model:ir.actions.act_window,name:claim_from_delivery.action_claim_from_delivery msgid "Claim" -msgstr "" +msgstr "Réclamation" #. module: claim_from_delivery #: model:ir.module.module,description:claim_from_delivery.module_meta_information diff --git a/addons/crm/i18n/de.po b/addons/crm/i18n/de.po index 8a215d07bc3..73b63fb09ca 100644 --- a/addons/crm/i18n/de.po +++ b/addons/crm/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-30 23:32+0000\n" +"PO-Revision-Date: 2010-12-31 10:03+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:23+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm diff --git a/addons/crm/i18n/fr.po b/addons/crm/i18n/fr.po index f854195e3ad..8a75fd1dfdb 100644 --- a/addons/crm/i18n/fr.po +++ b/addons/crm/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-30 14:20+0000\n" -"Last-Translator: Aline (OpenERP) \n" +"PO-Revision-Date: 2011-01-01 09:13+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:23+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm @@ -1735,6 +1735,11 @@ msgid "" "mainly used by the sales manager in order to do the periodic review with the " "teams of the sales pipeline." msgstr "" +"L'analyse des opportunités donne un accès instantané à vos opportunités avec " +"des informations telles que les recettes attendues, les coûts prévus, les " +"dépassements de délais ou le nombre d'interactions par opportunités. Ce " +"rapport est principalement utilisé par le directeur des ventes pour les " +"revues de compte périodiques avec les équipes commerciales." #. module: crm #: field:crm.case.categ,name:0 @@ -1753,6 +1758,10 @@ msgid "" "contact you get with a partner. From the call record, you can trigger a " "request for another call, a meeting or a business opportunity." msgstr "" +"L'outil \"Appels entrants\" enregistre les appels entrants à la volée. " +"Chaque appel vous apparaîtra sur le formulaire du partenaire afin de tracer " +"chaque contact obtenu. A partir de l'appel enregidté, on peut programmer un " +"nouvel appel, une réunion ou une opportunité d'affaires." #. module: crm #: field:crm.meeting,alarm_id:0 @@ -1998,6 +2007,10 @@ msgid "" "opportunities. You can also synchronize meetings with your mobile phone " "using the caldav interface." msgstr "" +"Le calendrier des réunions est partagé entre les équipes de vente et " +"pleinement intégré avec d'autres applications comme les congés ou les " +"opportunités d'affaires. On peut également synchroniser des réunions avec " +"les téléphones mobiles en utilisant l'interface CalDAV." #. module: crm #: model:ir.model,name:crm.model_crm_phonecall2opportunity @@ -3008,6 +3021,8 @@ msgid "" "'Meeting Invitations' allows you to create and manage the meeting " "invitations sent/to be sent to your colleagues/partners." msgstr "" +"\"Invitations à réunion\" permet de créer et de gérer les invitations aux " +"réunions envoyées ou à envoyer aux collaborateurs et aux partenaires." #. module: crm #: view:board.board:0 @@ -3039,6 +3054,10 @@ msgid "" "several criteria and drill down the information, by adding more groups in " "the report." msgstr "" +"A partir de ce rapport, vous pouvez analyser les performances de votre " +"équipe de ventes, selon leurs appels téléphoniques. Vous pouvez grouper ou " +"filtrer les informations en fonction de plusieurs critères et extraire les " +"informations, en ajoutant plus de groupes dans le rapport." #. module: crm #: help:crm.segmentation,som_interval_decrease:0 diff --git a/addons/crm/i18n/pt_BR.po b/addons/crm/i18n/pt_BR.po index 13aa60718bf..80d8c956542 100644 --- a/addons/crm/i18n/pt_BR.po +++ b/addons/crm/i18n/pt_BR.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: renato.lima@akretion.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-29 14:46+0000\n" +"PO-Revision-Date: 2010-12-31 10:21+0000\n" "Last-Translator: Cristiano Korndörfer \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:24+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm diff --git a/addons/crm/i18n/ru.po b/addons/crm/i18n/ru.po index e0e628ab299..b321463f385 100644 --- a/addons/crm/i18n/ru.po +++ b/addons/crm/i18n/ru.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-29 06:57+0000\n" +"PO-Revision-Date: 2011-01-01 10:09+0000\n" "Last-Translator: Chertykov Denis \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:24+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm @@ -634,6 +634,8 @@ msgid "" "Allows you to link your e-mail to OpenERP's documents. You can attach it to " "any existing one in OpenERP or create a new one." msgstr "" +"Позволяет связать эл. почту с документами OpenERP. Вы можете прикрепить его " +"к любому существующему в OpenERP или создать новый." #. module: crm #: view:crm.case.categ:0 @@ -660,7 +662,7 @@ msgstr "Ошибка: письмо плохо отформатировано" #. module: crm #: view:crm.segmentation:0 msgid "Profiling Options" -msgstr "" +msgstr "Опции профилирования" #. module: crm #: view:crm.phonecall.report:0 diff --git a/addons/crm_caldav/i18n/fr.po b/addons/crm_caldav/i18n/fr.po index 10544e2c84a..91ec8548f5d 100644 --- a/addons/crm_caldav/i18n/fr.po +++ b/addons/crm_caldav/i18n/fr.po @@ -8,14 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-04 09:46+0000\n" -"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " -"\n" +"PO-Revision-Date: 2011-01-01 12:15+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:58+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm_caldav @@ -35,6 +34,9 @@ msgid "" " New Futures in Meeting:\n" " * Share meeting with other calendar clients like sunbird\n" msgstr "" +"\n" +" Nouvelles fonctionnalités pour les rendez-vous:\n" +" *Partager les réunions avec d'autres outils d'agenda comme sunbird\n" #~ msgid "" #~ "The Object name must start with x_ and not contain any special character !" diff --git a/addons/crm_claim/i18n/fr.po b/addons/crm_claim/i18n/fr.po index d16b0797cd2..cc19f6f27cf 100644 --- a/addons/crm_claim/i18n/fr.po +++ b/addons/crm_claim/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-21 14:09+0000\n" -"Last-Translator: lolivier \n" +"PO-Revision-Date: 2011-01-01 11:41+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:56+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm_claim @@ -136,7 +136,7 @@ msgstr "Préventive" #. module: crm_claim #: model:crm.case.stage,name:crm_claim.stage_claim2 msgid "Fixed" -msgstr "" +msgstr "Résolu" #. module: crm_claim #: field:crm.claim,partner_address_id:0 @@ -456,7 +456,7 @@ msgstr "Utilisateur" #. module: crm_claim #: model:crm.case.stage,name:crm_claim.stage_claim5 msgid "Awaiting Response" -msgstr "" +msgstr "En attente de réponse" #. module: crm_claim #: model:ir.actions.act_window,name:crm_claim.crm_claim_categ_action diff --git a/addons/crm_claim/i18n/it.po b/addons/crm_claim/i18n/it.po index ff784b1c541..5458da5cc48 100644 --- a/addons/crm_claim/i18n/it.po +++ b/addons/crm_claim/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:43+0000\n" -"PO-Revision-Date: 2010-12-29 07:28+0000\n" +"PO-Revision-Date: 2011-01-01 07:08+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm_claim @@ -324,7 +324,7 @@ msgstr "Accettato come reclamo" #. module: crm_claim #: model:crm.case.resource.type,name:crm_claim.type_claim1 msgid "Corrective" -msgstr "" +msgstr "Correttivo" #. module: crm_claim #: selection:crm.claim.report,month:0 diff --git a/addons/crm_helpdesk/i18n/de.po b/addons/crm_helpdesk/i18n/de.po index a2d5cbcafaa..f2ec4ae68c4 100644 --- a/addons/crm_helpdesk/i18n/de.po +++ b/addons/crm_helpdesk/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-30 23:52+0000\n" +"PO-Revision-Date: 2010-12-31 10:13+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/fr.po b/addons/crm_helpdesk/i18n/fr.po index 8ce10697089..ed515ce4b43 100644 --- a/addons/crm_helpdesk/i18n/fr.po +++ b/addons/crm_helpdesk/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-30 19:55+0000\n" +"PO-Revision-Date: 2010-12-31 10:37+0000\n" "Last-Translator: lolivier \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm_helpdesk diff --git a/addons/crm_profiling/i18n/de.po b/addons/crm_profiling/i18n/de.po index 761af2b808e..99be91f0cdf 100644 --- a/addons/crm_profiling/i18n/de.po +++ b/addons/crm_profiling/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-30 09:23+0000\n" +"PO-Revision-Date: 2010-12-31 10:12+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: crm_profiling diff --git a/addons/decimal_precision/i18n/fr.po b/addons/decimal_precision/i18n/fr.po index bf86738ebb7..c035f98e73c 100644 --- a/addons/decimal_precision/i18n/fr.po +++ b/addons/decimal_precision/i18n/fr.po @@ -7,14 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-16 17:46+0000\n" -"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " -"\n" +"PO-Revision-Date: 2011-01-01 13:17+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:53+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: decimal_precision @@ -31,7 +30,7 @@ msgstr "Précision décimale" #: model:ir.actions.act_window,name:decimal_precision.action_decimal_precision_form #: model:ir.ui.menu,name:decimal_precision.menu_decimal_precision_form msgid "Decimal Accuracy Definitions" -msgstr "" +msgstr "Définitions de la précisions décimale" #. module: decimal_precision #: model:ir.module.module,description:decimal_precision.module_meta_information @@ -43,6 +42,12 @@ msgid "" "\n" "The decimal precision is configured per company.\n" msgstr "" +"\n" +"Ce module autorise la configuration du nombre de décimale pour les " +"différents cas\n" +"d'usage: comptabilité, ventes, achats ...\n" +"\n" +"La précision du nombre de décimal est confgurable par société.\n" #. module: decimal_precision #: field:decimal.precision,name:0 diff --git a/addons/delivery/i18n/fr.po b/addons/delivery/i18n/fr.po index 8b18efa0aab..80d0151f20c 100644 --- a/addons/delivery/i18n/fr.po +++ b/addons/delivery/i18n/fr.po @@ -7,14 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-04 08:15+0000\n" -"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " -"\n" +"PO-Revision-Date: 2011-01-01 13:41+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:04+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:00+0000\n" "X-Generator: Launchpad (build Unknown)\n" #~ msgid "Invalid XML for View Architecture!" @@ -180,7 +179,7 @@ msgstr "Partenaire" #. module: delivery #: model:ir.model,name:delivery.model_sale_order msgid "Sales Order" -msgstr "" +msgstr "Commande de ventes" #. module: delivery #: model:ir.model,name:delivery.model_delivery_grid @@ -417,7 +416,7 @@ msgstr "" #. module: delivery #: selection:delivery.grid.line,operator:0 msgid "<=" -msgstr "" +msgstr "<=" #. module: delivery #: field:delivery.grid.line,standard_price:0 diff --git a/addons/event/i18n/fr.po b/addons/event/i18n/fr.po index 8b1deead3cc..095413bd73a 100644 --- a/addons/event/i18n/fr.po +++ b/addons/event/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-30 14:59+0000\n" -"Last-Translator: Aline (OpenERP) \n" +"PO-Revision-Date: 2010-12-31 10:32+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:23+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: event diff --git a/addons/event/i18n/it.po b/addons/event/i18n/it.po index db751500e48..b3e20be6961 100644 --- a/addons/event/i18n/it.po +++ b/addons/event/i18n/it.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-29 06:30+0000\n" -"Last-Translator: Nicola Riolini - Micronaet \n" +"PO-Revision-Date: 2010-12-31 10:58+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:23+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: event diff --git a/addons/event_project/i18n/fr.po b/addons/event_project/i18n/fr.po index e7d273588ca..14d0f7b9bdd 100644 --- a/addons/event_project/i18n/fr.po +++ b/addons/event_project/i18n/fr.po @@ -7,14 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-16 17:31+0000\n" -"Last-Translator: Maxime Chambreuil (http://www.savoirfairelinux.com) " -"\n" +"PO-Revision-Date: 2011-01-01 13:09+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:45+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: event_project @@ -81,7 +80,7 @@ msgstr "Tâches" #. module: event_project #: view:event.event:0 msgid "All tasks" -msgstr "" +msgstr "Toutes les tâches" #. module: event_project #: model:ir.module.module,shortdesc:event_project.module_meta_information diff --git a/addons/fetchmail/i18n/fr.po b/addons/fetchmail/i18n/fr.po index c6b082f16a5..a7685387e52 100644 --- a/addons/fetchmail/i18n/fr.po +++ b/addons/fetchmail/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-29 09:41+0000\n" +"PO-Revision-Date: 2011-01-01 08:23+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: fetchmail @@ -22,6 +22,9 @@ msgid "" "Warning! Record for selected Model can not be created\n" "Please choose valid Model" msgstr "" +"Avertissement! l'enregistrement pour le modèle sélectionné ne peut être " +"créer\n" +"Veuillez choisir un modèle valide" #. module: fetchmail #: selection:email.server,state:0 @@ -31,12 +34,12 @@ msgstr "Confirmé" #. module: fetchmail #: view:email.server:0 msgid "Confirm" -msgstr "" +msgstr "Confirmer" #. module: fetchmail #: view:email.server:0 msgid "Group By..." -msgstr "" +msgstr "Grouper par ..." #. module: fetchmail #: view:email.server:0 @@ -47,7 +50,7 @@ msgstr "État" #. module: fetchmail #: view:email.server:0 msgid "POP" -msgstr "" +msgstr "POP" #. module: fetchmail #: selection:email.server,state:0 @@ -62,7 +65,7 @@ msgstr "Nom de l'utilisateur" #. module: fetchmail #: view:email.server:0 msgid "Type" -msgstr "" +msgstr "Type" #. module: fetchmail #: view:email.server:0 @@ -86,6 +89,8 @@ msgid "" "OpenObject Model. Generates a record of this model.\n" "Select Object with message_new attrbutes." msgstr "" +"Model OpenObject. Générer un enregistrement pour ce modèle.\n" +"Sélectionner un objet avec l'attribut message_new" #. module: fetchmail #: field:email.server,attach:0 @@ -95,7 +100,7 @@ msgstr "Ajouter des pièces jointes ?" #. module: fetchmail #: view:email.server:0 msgid "# of emails" -msgstr "" +msgstr "# de courriels" #. module: fetchmail #: model:ir.actions.act_window,name:fetchmail.act_server_history @@ -125,12 +130,12 @@ msgstr "Mot de passe" #. module: fetchmail #: view:mailgate.message:0 msgid "Emails" -msgstr "" +msgstr "Courriels" #. module: fetchmail #: view:email.server:0 msgid "Search Email Servers" -msgstr "" +msgstr "Rechercher des serveurs de mail" #. module: fetchmail #: view:email.server:0 @@ -166,7 +171,7 @@ msgstr "Mettre à l'état \"Brouillon\"" #: field:email.server,message_ids:0 #: model:ir.actions.act_window,name:fetchmail.action_view_mail_message_emails msgid "Messages" -msgstr "" +msgstr "Messages" #. module: fetchmail #: model:ir.ui.menu,name:fetchmail.menu_action_fetchmail_server_tree @@ -181,12 +186,12 @@ msgstr "Serveur" #. module: fetchmail #: field:email.server,active:0 msgid "Active" -msgstr "" +msgstr "Actif" #. module: fetchmail #: view:email.server:0 msgid "Process Parameter" -msgstr "" +msgstr "Paramètre du processus" #. module: fetchmail #: field:email.server,is_ssl:0 @@ -207,7 +212,7 @@ msgstr "Modèle" #. module: fetchmail #: view:email.server:0 msgid "IMAP" -msgstr "" +msgstr "IMAP" #. module: fetchmail #: view:email.server:0 @@ -219,6 +224,7 @@ msgstr "Serveur POP/IMAP" #: constraint:email.server:0 msgid "Warning! Can't have duplicate server configuration!" msgstr "" +"Avertissement! vous ne pouvez pas dupliquer une configuration de serveur!" #. module: fetchmail #: field:email.server,type:0 @@ -239,7 +245,7 @@ msgstr "Information du serveur" #. module: fetchmail #: help:email.server,attach:0 msgid "Fetches mail with attachments if true." -msgstr "" +msgstr "Récupérer les mails avec attachements si vrai" #. module: fetchmail #: selection:email.server,type:0 @@ -274,7 +280,7 @@ msgstr "" #. module: fetchmail #: view:email.server:0 msgid "SSL" -msgstr "" +msgstr "SSL" #. module: fetchmail #: help:email.server,action_id:0 @@ -282,6 +288,8 @@ msgid "" "An Email Server Action. It will be run whenever an e-mail is fetched from " "server." msgstr "" +"Un courriel du Server Action. Il sera lancé lorsqu'un email sera récupérer " +"sur le serveur." #. module: fetchmail #: help:email.server,priority:0 @@ -291,7 +299,7 @@ msgstr "Priorité entre 0 et 10, qui définit l'ordre de traitement" #. module: fetchmail #: field:email.server,action_id:0 msgid "Email Server Action" -msgstr "" +msgstr "Courriel du Server Action" #. module: fetchmail #: field:email.server,priority:0 diff --git a/addons/fetchmail/i18n/it.po b/addons/fetchmail/i18n/it.po index 7ff8ed7cb22..3649c4818b3 100644 --- a/addons/fetchmail/i18n/it.po +++ b/addons/fetchmail/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-29 06:24+0000\n" -"Last-Translator: Nicola Riolini - Micronaet \n" +"PO-Revision-Date: 2010-12-31 10:23+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: fetchmail diff --git a/addons/hr/i18n/fr.po b/addons/hr/i18n/fr.po index 020ee2cacd8..394ca791e7d 100644 --- a/addons/hr/i18n/fr.po +++ b/addons/hr/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-21 04:26+0000\n" -"Last-Translator: Quentin THEURET \n" +"PO-Revision-Date: 2011-01-01 11:37+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:41+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr @@ -570,6 +570,13 @@ msgid "" " * HR Jobs\n" " " msgstr "" +"\n" +" Module de gestion des resources humaines. Vous pouvez gérer:\n" +" * Les employés et les hiérarchies : vous pouvez lier un employé avec un " +"utilisateur et mettre en place les hiérarchies\n" +" * Les départements liés aux RH\n" +" * Les fonctions des RH\n" +" " #. module: hr #: model:process.transition,note:hr.process_transition_contactofemployee0 @@ -648,7 +655,7 @@ msgstr "Information personnelle" #. module: hr #: field:hr.employee,passport_id:0 msgid "Passport No" -msgstr "" +msgstr "N° de passeport" #. module: hr #: view:res.users:0 diff --git a/addons/hr/i18n/hr.po b/addons/hr/i18n/hr.po index 5c6a2167612..9cf7876c04c 100644 --- a/addons/hr/i18n/hr.po +++ b/addons/hr/i18n/hr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-28 21:59+0000\n" -"Last-Translator: Dejan Radočaj \n" +"PO-Revision-Date: 2011-01-01 09:04+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: <>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-29 04:56+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" "Language: hr\n" @@ -565,6 +565,13 @@ msgid "" " * HR Jobs\n" " " msgstr "" +"\n" +" Modul za upravljanje ljudskim resursima. Možete upravljati:\n" +"* Djelatnicima i hijerarhijama : Možete definirati djelatnika sa korisnikom " +"i prikazati hijerarhije\n" +"* Odjeli HR\n" +"* Poslovi HR\n" +" " #. module: hr #: model:process.transition,note:hr.process_transition_contactofemployee0 @@ -643,7 +650,7 @@ msgstr "Osobni podaci" #. module: hr #: field:hr.employee,passport_id:0 msgid "Passport No" -msgstr "" +msgstr "Broj putovnice" #. module: hr #: view:res.users:0 diff --git a/addons/hr_holidays/i18n/it.po b/addons/hr_holidays/i18n/it.po index d234110026d..8dd54d9385f 100644 --- a/addons/hr_holidays/i18n/it.po +++ b/addons/hr_holidays/i18n/it.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-29 06:32+0000\n" -"Last-Translator: Nicola Riolini - Micronaet \n" +"PO-Revision-Date: 2010-12-31 10:31+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:26+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_holidays diff --git a/addons/hr_payroll_account/i18n/it.po b/addons/hr_payroll_account/i18n/it.po new file mode 100644 index 00000000000..b80c143ca80 --- /dev/null +++ b/addons/hr_payroll_account/i18n/it.po @@ -0,0 +1,324 @@ +# Italian translation for openobject-addons +# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2010-12-21 19:44+0000\n" +"PO-Revision-Date: 2011-01-01 17:08+0000\n" +"Last-Translator: Nicola Riolini - Micronaet \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. module: hr_payroll_account +#: field:hr.payslip,move_line_ids:0 +msgid "Accounting Lines" +msgstr "" + +#. module: hr_payroll_account +#: field:hr.payroll.register,bank_journal_id:0 +#: field:hr.payslip,bank_journal_id:0 +msgid "Bank Journal" +msgstr "" + +#. module: hr_payroll_account +#: model:ir.model,name:hr_payroll_account.model_hr_contibution_register_line +msgid "Contribution Register Line" +msgstr "" + +#. module: hr_payroll_account +#: model:ir.model,name:hr_payroll_account.model_hr_contibution_register +msgid "Contribution Register" +msgstr "" + +#. module: hr_payroll_account +#: help:hr.employee,analytic_account:0 +msgid "Analytic Account for Salary Analysis" +msgstr "" + +#. module: hr_payroll_account +#: field:hr.contibution.register.line,period_id:0 +msgid "Period" +msgstr "Periodo" + +#. module: hr_payroll_account +#: model:ir.model,name:hr_payroll_account.model_hr_employee +msgid "Employee" +msgstr "Impiegato" + +#. module: hr_payroll_account +#: view:hr.payslip:0 +msgid "Other Informations" +msgstr "Altre informazioni" + +#. module: hr_payroll_account +#: field:hr.payroll.register,journal_id:0 +#: field:hr.payslip,journal_id:0 +msgid "Expanse Journal" +msgstr "" + +#. module: hr_payroll_account +#: field:hr.employee,salary_account:0 +msgid "Salary Account" +msgstr "Conto stipendio" + +#. module: hr_payroll_account +#: model:ir.model,name:hr_payroll_account.model_hr_payroll_register +msgid "Payroll Register" +msgstr "" + +#. module: hr_payroll_account +#: model:ir.model,name:hr_payroll_account.model_hr_payslip_account_move +msgid "Account Move Link to Pay Slip" +msgstr "" + +#. module: hr_payroll_account +#: view:hr.payslip:0 +msgid "Description" +msgstr "Descrizione" + +#. module: hr_payroll_account +#: code:addons/hr_payroll_account/hr_payroll_account.py:0 +#, python-format +msgid "Please Confirm all Expense Invoice appear for Reimbursement" +msgstr "" +"Per favore confermare tutte le fatture di spesa che compaiono nei rimborsi" + +#. module: hr_payroll_account +#: code:addons/hr_payroll_account/hr_payroll_account.py:0 +#, python-format +msgid "Please defined partner in bank account for %s !" +msgstr "" + +#. module: hr_payroll_account +#: view:hr.payslip:0 +msgid "Accounting Informations" +msgstr "" + +#. module: hr_payroll_account +#: code:addons/hr_payroll_account/hr_payroll_account.py:0 +#, python-format +msgid "Please defined bank account for %s !" +msgstr "Per favore definire il conto banca per %s!" + +#. module: hr_payroll_account +#: model:ir.module.module,description:hr_payroll_account.module_meta_information +msgid "" +"Generic Payroll system Integrated with Accountings\n" +" * Expanse Encoding\n" +" * Payment Encoding\n" +" * Comany Contribution Managemet\n" +" " +msgstr "" + +#. module: hr_payroll_account +#: model:ir.module.module,shortdesc:hr_payroll_account.module_meta_information +msgid "Human Resource Payroll Accounting" +msgstr "" + +#. module: hr_payroll_account +#: view:hr.payslip:0 +#: field:hr.payslip,move_payment_ids:0 +msgid "Payment Lines" +msgstr "" + +#. module: hr_payroll_account +#: code:addons/hr_payroll_account/hr_payroll_account.py:0 +#, python-format +msgid "Please define fiscal year for perticular contract" +msgstr "" + +#. module: hr_payroll_account +#: help:hr.employee,property_bank_account:0 +msgid "Select Bank Account from where Salary Expanse will be Paid" +msgstr "" + +#. module: hr_payroll_account +#: help:hr.employee,salary_account:0 +msgid "Expanse account when Salary Expanse will be recorded" +msgstr "" + +#. module: hr_payroll_account +#: constraint:hr.employee:0 +msgid "Error ! You cannot create recursive Hierarchy of Employees." +msgstr "Errore! Non è possibile creare gerarchie ricorsive di impiegati." + +#. module: hr_payroll_account +#: view:hr.payslip:0 +msgid "Account Lines" +msgstr "" + +#. module: hr_payroll_account +#: field:hr.contibution.register,account_id:0 +#: field:hr.holidays.status,account_id:0 +#: field:hr.payroll.advice,account_id:0 +msgid "Account" +msgstr "Conto" + +#. module: hr_payroll_account +#: field:hr.employee,property_bank_account:0 +msgid "Bank Account" +msgstr "Conto bancario" + +#. module: hr_payroll_account +#: field:hr.payslip.account.move,name:0 +msgid "Name" +msgstr "Nome" + +#. module: hr_payroll_account +#: model:ir.model,name:hr_payroll_account.model_hr_payslip_line +msgid "Payslip Line" +msgstr "" + +#. module: hr_payroll_account +#: view:hr.payslip:0 +msgid "Accounting Vouchers" +msgstr "" + +#. module: hr_payroll_account +#: constraint:hr.employee:0 +msgid "" +"Error ! You cannot select a department for which the employee is the manager." +msgstr "" +"Errore! Non è possibile selezionare un reparto per il quale l'impiegato è " +"manager." + +#. module: hr_payroll_account +#: help:hr.payroll.register,period_id:0 +#: help:hr.payslip,period_id:0 +msgid "Keep empty to use the period of the validation(Payslip) date." +msgstr "" + +#. module: hr_payroll_account +#: model:ir.model,name:hr_payroll_account.model_hr_payroll_advice +msgid "Bank Advice Note" +msgstr "" + +#. module: hr_payroll_account +#: field:hr.payslip.account.move,move_id:0 +msgid "Expense Entries" +msgstr "Voce di spesa" + +#. module: hr_payroll_account +#: field:hr.payslip,move_ids:0 +msgid "Accounting vouchers" +msgstr "" + +#. module: hr_payroll_account +#: code:addons/hr_payroll_account/hr_payroll_account.py:0 +#, python-format +msgid "Warning !" +msgstr "Attenzione!" + +#. module: hr_payroll_account +#: field:hr.employee,employee_account:0 +msgid "Employee Account" +msgstr "" + +#. module: hr_payroll_account +#: field:hr.payslip.line,account_id:0 +msgid "General Account" +msgstr "Contabilità Generale" + +#. module: hr_payroll_account +#: field:hr.contibution.register,yearly_total_by_emp:0 +msgid "Total By Employee" +msgstr "Totale per impiegato" + +#. module: hr_payroll_account +#: field:hr.payslip.account.move,sequence:0 +msgid "Sequence" +msgstr "Sequenza" + +#. module: hr_payroll_account +#: field:hr.payslip.account.move,slip_id:0 +#: model:ir.model,name:hr_payroll_account.model_hr_payslip +msgid "Pay Slip" +msgstr "" + +#. module: hr_payroll_account +#: field:hr.payroll.register,period_id:0 +#: field:hr.payslip,period_id:0 +msgid "Force Period" +msgstr "" + +#. module: hr_payroll_account +#: model:ir.model,name:hr_payroll_account.model_hr_holidays_status +msgid "Leave Type" +msgstr "Tipo di permesso" + +#. module: hr_payroll_account +#: code:addons/hr_payroll_account/hr_payroll_account.py:0 +#, python-format +msgid "Fiscal Year is not defined for slip date %s" +msgstr "" + +#. module: hr_payroll_account +#: field:hr.contibution.register,analytic_account_id:0 +#: field:hr.employee,analytic_account:0 +#: field:hr.holidays.status,analytic_account_id:0 +#: field:hr.payroll.structure,account_id:0 +#: field:hr.payslip.line,analytic_account_id:0 +msgid "Analytic Account" +msgstr "Conto Analitico" + +#. module: hr_payroll_account +#: help:hr.employee,employee_account:0 +msgid "Employee Payable Account" +msgstr "" + +#. module: hr_payroll_account +#: field:hr.contibution.register,yearly_total_by_comp:0 +msgid "Total By Company" +msgstr "" + +#. module: hr_payroll_account +#: model:ir.model,name:hr_payroll_account.model_hr_payroll_structure +msgid "Salary Structure" +msgstr "Struttura stipendio" + +#. module: hr_payroll_account +#: code:addons/hr_payroll_account/hr_payroll_account.py:0 +#, python-format +msgid "Please Configure Partners Receivable Account!!" +msgstr "" + +#. module: hr_payroll_account +#: view:hr.contibution.register:0 +msgid "Year" +msgstr "Anno" + +#. module: hr_payroll_account +#: code:addons/hr_payroll_account/hr_payroll_account.py:0 +#, python-format +msgid "Period is not defined for slip date %s" +msgstr "" + +#. module: hr_payroll_account +#: view:hr.employee:0 +msgid "Accounting" +msgstr "" + +#. module: hr_payroll_account +#: view:hr.payslip:0 +msgid "Accounting Details" +msgstr "" + +#. module: hr_payroll_account +#: code:addons/hr_payroll_account/hr_payroll_account.py:0 +#, python-format +msgid "Please Configure Partners Payable Account!!" +msgstr "" + +#. module: hr_payroll_account +#: code:addons/hr_payroll_account/hr_payroll_account.py:0 +#, python-format +msgid "Integrity Error !" +msgstr "Errore di Integrità!" diff --git a/addons/hr_recruitment/i18n/it.po b/addons/hr_recruitment/i18n/it.po new file mode 100644 index 00000000000..813477b090f --- /dev/null +++ b/addons/hr_recruitment/i18n/it.po @@ -0,0 +1,943 @@ +# Italian translation for openobject-addons +# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2010-12-21 19:44+0000\n" +"PO-Revision-Date: 2011-01-01 17:07+0000\n" +"Last-Translator: Nicola Riolini - Micronaet \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. module: hr_recruitment +#: help:hr.applicant,active:0 +msgid "" +"If the active field is set to false, it will allow you to hide the case " +"without removing it." +msgstr "" +"Se il campo attivo è impostato su \"falso\", vi permetterà di nascondere il " +"caso senza rimuoverlo." + +#. module: hr_recruitment +#: view:hr.recruitment.stage:0 +#: field:hr.recruitment.stage,requirements:0 +msgid "Requirements" +msgstr "Assunzioni" + +#. module: hr_recruitment +#: field:hr.recruitment.report,delay_open:0 +msgid "Avg. Delay to Open" +msgstr "Ritardo medio di apertura" + +#. module: hr_recruitment +#: field:hr.recruitment.report,nbr:0 +msgid "# of Cases" +msgstr "# di Casi" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Group By..." +msgstr "Raggruppa per..." + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,department_id:0 +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,department_id:0 +#: field:hr.recruitment.stage,department_id:0 +msgid "Department" +msgstr "Dipartimento" + +#. module: hr_recruitment +#: field:hr.applicant,date_action:0 +msgid "Next Action Date" +msgstr "Data prossima azione" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "Jobs" +msgstr "Lavori" + +#. module: hr_recruitment +#: field:hr.applicant,company_id:0 +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,company_id:0 +msgid "Company" +msgstr "Company" + +#. module: hr_recruitment +#: field:hr.applicant,email_cc:0 +msgid "Watchers Emails" +msgstr "Email osservatori" + +#. module: hr_recruitment +#: field:hr.recruitment.partner.create,close:0 +msgid "Close job request" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,day_open:0 +msgid "Days to Open" +msgstr "" + +#. module: hr_recruitment +#: field:hr.recruitment.job2phonecall,note:0 +msgid "Goals" +msgstr "Obiettivi" + +#. module: hr_recruitment +#: field:hr.recruitment.report,partner_address_id:0 +msgid "Partner Contact Name" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: view:hr.recruitment.partner.create:0 +#: model:ir.actions.act_window,name:hr_recruitment.action_hr_recruitment_partner_create +msgid "Create Partner" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,day:0 +msgid "Day" +msgstr "Giorno" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Contract Data" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Add Internal Note" +msgstr "Aggiungi nota interna" + +#. module: hr_recruitment +#: field:hr.applicant,partner_mobile:0 +msgid "Mobile" +msgstr "Cellulare" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Notes" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,message_ids:0 +msgid "Messages" +msgstr "Messaggi" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Next Actions" +msgstr "Prossima azione" + +#. module: hr_recruitment +#: model:crm.case.categ,name:hr_recruitment.categ_job2 +msgid "Junior Developer" +msgstr "Sviluppatore Junior" + +#. module: hr_recruitment +#: field:hr.applicant,job_id:0 +#: field:hr.recruitment.report,job_id:0 +msgid "Applied Job" +msgstr "" + +#. module: hr_recruitment +#: model:hr.recruitment.degree,name:hr_recruitment.degree_graduate +msgid "Graduate" +msgstr "Laureato" + +#. module: hr_recruitment +#: model:hr.recruitment.stage,name:hr_recruitment.stage_job1 +msgid "Initial Jobs Demand" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,partner_address_id:0 +msgid "Partner Contact" +msgstr "Contatto del partner" + +#. module: hr_recruitment +#: field:hr.applicant,reference:0 +msgid "Reference" +msgstr "" + +#. module: hr_recruitment +#: view:board.board:0 +#: view:hr.applicant:0 +#: model:ir.actions.act_window,name:hr_recruitment.action_applicants_status +msgid "Applicants Status" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "My Recruitment" +msgstr "Le mie assunzioni" + +#. module: hr_recruitment +#: field:hr.applicant,title_action:0 +msgid "Next Action" +msgstr "Prossima azione" + +#. module: hr_recruitment +#: model:ir.ui.menu,name:hr_recruitment.menu_hr_recruitment_recruitment +msgid "Recruitment" +msgstr "Assunzioni" + +#. module: hr_recruitment +#: field:hr.recruitment.report,salary_prop:0 +msgid "Salary Proposed" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,partner_id:0 +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,partner_id:0 +msgid "Partner" +msgstr "Partner" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "Avg Proposed Salary" +msgstr "Stipendio medio proposto" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.recruitment.report,available:0 +msgid "Availability" +msgstr "Disponibilità" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Previous" +msgstr "Precedente" + +#. module: hr_recruitment +#: code:addons/hr_recruitment/wizard/hr_recruitment_phonecall.py:0 +#: view:hr.applicant:0 +#, python-format +msgid "Phone Call" +msgstr "Telefonata" + +#. module: hr_recruitment +#: view:hr.recruitment.partner.create:0 +msgid "Convert To Partner" +msgstr "Converti a partner" + +#. module: hr_recruitment +#: model:ir.model,name:hr_recruitment.model_hr_recruitment_report +msgid "Recruitments Statistics" +msgstr "Statistiche assunzioni" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Next" +msgstr "Prossimo" + +#. module: hr_recruitment +#: model:ir.model,name:hr_recruitment.model_hr_job +msgid "Job Description" +msgstr "Descrizione lavoro" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Send New Email" +msgstr "Invia nuova email" + +#. module: hr_recruitment +#: code:addons/hr_recruitment/wizard/hr_recruitment_create_partner_job.py:0 +#, python-format +msgid "A partner is already defined on this job request." +msgstr "Un partner è già definito su questa richiesta di lavoro." + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: selection:hr.applicant,state:0 +#: view:hr.recruitment.report:0 +#: selection:hr.recruitment.report,state:0 +msgid "New" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,email_from:0 +msgid "Email" +msgstr "Email" + +#. module: hr_recruitment +#: field:hr.applicant,availability:0 +msgid "Availability (Days)" +msgstr "Disponibilità (giorni)" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "Available" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.applicant,priority:0 +#: selection:hr.recruitment.report,priority:0 +msgid "Good" +msgstr "Buono" + +#. module: hr_recruitment +#: code:addons/hr_recruitment/wizard/hr_recruitment_create_partner_job.py:0 +#, python-format +msgid "Error !" +msgstr "Errore!" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,create_date:0 +#: view:hr.recruitment.report:0 +msgid "Creation Date" +msgstr "Data creazione" + +#. module: hr_recruitment +#: field:hr.recruitment.job2phonecall,deadline:0 +msgid "Planned Date" +msgstr "Data pianificata" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,priority:0 +#: field:hr.recruitment.report,priority:0 +msgid "Appreciation" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Job" +msgstr "Lavoro" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,stage_id:0 +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,stage_id:0 +#: view:hr.recruitment.stage:0 +msgid "Stage" +msgstr "Fase" + +#. module: hr_recruitment +#: model:hr.recruitment.stage,name:hr_recruitment.stage_job3 +msgid "Second Interview" +msgstr "Seconda intervista" + +#. module: hr_recruitment +#: field:hr.recruitment.report,salary_exp:0 +msgid "Salary Expected" +msgstr "Stipendio previsto" + +#. module: hr_recruitment +#: field:hr.applicant,salary_expected:0 +#: view:hr.recruitment.report:0 +msgid "Expected Salary" +msgstr "Stipendio previsto" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "July" +msgstr "Luglio" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Subject" +msgstr "Oggetto" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: model:ir.actions.act_window,name:hr_recruitment.crm_case_categ0_act_job +#: model:ir.ui.menu,name:hr_recruitment.menu_crm_case_categ0_act_job +msgid "Applicants" +msgstr "Candidati" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "History Information" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Dates" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid " Month-1 " +msgstr " Mese-1 " + +#. module: hr_recruitment +#: model:hr.recruitment.degree,name:hr_recruitment.degree_bac5 +msgid " > Bac +5" +msgstr "" + +#. module: hr_recruitment +#: model:ir.model,name:hr_recruitment.model_hr_applicant +msgid "Applicant" +msgstr "Candidato" + +#. module: hr_recruitment +#: help:hr.recruitment.stage,sequence:0 +msgid "Gives the sequence order when displaying a list of stages." +msgstr "Fornisce l'ordinamento quando è visualizzata la lista delle fasi-" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Contact" +msgstr "Contatto" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Qualification" +msgstr "Qualifica" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "March" +msgstr "Marzo" + +#. module: hr_recruitment +#: model:ir.model,name:hr_recruitment.model_hr_recruitment_stage +msgid "Stage of Recruitment" +msgstr "Fase dell'assunzione" + +#. module: hr_recruitment +#: view:hr.recruitment.stage:0 +#: model:ir.actions.act_window,name:hr_recruitment.hr_recruitment_stage_act +#: model:ir.ui.menu,name:hr_recruitment.menu_hr_recruitment_stage +msgid "Stages" +msgstr "Fasi" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "In progress" +msgstr "In corso" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Jobs - Recruitment Form" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,probability:0 +msgid "Probability" +msgstr "Probabililtà" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "September" +msgstr "Settembre" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "December" +msgstr "Dicembre" + +#. module: hr_recruitment +#: model:ir.module.module,shortdesc:hr_recruitment.module_meta_information +msgid "HR - Recruitement" +msgstr "HR - Assunzioni" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Job Info" +msgstr "Info lavoro" + +#. module: hr_recruitment +#: model:hr.recruitment.stage,name:hr_recruitment.stage_job2 +msgid "First Interview" +msgstr "Prima intervista" + +#. module: hr_recruitment +#: field:hr.applicant,write_date:0 +msgid "Update Date" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,salary_proposed:0 +#: view:hr.recruitment.report:0 +msgid "Proposed Salary" +msgstr "Stipendio Proposto" + +#. module: hr_recruitment +#: model:crm.case.categ,name:hr_recruitment.categ_job1 +msgid "Salesman" +msgstr "Commerciale" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Search Jobs" +msgstr "Cerca lavori" + +#. module: hr_recruitment +#: field:hr.recruitment.job2phonecall,category_id:0 +msgid "Category" +msgstr "Categoria" + +#. module: hr_recruitment +#: field:hr.applicant,partner_name:0 +msgid "Applicant's Name" +msgstr "Nome candidato" + +#. module: hr_recruitment +#: selection:hr.applicant,priority:0 +#: selection:hr.recruitment.report,priority:0 +msgid "Very Good" +msgstr "Molto Buono" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "# Cases" +msgstr "# Casi" + +#. module: hr_recruitment +#: field:hr.applicant,date_open:0 +msgid "Opened" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "Group By ..." +msgstr "Raggruppa per ..." + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: selection:hr.applicant,state:0 +msgid "In Progress" +msgstr "In corso" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Reset to New" +msgstr "" + +#. module: hr_recruitment +#: help:hr.applicant,salary_expected:0 +msgid "Salary Expected by Applicant" +msgstr "Salario previsto per candidato" + +#. module: hr_recruitment +#: help:hr.applicant,email_cc:0 +msgid "" +"These email addresses will be added to the CC field of all inbound and " +"outbound emails for this record before being sent. Separate multiple email " +"addresses with a comma" +msgstr "" +"Questi indirizzi email verranno aggiunti nel campo CC di tutte le email, in " +"entrate e uscita, prima di essere spedite. E' necessario separare gli " +"indirizzi con una virgola" + +#. module: hr_recruitment +#: field:hr.applicant,date_closed:0 +#: field:hr.recruitment.report,date_closed:0 +msgid "Closed" +msgstr "" + +#. module: hr_recruitment +#: view:hr.recruitment.stage:0 +msgid "Stage Definition" +msgstr "Definizione fase" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Answer" +msgstr "" + +#. module: hr_recruitment +#: field:hr.recruitment.report,delay_close:0 +msgid "Avg. Delay to Close" +msgstr "" + +#. module: hr_recruitment +#: help:hr.applicant,salary_proposed:0 +msgid "Salary Proposed by the Organisation" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Meeting" +msgstr "Riunione" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: selection:hr.applicant,state:0 +#: view:hr.recruitment.report:0 +#: selection:hr.recruitment.report,state:0 +msgid "Pending" +msgstr "In sospeso" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Status" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "August" +msgstr "Agosto" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,type_id:0 +#: view:hr.recruitment.degree:0 +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,type_id:0 +#: model:ir.actions.act_window,name:hr_recruitment.hr_recruitment_degree_action +msgid "Degree" +msgstr "Grado" + +#. module: hr_recruitment +#: field:hr.applicant,partner_phone:0 +msgid "Phone" +msgstr "Telefono" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Global CC" +msgstr "CC globale" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "October" +msgstr "Ottobre" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "June" +msgstr "Giugno" + +#. module: hr_recruitment +#: model:ir.actions.act_window,name:hr_recruitment.hr_job_stage_act +msgid "Applicant Stages" +msgstr "Fasi candidato" + +#. module: hr_recruitment +#: model:hr.recruitment.stage,name:hr_recruitment.stage_job7 +msgid "Refused by Company" +msgstr "Rifiutato dalla società" + +#. module: hr_recruitment +#: field:hr.applicant,day_close:0 +msgid "Days to Close" +msgstr "Giorni per la chiusura" + +#. module: hr_recruitment +#: field:hr.recruitment.report,user_id:0 +msgid "User" +msgstr "Utente" + +#. module: hr_recruitment +#: selection:hr.applicant,priority:0 +#: selection:hr.recruitment.report,priority:0 +msgid "Excellent" +msgstr "Eccellente" + +#. module: hr_recruitment +#: field:hr.applicant,active:0 +msgid "Active" +msgstr "Attivo" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "November" +msgstr "Novembre" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +msgid "Extended Filters..." +msgstr "Filtri estesi..." + +#. module: hr_recruitment +#: field:hr.applicant,response:0 +msgid "Response" +msgstr "" + +#. module: hr_recruitment +#: model:hr.recruitment.degree,name:hr_recruitment.degree_licenced +msgid "Licenced" +msgstr "" + +#. module: hr_recruitment +#: field:hr.recruitment.report,salary_prop_avg:0 +msgid "Avg Salary Proposed" +msgstr "Stipendio medio proposto" + +#. module: hr_recruitment +#: view:hr.recruitment.job2phonecall:0 +#: model:ir.actions.act_window,name:hr_recruitment.action_hr_recruitment_phonecall +#: model:ir.model,name:hr_recruitment.model_hr_recruitment_job2phonecall +msgid "Schedule Phone Call" +msgstr "Pianifica telefonata" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "January" +msgstr "Gennaio" + +#. module: hr_recruitment +#: help:hr.applicant,email_from:0 +msgid "These people will receive email." +msgstr "Queste persone riceveranno email." + +#. module: hr_recruitment +#: selection:hr.applicant,priority:0 +#: selection:hr.recruitment.report,priority:0 +msgid "Not Good" +msgstr "Non buono" + +#. module: hr_recruitment +#: field:hr.applicant,date:0 +#: field:hr.recruitment.report,date:0 +msgid "Date" +msgstr "Data" + +#. module: hr_recruitment +#: view:hr.recruitment.job2phonecall:0 +msgid "Phone Call Description" +msgstr "Descrizione telefonata" + +#. module: hr_recruitment +#: view:hr.recruitment.partner.create:0 +msgid "Are you sure you want to create a partner based on this job request ?" +msgstr "" +"Sei sicuro di volere creare un partner basandosi su questa richiesta lavoro?" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "History" +msgstr "Storico" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Attachments" +msgstr "Allegati" + +#. module: hr_recruitment +#: model:hr.recruitment.stage,name:hr_recruitment.stage_job4 +msgid "Contract Proposed" +msgstr "Contratto proposto" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,state:0 +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,state:0 +msgid "State" +msgstr "Stato" + +#. module: hr_recruitment +#: view:hr.recruitment.job2phonecall:0 +#: view:hr.recruitment.partner.create:0 +msgid "Cancel" +msgstr "Annulla" + +#. module: hr_recruitment +#: model:ir.actions.act_window,name:hr_recruitment.hr_job_categ_action +msgid "Applicant Categories" +msgstr "Categorie candidato" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,state:0 +msgid "Open" +msgstr "" + +#. module: hr_recruitment +#: code:addons/hr_recruitment/wizard/hr_recruitment_create_partner_job.py:0 +#, python-format +msgid "A partner is already existing with the same name." +msgstr "Un partner esiste già con lo stesso nome." + +#. module: hr_recruitment +#: help:hr.recruitment.degree,sequence:0 +msgid "Gives the sequence order when displaying a list of degrees." +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: field:hr.applicant,user_id:0 +#: view:hr.recruitment.report:0 +msgid "Responsible" +msgstr "Responsabile" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +#: model:ir.actions.act_window,name:hr_recruitment.action_hr_recruitment_report_all +#: model:ir.ui.menu,name:hr_recruitment.menu_hr_recruitment_report_all +msgid "Recruitment Analysis" +msgstr "Analisi assunzione" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Current" +msgstr "Attuale" + +#. module: hr_recruitment +#: model:ir.module.module,description:hr_recruitment.module_meta_information +msgid "" +"\n" +"Manages job positions and the recruitement process. It's integrated with " +"the\n" +"survey module to allow you to define interview for different jobs.\n" +"\n" +"This module is integrated with the mail gateway to automatically tracks " +"email\n" +"sent to jobs@YOURCOMPANY.com. It's also integrated with the document " +"management\n" +"system to store and search in your CV base.\n" +" " +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Details" +msgstr "Dettagli" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Cases By Stage and Estimates" +msgstr "Casi per fasi e stime" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Reply" +msgstr "Rispondi" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Interview" +msgstr "Intervista" + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,month:0 +msgid "Month" +msgstr "Mese" + +#. module: hr_recruitment +#: field:hr.applicant,description:0 +msgid "Description" +msgstr "Descrizione" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "May" +msgstr "Maggio" + +#. module: hr_recruitment +#: model:hr.recruitment.stage,name:hr_recruitment.stage_job5 +msgid "Contract Signed" +msgstr "Contratto firmato" + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: selection:hr.applicant,state:0 +#: selection:hr.recruitment.report,state:0 +msgid "Refused" +msgstr "Rifiutato" + +#. module: hr_recruitment +#: code:addons/hr_recruitment/hr_recruitment.py:0 +#, python-format +msgid "Applicant '%s' is being hired." +msgstr "Il candidato \"%s\" è stato assunto." + +#. module: hr_recruitment +#: view:hr.applicant:0 +#: selection:hr.applicant,state:0 +#: view:hr.recruitment.report:0 +#: selection:hr.recruitment.report,state:0 +msgid "Hired" +msgstr "Assunto" + +#. module: hr_recruitment +#: model:hr.recruitment.stage,name:hr_recruitment.stage_job6 +msgid "Refused by Employee" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.applicant,priority:0 +#: selection:hr.recruitment.report,priority:0 +msgid "On Average" +msgstr "" + +#. module: hr_recruitment +#: model:ir.model,name:hr_recruitment.model_hr_recruitment_degree +msgid "Degree of Recruitment" +msgstr "" + +#. module: hr_recruitment +#: view:hr.applicant:0 +msgid "Emails" +msgstr "Email" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "February" +msgstr "Febbraio" + +#. module: hr_recruitment +#: field:hr.applicant,name:0 +#: field:hr.recruitment.degree,name:0 +#: field:hr.recruitment.stage,name:0 +msgid "Name" +msgstr "Nome" + +#. module: hr_recruitment +#: model:ir.model,name:hr_recruitment.model_hr_recruitment_partner_create +msgid "Create Partner from job application" +msgstr "" + +#. module: hr_recruitment +#: selection:hr.recruitment.report,month:0 +msgid "April" +msgstr "Aprile" + +#. module: hr_recruitment +#: model:crm.case.section,name:hr_recruitment.section_hr_department +msgid "HR Department" +msgstr "" + +#. module: hr_recruitment +#: field:hr.recruitment.degree,sequence:0 +#: field:hr.recruitment.stage,sequence:0 +msgid "Sequence" +msgstr "Sequenza" + +#. module: hr_recruitment +#: field:hr.recruitment.job2phonecall,user_id:0 +msgid "Assign To" +msgstr "Assegnato a" + +#. module: hr_recruitment +#: code:addons/hr_recruitment/hr_recruitment.py:0 +#, python-format +msgid "The job request '%s' has been set 'in progress'." +msgstr "La richiesta lavoro \"%s\" è stata impostata a \"in corso\"." + +#. module: hr_recruitment +#: view:hr.recruitment.report:0 +#: field:hr.recruitment.report,year:0 +msgid "Year" +msgstr "Anno" + +#. module: hr_recruitment +#: help:hr.recruitment.report,delay_close:0 +#: help:hr.recruitment.report,delay_open:0 +msgid "Number of Days to close the project issue" +msgstr "" + +#. module: hr_recruitment +#: field:hr.applicant,survey:0 +#: field:hr.job,survey_id:0 +msgid "Survey" +msgstr "Sondaggio" diff --git a/addons/hr_timesheet/i18n/it.po b/addons/hr_timesheet/i18n/it.po index e32300f87dd..f98f901991f 100644 --- a/addons/hr_timesheet/i18n/it.po +++ b/addons/hr_timesheet/i18n/it.po @@ -7,14 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-12 10:03+0000\n" -"Last-Translator: Lorenzo Battistini - agilebg.com " -"\n" +"PO-Revision-Date: 2011-01-01 16:49+0000\n" +"Last-Translator: Nicola Riolini - Micronaet \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:30+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_timesheet @@ -291,6 +290,20 @@ msgid "" "to set up a management by affair.\n" " " msgstr "" +"\n" +"Questo modulo implementa il sistema timesheet. Ogni impiegato può codificare " +"e\n" +"tenere traccia del propio tempo dedicato ai differenti progetti. Un progetto " +"è un\n" +"conto analitico e il tempo speso sul progetto genera costi nel\n" +"conto analitico.\n" +"\n" +"Molti report, per tracciamento tempistiche ed impiegati, sono forniti.\n" +"\n" +"E completamente integrato con il modulo contabilità costi. Esso vi " +"permetterà di \n" +"installare una gestione per affare.\n" +" " #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:0 diff --git a/addons/hr_timesheet_invoice/i18n/it.po b/addons/hr_timesheet_invoice/i18n/it.po index f9332bf0e77..ea8f95e8ac9 100644 --- a/addons/hr_timesheet_invoice/i18n/it.po +++ b/addons/hr_timesheet_invoice/i18n/it.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-28 08:49+0000\n" +"PO-Revision-Date: 2011-01-01 07:49+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-29 04:54+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_timesheet_invoice @@ -122,7 +122,7 @@ msgstr "Mostra le tempistiche nello storico dei lavori" #. module: hr_timesheet_invoice #: view:hr.timesheet.analytic.profit:0 msgid "Journals" -msgstr "" +msgstr "Libri giornali" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -139,7 +139,7 @@ msgstr "Unità di Misura" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 msgid "Account" -msgstr "" +msgstr "Conto" #. module: hr_timesheet_invoice #: view:report.random.timesheet:0 @@ -399,6 +399,9 @@ msgid "" "costs in this analytic account: timesheets, expenses, ...You can configure " "an automatic invoice rate on analytic accounts." msgstr "" +"Riempire questo campo se pianificate di generare automaticamente fatture " +"basandole sui costi nel conto analitico: timesheet, spese, ... E' possibile " +"configurare un tasso di fatturazione automatico sui conti analitici." #. module: hr_timesheet_invoice #: view:hr.timesheet.analytic.profit:0 @@ -552,7 +555,7 @@ msgstr "" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 msgid "Non Assigned timesheets to users" -msgstr "" +msgstr "Timesheet non assegnati a utenti" #. module: hr_timesheet_invoice #: field:report.timesheet.line,invoice_id:0 @@ -658,7 +661,7 @@ msgstr "Data" #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 #, python-format msgid "Please fill in the Address field in the Partner: %s." -msgstr "" +msgstr "Per favore compilare il campo indirizzo nel partner: %s." #. module: hr_timesheet_invoice #: selection:report.account.analytic.line.to.invoice,month:0 @@ -721,6 +724,8 @@ msgid "" "Please fill in the partner and pricelist field in the analytic account:\n" "%s" msgstr "" +"Per favore compilare il partner e il campo listino nel conto analitico:\n" +"%s" #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:0 @@ -850,11 +855,14 @@ msgid "" "Analytic Account:\n" "%s" msgstr "" +"Per favore compilare il partner o cliente e il campo listino di vendita nel " +"conto analitico:\n" +"%s" #. module: hr_timesheet_invoice #: help:hr_timesheet_invoice.factor,customer_name:0 msgid "Label for the customer" -msgstr "" +msgstr "Etichetta per il cliente" #. module: hr_timesheet_invoice #: view:random.timesheet.lines:0 @@ -937,7 +945,7 @@ msgstr "Prodotto" #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_timesheet_uninvoiced_line msgid "Uninvoice lines with billing rate" -msgstr "" +msgstr "Linee non fatturate con tasso di fatturazione" #. module: hr_timesheet_invoice #: report:account.analytic.profit:0 @@ -966,13 +974,13 @@ msgstr "Registro" #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create.final,balance_product:0 msgid "The product that will be used to invoice the remaining amount" -msgstr "" +msgstr "Il prodotto che verrà utilizzato per fatture l'importo rimenente" #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_analytic_profit.py:0 #, python-format msgid "No Records Found for Report!" -msgstr "" +msgstr "Record non trovati per il report!" #. module: hr_timesheet_invoice #: view:report_timesheet.invoice:0 @@ -1090,7 +1098,7 @@ msgstr "Unità" #. module: hr_timesheet_invoice #: field:account.analytic.line,to_invoice:0 msgid "Type of Invoicing" -msgstr "" +msgstr "Tipo di fatturazione" #. module: hr_timesheet_invoice #: view:report.account.analytic.line.to.invoice:0 @@ -1122,7 +1130,7 @@ msgstr "Costo" #. module: hr_timesheet_invoice #: view:random.timesheet.lines:0 msgid "Search Timesheet Lines" -msgstr "" +msgstr "Cerca linee timesheet" #~ msgid "Visible name" #~ msgstr "Nome visualizzato" diff --git a/addons/hr_timesheet_sheet/i18n/de.po b/addons/hr_timesheet_sheet/i18n/de.po index 3a0d1d4ee5c..ed34ea3f432 100644 --- a/addons/hr_timesheet_sheet/i18n/de.po +++ b/addons/hr_timesheet_sheet/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-31 00:21+0000\n" +"PO-Revision-Date: 2010-12-31 10:14+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:26+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_timesheet_sheet diff --git a/addons/hr_timesheet_sheet/i18n/es.po b/addons/hr_timesheet_sheet/i18n/es.po index d89b56b3b3f..eb6d684e08c 100644 --- a/addons/hr_timesheet_sheet/i18n/es.po +++ b/addons/hr_timesheet_sheet/i18n/es.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-29 09:08+0000\n" +"PO-Revision-Date: 2010-12-31 08:46+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:26+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: hr_timesheet_sheet diff --git a/addons/knowledge/i18n/zh_CN.po b/addons/knowledge/i18n/zh_CN.po index bb22fb28b29..3dcd59e76ec 100644 --- a/addons/knowledge/i18n/zh_CN.po +++ b/addons/knowledge/i18n/zh_CN.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-30 13:51+0000\n" +"PO-Revision-Date: 2010-12-31 11:01+0000\n" "Last-Translator: Wei \"oldrev\" Li \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: knowledge diff --git a/addons/lunch/i18n/es.po b/addons/lunch/i18n/es.po index 58c0125334f..5762d6456e3 100644 --- a/addons/lunch/i18n/es.po +++ b/addons/lunch/i18n/es.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-29 08:50+0000\n" +"PO-Revision-Date: 2010-12-31 10:38+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: lunch diff --git a/addons/marketing_campaign/i18n/de.po b/addons/marketing_campaign/i18n/de.po index d078f29fefc..270334c7527 100644 --- a/addons/marketing_campaign/i18n/de.po +++ b/addons/marketing_campaign/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-29 12:26+0000\n" +"PO-Revision-Date: 2011-01-01 08:52+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: marketing_campaign @@ -895,7 +895,7 @@ msgstr "Vorgang nicht unterstützt" #. module: marketing_campaign #: model:ir.model,name:marketing_campaign.model_email_template msgid "Email Templates for Models" -msgstr "EMail Vorlagen f. Modelle" +msgstr "EMail Vorlagen" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign_crm_demo/i18n/es.po b/addons/marketing_campaign_crm_demo/i18n/es.po index e34f08d7045..437e2918146 100644 --- a/addons/marketing_campaign_crm_demo/i18n/es.po +++ b/addons/marketing_campaign_crm_demo/i18n/es.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-29 12:25+0000\n" +"PO-Revision-Date: 2010-12-31 10:59+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: marketing_campaign_crm_demo diff --git a/addons/mrp/i18n/hu.po b/addons/mrp/i18n/hu.po index f8d642055b7..9578293d704 100644 --- a/addons/mrp/i18n/hu.po +++ b/addons/mrp/i18n/hu.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2009-09-08 16:47+0000\n" -"Last-Translator: Fabien (Open ERP) \n" +"PO-Revision-Date: 2011-01-01 21:49+0000\n" +"Last-Translator: Tamás Dénes \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:03+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:00+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: mrp @@ -27,11 +27,6 @@ msgstr "" msgid "No. Of Cycles" msgstr "" -#. module: mrp -#: help:mrp.routing.workcenter,cycle_nbr:0 -msgid "Number of iterations this work center has to do in the specified operation of the routing." -msgstr "" - #. module: mrp #: help:mrp.production,location_src_id:0 msgid "Location where the system will look for components." @@ -44,7 +39,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 -msgid "Work Center Loads" +msgid "Work Centers load" msgstr "" #. module: mrp @@ -363,7 +358,7 @@ msgstr "" #: report:mrp.production.order:0 #, python-format msgid "Quantity" -msgstr "" +msgstr "Mennyiség" #. module: mrp #: field:mrp.production.workcenter.line,hour:0 @@ -505,7 +500,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 -msgid "Specify Cost of Work center per hour." +msgid "Specify Cost of Workcenter per hour." msgstr "" #. module: mrp @@ -557,7 +552,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 -msgid "Specify Cost of Work center per cycle." +msgid "Specify Cost of Workcenter per cycle." msgstr "" #. module: mrp @@ -650,7 +645,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,time_cycle:0 -msgid "Time in hours for this work center to achieve the operation of the specified routing." +msgid "Time in hours for doing one cycle." msgstr "" #. module: mrp @@ -1039,7 +1034,7 @@ msgstr "" #: field:mrp.routing,name:0 #: field:mrp.routing.workcenter,name:0 msgid "Name" -msgstr "" +msgstr "Név" #. module: mrp #: view:mrp.installer:0 @@ -1069,7 +1064,7 @@ msgstr "" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" -"Gives the sequence order when displaying a list of routing work centers." +"Gives the sequence order when displaying a list of routing workcenters." msgstr "" #. module: mrp @@ -1431,7 +1426,7 @@ msgstr "" #: field:mrp.bom,active:0 #: field:mrp.routing,active:0 msgid "Active" -msgstr "" +msgstr "Aktív" #. module: mrp #: model:process.node,name:mrp.process_node_procureproducts0 @@ -1572,7 +1567,7 @@ msgstr "" #: field:mrp.production.order,product_id:0 #: field:mrp.production.product.line,product_id:0 msgid "Product" -msgstr "" +msgstr "Termék" #. module: mrp #: view:mrp.production:0 @@ -1595,7 +1590,7 @@ msgstr "" #: field:mrp.bom,product_uos:0 #: field:mrp.production.product.line,product_uos:0 msgid "Product UOS" -msgstr "" +msgstr "Termék EE" #. module: mrp #: model:ir.actions.act_window,name:mrp.mrp_production_action @@ -1617,7 +1612,7 @@ msgstr "" #: field:mrp.production.order,product_uom:0 #: field:mrp.production.product.line,product_uom:0 msgid "Product UOM" -msgstr "" +msgstr "Termék ME" #. module: mrp #: model:process.node,name:mrp.process_node_stock0 @@ -1710,8 +1705,8 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,note:0 msgid "" -"Description of the work center. Explain here what's a cycle according to this " -"work center." +"Description of the workcenter. Explain here what's a cycle according to this " +"workcenter." msgstr "" #. module: mrp @@ -1794,9 +1789,9 @@ msgstr "" #. module: mrp #: help:mrp.production,routing_id:0 msgid "" -"The list of operations (list of work centers) to produce the finished " -"product. The routing is mainly used to compute work center costs during " -"operations and to plan future loads on work centers based on production " +"The list of operations (list of workcenters) to produce the finished " +"product. The routing is mainly used to compute workcenter costs during " +"operations and to plan future loads on workcenters based on production " "plannification." msgstr "" @@ -1829,7 +1824,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 msgid "" -"Number of operations this work center can do in parallel. If this work center " +"Number of operations this workcenter can do in parallel. If this workcenter " "represents a team of 5 workers, the capacity per cycle is 5." msgstr "" @@ -2267,9 +2262,9 @@ msgstr "" #. module: mrp #: help:mrp.bom,routing_id:0 msgid "" -"The list of operations (list of work centers) to produce the finished " -"product. The routing is mainly used to compute work center costs during " -"operations and to plan future loads on work centers based on production " +"The list of operations (list of workcenters) to produce the finished " +"product. The routing is mainly used to compute workcenter costs during " +"operations and to plan future loads on workcenters based on production " "planning." msgstr "" @@ -2299,7 +2294,7 @@ msgstr "" #. module: mrp #: model:ir.ui.menu,name:mrp.menu_mrp_manufacturing msgid "Manufacturing" -msgstr "" +msgstr "Gyártás" #. module: mrp #: view:board.board:0 diff --git a/addons/mrp/i18n/pl.po b/addons/mrp/i18n/pl.po index c9f60111e44..cc0d8e387d8 100644 --- a/addons/mrp/i18n/pl.po +++ b/addons/mrp/i18n/pl.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-29 20:01+0000\n" -"Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \n" +"PO-Revision-Date: 2010-12-31 08:43+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:23+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: mrp diff --git a/addons/outlook/i18n/it.po b/addons/outlook/i18n/it.po index 7d4f871ec50..df63380be27 100644 --- a/addons/outlook/i18n/it.po +++ b/addons/outlook/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-25 20:56+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-01 22:11+0000\n" +"Last-Translator: Roberto Onnis \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-26 04:52+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: outlook @@ -30,7 +30,7 @@ msgstr "Manuale d'installazione" #. module: outlook #: view:outlook.installer:0 msgid "Configure" -msgstr "" +msgstr "Configura" #. module: outlook #: field:outlook.installer,description:0 @@ -79,6 +79,18 @@ msgid "" "\n" " " msgstr "" +"\n" +" Questo modulo fornisce il plug in per Outlook. \n" +"\n" +" Il plug in per Outlook permette di selezionare un oggetto che vorreste " +"aggiungere\n" +" alle vostra email e al suo allegato da MS Outlook. E' possibile " +"selezionare un partner, un'attività.\n" +" un progetto, un conto analitico, o altri oggetti ed archiviare le mail " +"selezionate\n" +" nel gestore mail come messaggi ed allegati.\n" +"\n" +" " #. module: outlook #: help:outlook.installer,doc_file:0 @@ -98,6 +110,8 @@ msgid "" "Allows you to select an object that you’d like to add to your email and its " "attachments." msgstr "" +"Permette di selezionare un oggetto che vorrete aggiungere alla email e il " +"suoi allegati." #. module: outlook #: model:ir.model,name:outlook.model_outlook_installer @@ -110,16 +124,18 @@ msgid "" "This plug-in allows you to link your e-mail to OpenERP's documents. You can " "attach it to any existing one in OpenERP or create a new one." msgstr "" +"Il plug in permette di collegare le e-mail ai documenti di OpenERP. E' " +"possibile allegarli ad ogni esistente di OpenERP o crearne di nuovi" #. module: outlook #: view:outlook.installer:0 msgid "Skip" -msgstr "" +msgstr "Tralascia" #. module: outlook #: view:outlook.installer:0 msgid "_Close" -msgstr "" +msgstr "_Chiudi" #. module: outlook #: view:outlook.installer:0 @@ -142,4 +158,4 @@ msgstr "" #. module: outlook #: field:outlook.installer,progress:0 msgid "Configuration Progress" -msgstr "" +msgstr "Avanzamento configurazione" diff --git a/addons/process/i18n/zh_CN.po b/addons/process/i18n/zh_CN.po index 7e04cb7c6e8..40966dc4c57 100644 --- a/addons/process/i18n/zh_CN.po +++ b/addons/process/i18n/zh_CN.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-30 14:11+0000\n" +"PO-Revision-Date: 2010-12-31 10:31+0000\n" "Last-Translator: Wei \"oldrev\" Li \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:24+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: process diff --git a/addons/procurement/i18n/de.po b/addons/procurement/i18n/de.po index c1ccfd12a4c..e1c08b0a93f 100644 --- a/addons/procurement/i18n/de.po +++ b/addons/procurement/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-30 23:15+0000\n" +"PO-Revision-Date: 2010-12-31 09:47+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: procurement diff --git a/addons/procurement/i18n/vi.po b/addons/procurement/i18n/vi.po index 4886599278b..bfa17c48c92 100644 --- a/addons/procurement/i18n/vi.po +++ b/addons/procurement/i18n/vi.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-28 08:57+0000\n" +"PO-Revision-Date: 2011-01-01 08:01+0000\n" "Last-Translator: OpenERP Administrators \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-29 04:58+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: procurement @@ -49,7 +49,7 @@ msgstr "" #: code:addons/procurement/procurement.py:0 #, python-format msgid "No supplier defined for this product !" -msgstr "" +msgstr "Không có nhà cung cấp nào cho sản phẩm này !" #. module: procurement #: field:make.procurement,uom_id:0 @@ -65,7 +65,7 @@ msgstr "Phương pháp mua hàng" #: code:addons/procurement/procurement.py:0 #, python-format msgid "No address defined for the supplier" -msgstr "" +msgstr "Không có địa chỉ nào được gán cho nhà cung cấp" #. module: procurement #: model:ir.actions.act_window,name:procurement.action_procurement_compute diff --git a/addons/product/i18n/de.po b/addons/product/i18n/de.po index 6e4f4f5d0c7..fffe0c1f0bc 100644 --- a/addons/product/i18n/de.po +++ b/addons/product/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-31 00:11+0000\n" +"PO-Revision-Date: 2010-12-31 09:46+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:26+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:03+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: product diff --git a/addons/product/i18n/es.po b/addons/product/i18n/es.po index df81cc5fa6c..2f43d3963fa 100644 --- a/addons/product/i18n/es.po +++ b/addons/product/i18n/es.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-30 08:02+0000\n" +"PO-Revision-Date: 2010-12-31 09:00+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:26+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:03+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: product diff --git a/addons/product/i18n/hu.po b/addons/product/i18n/hu.po index 1bfc1252751..5955fc16469 100644 --- a/addons/product/i18n/hu.po +++ b/addons/product/i18n/hu.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-08-03 08:58+0000\n" -"Last-Translator: mga (Open ERP) \n" +"PO-Revision-Date: 2011-01-01 22:34+0000\n" +"Last-Translator: Tamás Dénes \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-29 04:53+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: product @@ -75,7 +75,7 @@ msgstr "" #. module: product #: field:product.product,incoming_qty:0 msgid "Incoming" -msgstr "" +msgstr "Bejövő" #. module: product #: field:product.template,mes_type:0 @@ -119,18 +119,18 @@ msgstr "" #: field:product.product,pricelist_id:0 #: view:product.supplierinfo:0 msgid "Pricelist" -msgstr "" +msgstr "Árlista" #. module: product #: view:product.product:0 #: view:product.template:0 msgid "Base Prices" -msgstr "" +msgstr "Alapárak" #. module: product #: field:product.pricelist.item,name:0 msgid "Rule Name" -msgstr "" +msgstr "Szabály neve" #. module: product #: field:product.product,code:0 @@ -153,12 +153,12 @@ msgstr "" #. module: product #: model:product.template,name:product.product_product_24_product_template msgid "Keyboard" -msgstr "" +msgstr "Billentyűzet" #. module: product #: model:ir.model,name:product.model_res_partner msgid "Partner" -msgstr "" +msgstr "Partner" #. module: product #: help:product.template,supply_method:0 @@ -170,7 +170,7 @@ msgstr "" #. module: product #: selection:product.template,cost_method:0 msgid "Average Price" -msgstr "" +msgstr "Átlagár" #. module: product #: help:product.pricelist.item,name:0 @@ -181,7 +181,7 @@ msgstr "" #: model:ir.actions.act_window,name:product.product_uom_categ_form_action #: model:ir.ui.menu,name:product.menu_product_uom_categ_form_action msgid "Units of Measure Categories" -msgstr "" +msgstr "Mértékegység kategóriák" #. module: product #: model:product.template,name:product.product_product_cpu1_product_template @@ -196,22 +196,22 @@ msgstr "" #. module: product #: field:product.price_list,price_list:0 msgid "PriceList" -msgstr "" +msgstr "Árlista" #. module: product #: view:product.template:0 msgid "UOM" -msgstr "" +msgstr "ME" #. module: product #: model:product.uom,name:product.product_uom_unit msgid "PCE" -msgstr "" +msgstr "db" #. module: product #: view:product.template:0 msgid "Miscelleanous" -msgstr "" +msgstr "Egyéb" #. module: product #: model:product.template,name:product.product_product_worker0_product_template @@ -239,7 +239,7 @@ msgstr "" #: model:product.pricelist.type,name:product.pricelist_type_sale #: field:res.partner,property_product_pricelist:0 msgid "Sale Pricelist" -msgstr "" +msgstr "Értékesítési árlista" #. module: product #: view:product.template:0 @@ -256,7 +256,7 @@ msgstr "" #: code:addons/product/product.py:0 #, python-format msgid "Products: " -msgstr "" +msgstr "Termékek: " #. module: product #: field:product.category,parent_id:0 @@ -345,7 +345,7 @@ msgstr "" #: view:product.template:0 #: field:product.template,state:0 msgid "Status" -msgstr "" +msgstr "Állapot" #. module: product #: help:product.template,categ_id:0 @@ -366,7 +366,7 @@ msgstr "" #: model:product.price.type,name:product.list_price #: field:product.product,lst_price:0 msgid "Public Price" -msgstr "" +msgstr "Listaár" #. module: product #: field:product.price_list,qty5:0 @@ -381,7 +381,7 @@ msgstr "" #. module: product #: field:product.template,product_manager:0 msgid "Product Manager" -msgstr "" +msgstr "Termékfelelős" #. module: product #: field:product.supplierinfo,product_name:0 @@ -403,7 +403,7 @@ msgstr "" #: view:product.template:0 #: field:product.template,description_sale:0 msgid "Sale Description" -msgstr "" +msgstr "Értékesítési leírás" #. module: product #: view:product.product:0 @@ -419,7 +419,7 @@ msgstr "" #. module: product #: help:product.template,weight_net:0 msgid "The net weight in Kg." -msgstr "" +msgstr "Nettó súly (kg)" #. module: product #: help:product.template,state:0 @@ -430,12 +430,12 @@ msgstr "" #: field:pricelist.partnerinfo,min_quantity:0 #: field:product.supplierinfo,qty:0 msgid "Quantity" -msgstr "" +msgstr "Mennyiség" #. module: product #: field:product.packaging,height:0 msgid "Height" -msgstr "" +msgstr "Magasság" #. module: product #: help:product.pricelist.version,date_end:0 @@ -445,7 +445,7 @@ msgstr "" #. module: product #: model:product.category,name:product.cat0 msgid "All products" -msgstr "" +msgstr "Minden termék" #. module: product #: model:ir.model,name:product.model_pricelist_partnerinfo @@ -482,7 +482,7 @@ msgstr "" #. module: product #: view:res.partner:0 msgid "Sales & Purchases" -msgstr "" +msgstr "Beszerzés, értékesítés" #. module: product #: model:product.uom.categ,name:product.uom_categ_wtime @@ -512,7 +512,7 @@ msgstr "" #. module: product #: model:ir.model,name:product.model_product_uom_categ msgid "Product uom categ" -msgstr "" +msgstr "Termék ME kategória" #. module: product #: model:product.ul,name:product.product_ul_box @@ -522,12 +522,12 @@ msgstr "" #. module: product #: view:product.pricelist.item:0 msgid "Price Computation" -msgstr "" +msgstr "Árszámítás" #. module: product #: field:product.template,purchase_ok:0 msgid "Can be Purchased" -msgstr "" +msgstr "Beszerezhető" #. module: product #: model:product.template,name:product.product_product_cpu2_product_template @@ -556,7 +556,7 @@ msgstr "" #. module: product #: field:product.product,virtual_available:0 msgid "Virtual Stock" -msgstr "" +msgstr "Felhasználható készlet" #. module: product #: selection:product.category,type:0 @@ -577,12 +577,12 @@ msgstr "" #: constraint:product.packaging:0 #: constraint:product.product:0 msgid "Error: Invalid ean code" -msgstr "" +msgstr "Hiba: Érvénytelen EAN kód" #. module: product #: field:product.pricelist.item,min_quantity:0 msgid "Min. Quantity" -msgstr "" +msgstr "Min. mennyiség" #. module: product #: model:ir.model,name:product.model_product_price_type @@ -683,7 +683,7 @@ msgstr "" #. module: product #: view:product.pricelist.item:0 msgid "New Price =" -msgstr "" +msgstr "Új ár =" #. module: product #: help:pricelist.partnerinfo,price:0 @@ -718,7 +718,7 @@ msgstr "" #. module: product #: view:product.pricelist.item:0 msgid "Min. Margin" -msgstr "Minimum margó" +msgstr "Min. árrés" #. module: product #: field:product.category,child_id:0 @@ -739,14 +739,14 @@ msgstr "" #: view:product.product:0 #: field:product.ul,type:0 msgid "Type" -msgstr "" +msgstr "Típus" #. module: product #: model:ir.actions.act_window,name:product.product_pricelist_action2 #: model:ir.ui.menu,name:product.menu_product_pricelist_action2 #: model:ir.ui.menu,name:product.menu_product_pricelist_main msgid "Pricelists" -msgstr "" +msgstr "Árlisták" #. module: product #: field:product.product,partner_ref:0 @@ -774,6 +774,8 @@ msgid "" "Set a product if this rule only apply to one product. Keep empty for all " "products" msgstr "" +"Válasszon ki egy terméket, ha a szabály csak arra vonatkozik. Hagyja üresen " +"minden termékhez." #. module: product #: model:product.template,name:product.product_product_kitchendesignproject0_product_template @@ -788,7 +790,7 @@ msgstr "" #. module: product #: selection:product.template,state:0 msgid "In Development" -msgstr "" +msgstr "Fejlesztés alatt" #. module: product #: model:product.template,name:product.product_product_shelfofcm1_product_template @@ -820,14 +822,14 @@ msgstr "" #: model:process.node,name:product.process_node_supplier0 #: view:product.supplierinfo:0 msgid "Supplier Information" -msgstr "" +msgstr "Szállítói információ" #. module: product #: field:product.price.type,currency_id:0 #: report:product.pricelist:0 #: field:product.pricelist,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Pénznem" #. module: product #: model:product.template,name:product.product_product_ram_product_template @@ -837,7 +839,7 @@ msgstr "" #. module: product #: view:product.category:0 msgid "Product Categories" -msgstr "" +msgstr "Termékkategóriák" #. module: product #: view:product.uom:0 @@ -885,7 +887,7 @@ msgstr "" #. module: product #: model:ir.model,name:product.model_product_supplierinfo msgid "Information about a product supplier" -msgstr "" +msgstr "Információ a termék beszállítójáról." #. module: product #: view:product.product:0 @@ -897,7 +899,7 @@ msgstr "" #: view:product.template:0 #: field:product.template,description_purchase:0 msgid "Purchase Description" -msgstr "" +msgstr "Beszerzési leírás" #. module: product #: constraint:product.pricelist.version:0 @@ -925,17 +927,17 @@ msgstr "" #. module: product #: selection:product.template,type:0 msgid "Stockable Product" -msgstr "" +msgstr "Készletezhető termék" #. module: product #: field:product.packaging,code:0 msgid "Code" -msgstr "" +msgstr "Kód" #. module: product #: view:product.supplierinfo:0 msgid "Seq" -msgstr "" +msgstr "Sorsz." #. module: product #: view:product.price_list:0 @@ -1029,7 +1031,7 @@ msgstr "" #. module: product #: field:product.product,packaging:0 msgid "Logistical Units" -msgstr "" +msgstr "Szállítási egységek" #. module: product #: field:product.category,complete_name:0 @@ -1042,7 +1044,7 @@ msgstr "" #: field:product.uom,name:0 #: field:product.uom.categ,name:0 msgid "Name" -msgstr "" +msgstr "Név" #. module: product #: view:product.product:0 @@ -1135,7 +1137,7 @@ msgstr "" #. module: product #: field:product.template,uos_id:0 msgid "Unit of Sale" -msgstr "" +msgstr "Eladási egység" #. module: product #: model:ir.module.module,description:product.module_meta_information @@ -1178,7 +1180,7 @@ msgstr "" #: model:product.category,name:product.product_category_services #: view:product.product:0 msgid "Services" -msgstr "" +msgstr "Szolgáltatások" #. module: product #: field:product.pricelist.item,base_pricelist_id:0 @@ -1192,7 +1194,7 @@ msgstr "Alapárlista" #: model:ir.ui.menu,name:product.menu_products #: view:product.product:0 msgid "Products" -msgstr "" +msgstr "Termékek" #. module: product #: help:product.packaging,rows:0 @@ -1219,7 +1221,7 @@ msgstr "" #. module: product #: field:product.template,seller_ids:0 msgid "Partners" -msgstr "" +msgstr "Partnerek" #. module: product #: sql_constraint:res.users:0 @@ -1247,7 +1249,7 @@ msgstr "" #: view:product.product:0 #: view:product.template:0 msgid "Second UoM" -msgstr "" +msgstr "Második mértékegység" #. module: product #: code:addons/product/product.py:0 @@ -1261,12 +1263,12 @@ msgstr "" #: model:ir.ui.menu,name:product.next_id_16 #: view:product.uom:0 msgid "Units of Measure" -msgstr "" +msgstr "Mértékegységek" #. module: product #: field:product.supplierinfo,min_qty:0 msgid "Minimal Quantity" -msgstr "" +msgstr "Minimum mennyiség" #. module: product #: model:product.category,name:product.product_category_pc @@ -1283,7 +1285,7 @@ msgstr "" #. module: product #: selection:product.template,procure_method:0 msgid "Make to Stock" -msgstr "" +msgstr "Készletre gyártás" #. module: product #: field:product.pricelist.item,price_version_id:0 @@ -1306,12 +1308,12 @@ msgstr "" #. module: product #: help:product.price.type,currency_id:0 msgid "The currency the field is expressed in." -msgstr "" +msgstr "A mezőhöz használt pénznem" #. module: product #: help:product.template,weight:0 msgid "The gross weight in Kg." -msgstr "" +msgstr "Bruttó súly (kg)" #. module: product #: view:product.product:0 @@ -1322,12 +1324,12 @@ msgstr "" #. module: product #: field:product.uom,category_id:0 msgid "UoM Category" -msgstr "" +msgstr "Mértékegység kategória" #. module: product #: field:product.template,loc_rack:0 msgid "Rack" -msgstr "" +msgstr "Állvány" #. module: product #: field:product.template,uom_po_id:0 @@ -1401,7 +1403,7 @@ msgstr "" #. module: product #: field:product.product,qty_available:0 msgid "Real Stock" -msgstr "" +msgstr "Valós készlet" #. module: product #: model:product.uom,name:product.product_uom_cm @@ -1411,13 +1413,15 @@ msgstr "" #. module: product #: model:ir.model,name:product.model_product_uom msgid "Product Unit of Measure" -msgstr "" +msgstr "Termék mértékegysége" #. module: product #: constraint:product.template:0 msgid "" "Error: The default UOM and the purchase UOM must be in the same category." msgstr "" +"Hiba: Az alapértelmezett mennyiségi egységnek és a beszerzési mennyiségi " +"egységének ugyanabban a kategóriában kell lennie." #. module: product #: constraint:res.users:0 @@ -1427,7 +1431,7 @@ msgstr "" #. module: product #: field:product.uom,rounding:0 msgid "Rounding Precision" -msgstr "" +msgstr "Kerekítési pontosság" #. module: product #: view:product.uom:0 @@ -1447,7 +1451,7 @@ msgstr "" #. module: product #: view:product.uom.categ:0 msgid "Units of Measure categories" -msgstr "" +msgstr "Mennyiségi egység kategóriák" #. module: product #: help:product.packaging,weight_ul:0 @@ -1481,7 +1485,7 @@ msgstr "" #. module: product #: help:product.packaging,ean:0 msgid "The EAN code of the package unit." -msgstr "" +msgstr "A csomagolási egység EAN kódja." #. module: product #: field:product.packaging,weight_ul:0 @@ -1496,7 +1500,7 @@ msgstr "" #. module: product #: model:ir.actions.act_window,name:product.product_pricelist_type_action msgid "Pricelists Types" -msgstr "" +msgstr "Árlista típusok" #. module: product #: help:product.uom,factor:0 @@ -1509,6 +1513,7 @@ msgstr "" #: help:product.template,uom_id:0 msgid "Default Unit of Measure used for all stock operation." msgstr "" +"A készletezési műveletekhez használatos alapértelmezett mennyiségi egység." #. module: product #: model:product.category,name:product.product_category_misc0 @@ -1523,7 +1528,7 @@ msgstr "" #. module: product #: field:pricelist.partnerinfo,price:0 msgid "Unit Price" -msgstr "" +msgstr "Egységár" #. module: product #: model:ir.actions.act_window,help:product.product_normal_action_puchased @@ -1568,12 +1573,12 @@ msgstr "" #. module: product #: field:product.packaging,ul_qty:0 msgid "Package by layer" -msgstr "" +msgstr "Csomagok száma rétegenként" #. module: product #: field:product.template,warranty:0 msgid "Warranty (months)" -msgstr "" +msgstr "Szavatosság (hónap)" #. module: product #: model:ir.model,name:product.model_product_product @@ -1586,7 +1591,7 @@ msgstr "" #: field:product.supplierinfo,product_id:0 #: model:res.request.link,name:product.req_link_product msgid "Product" -msgstr "" +msgstr "Termék" #. module: product #: selection:product.template,supply_method:0 @@ -1596,7 +1601,7 @@ msgstr "" #. module: product #: selection:product.template,procure_method:0 msgid "Make to Order" -msgstr "" +msgstr "Rendelésre gyártás" #. module: product #: help:product.packaging,qty:0 @@ -1606,24 +1611,24 @@ msgstr "" #. module: product #: field:product.product,variants:0 msgid "Variants" -msgstr "" +msgstr "Változatok" #. module: product #: model:ir.actions.act_window,name:product.product_category_action #: model:ir.ui.menu,name:product.menu_products_category msgid "Products by Category" -msgstr "" +msgstr "Termékek kategóriánként" #. module: product #: model:ir.actions.act_window,name:product.product_category_action_form #: model:ir.ui.menu,name:product.menu_product_category_action_form msgid "Products Categories" -msgstr "" +msgstr "Termék kategóriák" #. module: product #: field:product.template,uos_coeff:0 msgid "UOM -> UOS Coeff" -msgstr "" +msgstr "ME -> EE átváltás" #. module: product #: help:product.supplierinfo,sequence:0 @@ -1653,7 +1658,7 @@ msgstr "Kerekítési metódus" #. module: product #: model:ir.actions.report.xml,name:product.report_product_label msgid "Products Labels" -msgstr "" +msgstr "Termék címkék" #. module: product #: model:product.ul,name:product.product_ul_big_box @@ -1673,7 +1678,7 @@ msgstr "Csomag magassága" #. module: product #: view:product.pricelist:0 msgid "Products Price List" -msgstr "" +msgstr "Termék árlisták" #. module: product #: field:product.pricelist,company_id:0 @@ -1687,20 +1692,20 @@ msgstr "" #. module: product #: model:ir.actions.act_window,name:product.product_price_type_action msgid "Prices Types" -msgstr "" +msgstr "Ártípusok" #. module: product #: help:product.template,list_price:0 msgid "" "Base price for computing the customer price. Sometimes called the catalog " "price." -msgstr "" +msgstr "Az eladási ár alapjául szolgál. Szokás katalógusárnak is nevezni." #. module: product #: code:addons/product/pricelist.py:0 #, python-format msgid "Partner section of the product form" -msgstr "" +msgstr "A termék űrlap Partner adatai" #. module: product #: help:product.price.type,name:0 @@ -1732,7 +1737,7 @@ msgstr "" #. module: product #: field:product.packaging,length:0 msgid "Length" -msgstr "" +msgstr "Hossz" #. module: product #: model:product.uom.categ,name:product.uom_categ_length @@ -1749,7 +1754,7 @@ msgstr "" #: field:product.pricelist,type:0 #: view:product.pricelist.type:0 msgid "Pricelist Type" -msgstr "" +msgstr "Árlista típus" #. module: product #: model:product.category,name:product.product_category_otherproducts0 @@ -1769,12 +1774,12 @@ msgstr "" #. module: product #: field:product.template,produce_delay:0 msgid "Manufacturing Lead Time" -msgstr "" +msgstr "Gyártási átfutási idő" #. module: product #: field:product.supplierinfo,pricelist_ids:0 msgid "Supplier Pricelist" -msgstr "" +msgstr "Beszállítói árlista" #. module: product #: field:product.pricelist.item,base:0 @@ -1797,14 +1802,14 @@ msgstr "" #. module: product #: field:product.pricelist,name:0 msgid "Pricelist Name" -msgstr "" +msgstr "Árlista név" #. module: product #: model:ir.model,name:product.model_product_pricelist_version #: view:product.pricelist:0 #: view:product.pricelist.version:0 msgid "Pricelist Version" -msgstr "" +msgstr "Árlista változat" #. module: product #: view:product.pricelist.item:0 @@ -1835,7 +1840,7 @@ msgstr "" #: model:ir.model,name:product.model_product_category #: field:product.pricelist.item,categ_id:0 msgid "Product Category" -msgstr "" +msgstr "Termék kategória" #. module: product #: report:product.pricelist:0 @@ -1862,7 +1867,7 @@ msgstr "" #. module: product #: selection:product.ul,type:0 msgid "Box" -msgstr "" +msgstr "Doboz" #. module: product #: model:ir.actions.act_window,help:product.product_ul_form_action @@ -1911,7 +1916,7 @@ msgstr "" #. module: product #: model:product.uom.categ,name:product.product_uom_categ_kgm msgid "Weight" -msgstr "" +msgstr "Súly" #. module: product #: model:product.template,name:product.product_product_22_product_template @@ -1921,7 +1926,7 @@ msgstr "" #. module: product #: model:product.template,name:product.product_product_25_product_template msgid "Mouse" -msgstr "" +msgstr "Egér" #. module: product #: field:product.uom,uom_type:0 @@ -1944,12 +1949,12 @@ msgstr "" #: view:product.product:0 #: view:product.template:0 msgid "Descriptions" -msgstr "" +msgstr "Leírások" #. module: product #: field:product.template,loc_row:0 msgid "Row" -msgstr "" +msgstr "Sor" #. module: product #: model:product.template,name:product.product_product_rearpanelarm0_product_template @@ -1965,7 +1970,7 @@ msgstr "" #: view:product.product:0 #: view:product.template:0 msgid "Weigths" -msgstr "" +msgstr "Súlyok" #. module: product #: constraint:res.partner:0 @@ -1997,7 +2002,7 @@ msgstr "" #. module: product #: field:product.pricelist.item,price_round:0 msgid "Price Rounding" -msgstr "" +msgstr "Árkerekítés" #. module: product #: field:product.pricelist.item,price_max_margin:0 @@ -2025,7 +2030,7 @@ msgstr "" #: model:product.price.type,name:product.standard_price #: field:product.template,standard_price:0 msgid "Cost Price" -msgstr "" +msgstr "Önköltségi ár" #. module: product #: field:product.pricelist.item,price_min_margin:0 @@ -2035,7 +2040,7 @@ msgstr "" #. module: product #: field:product.template,weight:0 msgid "Gross weight" -msgstr "" +msgstr "Bruttó súly" #. module: product #: model:product.template,name:product.product_product_assemblysection0_product_template @@ -2068,7 +2073,7 @@ msgstr "" #. module: product #: model:ir.model,name:product.model_product_pricelist_item msgid "Pricelist item" -msgstr "" +msgstr "Árlista tétel" #. module: product #: model:product.template,name:product.product_product_21_product_template @@ -2112,7 +2117,7 @@ msgstr "" #: view:product.template:0 #: field:product.template,description:0 msgid "Description" -msgstr "" +msgstr "Leírás" #. module: product #: code:addons/product/pricelist.py:0 @@ -2125,7 +2130,7 @@ msgstr "" #. module: product #: view:product.template:0 msgid "Product Description" -msgstr "" +msgstr "Termékleírás" #. module: product #: view:product.pricelist.item:0 @@ -2142,12 +2147,12 @@ msgstr "" #. module: product #: field:product.template,volume:0 msgid "Volume" -msgstr "" +msgstr "Térfogat" #. module: product #: field:product.template,loc_case:0 msgid "Case" -msgstr "" +msgstr "Rekesz" #. module: product #: view:product.product:0 @@ -2171,7 +2176,7 @@ msgstr "" #: field:product.product,product_tmpl_id:0 #: view:product.template:0 msgid "Product Template" -msgstr "" +msgstr "Terméksablon" #. module: product #: field:product.template,cost_method:0 @@ -2201,7 +2206,7 @@ msgstr "" #: model:ir.ui.menu,name:product.menu_product_pricelist_action #: field:product.pricelist,version_id:0 msgid "Pricelist Versions" -msgstr "" +msgstr "Árlista változatok" #. module: product #: field:product.category,sequence:0 diff --git a/addons/product/i18n/pt_BR.po b/addons/product/i18n/pt_BR.po index cffe3d42fb7..7bdcf020a2f 100644 --- a/addons/product/i18n/pt_BR.po +++ b/addons/product/i18n/pt_BR.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-29 14:10+0000\n" +"PO-Revision-Date: 2010-12-31 08:37+0000\n" "Last-Translator: Cristiano Korndörfer \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:26+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:03+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: product diff --git a/addons/product/i18n/zh_CN.po b/addons/product/i18n/zh_CN.po index 8b0f2b256c4..142fd87f1f6 100644 --- a/addons/product/i18n/zh_CN.po +++ b/addons/product/i18n/zh_CN.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-30 02:44+0000\n" +"PO-Revision-Date: 2010-12-31 10:15+0000\n" "Last-Translator: Wei \"oldrev\" Li \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:26+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:03+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: product diff --git a/addons/product_visible_discount/i18n/de.po b/addons/product_visible_discount/i18n/de.po index 55efe21ab24..3356bd97fc5 100644 --- a/addons/product_visible_discount/i18n/de.po +++ b/addons/product_visible_discount/i18n/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-29 08:17+0000\n" +"PO-Revision-Date: 2010-12-31 10:56+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: product_visible_discount diff --git a/addons/product_visible_discount/i18n/es.po b/addons/product_visible_discount/i18n/es.po index f474a0dd451..4e360eda35e 100644 --- a/addons/product_visible_discount/i18n/es.po +++ b/addons/product_visible_discount/i18n/es.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-28 08:26+0000\n" +"PO-Revision-Date: 2011-01-01 07:19+0000\n" "Last-Translator: Jordi Esteve (www.zikzakmedia.com) " "\n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-29 04:57+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: product_visible_discount @@ -49,18 +49,17 @@ msgid "" msgstr "" "\n" " Este módulo permite calcular descuentos en las líneas del Pedido de " -"Ventas y en las de la Factura basados en la lista de precios del proveedor.\n" -" Para esto, una nueva casilla de selección llamada \"Descuento visible\" " -"se añade al formulario de la lista de precios.\n" +"Ventas y en las de la Factura basados en la tarifa de la empresa.\n" +" Para ello se añade al formulario de la tarifa una nueva opción llamada " +"\"Descuento visible\".\n" " Ejemplo:\n" -" Para el producto PC1 y el proveedor \"Asustek\": si el precio de " -"lista es 450 y el precio calculado con la lista de precios de Asustek es " -"225\n" -" Si la casilla de selección está activada, en la línea del pedido " -"aparecerá: precio unicario=450, Descuento=50,00, Precio neto=225\n" -" Si la casilla de selección está desactivada, en la línea del pedido " -"y en la factura aparecerá: Precio unitario=225, Descuento=0,00, Precio " -"neto=225\n" +" Para el producto PC1 y la empresa \"Asustek\": si el precio de venta " +"es 450 y el precio calculado con la tarifa de Asustek es 225:\n" +" Si la opción \"Descuento visible\" está activada, en la línea del " +"pedido aparecerá: precio unitario=450, Descuento=50,00, Precio neto=225\n" +" Si la opción \"Descuento visible\" está desactivada, en la línea del " +"pedido y en la factura aparecerá: Precio unitario=225, Descuento=0,00, " +"Precio neto=225\n" " " #. module: product_visible_discount diff --git a/addons/profile_tools/i18n/de.po b/addons/profile_tools/i18n/de.po index 99e4d2f1c0f..4c7e0e7ab1b 100644 --- a/addons/profile_tools/i18n/de.po +++ b/addons/profile_tools/i18n/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-30 23:16+0000\n" +"PO-Revision-Date: 2010-12-31 11:01+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: profile_tools diff --git a/addons/project/i18n/de.po b/addons/project/i18n/de.po index e0e20c5208e..4a21aec6aab 100644 --- a/addons/project/i18n/de.po +++ b/addons/project/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-30 23:17+0000\n" +"PO-Revision-Date: 2010-12-31 10:21+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:22+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:00+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project diff --git a/addons/project/i18n/lv.po b/addons/project/i18n/lv.po index 3551c7db3ad..cf2be51504b 100644 --- a/addons/project/i18n/lv.po +++ b/addons/project/i18n/lv.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-30 18:14+0000\n" -"Last-Translator: Vladimirs Kuzmins \n" +"PO-Revision-Date: 2010-12-31 10:58+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:22+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:00+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project diff --git a/addons/project_caldav/i18n/de.po b/addons/project_caldav/i18n/de.po index 617dff3ddf6..4739104eabb 100644 --- a/addons/project_caldav/i18n/de.po +++ b/addons/project_caldav/i18n/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-30 23:17+0000\n" +"PO-Revision-Date: 2010-12-31 11:01+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_caldav diff --git a/addons/project_caldav/i18n/es.po b/addons/project_caldav/i18n/es.po index a5b4318857e..08a542bbde8 100644 --- a/addons/project_caldav/i18n/es.po +++ b/addons/project_caldav/i18n/es.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-29 08:44+0000\n" +"PO-Revision-Date: 2010-12-31 08:51+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_caldav diff --git a/addons/project_caldav/i18n/lv.po b/addons/project_caldav/i18n/lv.po index 3c150efee01..614a62aa37b 100644 --- a/addons/project_caldav/i18n/lv.po +++ b/addons/project_caldav/i18n/lv.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-30 18:41+0000\n" -"Last-Translator: Vladimirs Kuzmins \n" +"PO-Revision-Date: 2010-12-31 10:23+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_caldav diff --git a/addons/project_gtd/i18n/de.po b/addons/project_gtd/i18n/de.po index 9412eeb598a..322dc2b2033 100644 --- a/addons/project_gtd/i18n/de.po +++ b/addons/project_gtd/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-29 08:42+0000\n" +"PO-Revision-Date: 2010-12-31 10:32+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:26+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_gtd diff --git a/addons/project_gtd/i18n/lv.po b/addons/project_gtd/i18n/lv.po new file mode 100644 index 00000000000..162b5c40a2b --- /dev/null +++ b/addons/project_gtd/i18n/lv.po @@ -0,0 +1,286 @@ +# Latvian translation for openobject-addons +# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2010-12-21 19:44+0000\n" +"PO-Revision-Date: 2011-01-01 22:09+0000\n" +"Last-Translator: Vladimirs Kuzmins \n" +"Language-Team: Latvian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-01-02 05:01+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. module: project_gtd +#: help:project.task,timebox_id:0 +msgid "Time-laps during which task has to be treated" +msgstr "Laika sprīži, kad jātiek galā ar uzdevumu" + +#. module: project_gtd +#: model:ir.model,name:project_gtd.model_project_gtd_timebox +msgid "project.gtd.timebox" +msgstr "project.gtd.timebox" + +#. module: project_gtd +#: view:project.task:0 +msgid "Reactivate" +msgstr "Aktivizēt atkal" + +#. module: project_gtd +#: help:project.gtd.timebox,sequence:0 +msgid "Gives the sequence order when displaying a list of timebox." +msgstr "Attēlo laika sprīžu sarakstu secībā pēc kārtas." + +#. module: project_gtd +#: model:project.gtd.context,name:project_gtd.context_travel +msgid "Travel" +msgstr "Ceļojumi" + +#. module: project_gtd +#: view:project.timebox.empty:0 +msgid "Timebox Empty Process Completed Successfully." +msgstr "Laika sprīža iztukšošanas process noslēdzies veiksmīgi." + +#. module: project_gtd +#: code:addons/project_gtd/wizard/project_gtd_empty.py:0 +#, python-format +msgid "No timebox child of this one !" +msgstr "Šim laika sprīdima nav pakarātotā!" + +#. module: project_gtd +#: model:ir.actions.act_window,help:project_gtd.open_gtd_timebox_tree +msgid "" +"Timeboxes are defined in the \"Getting Things Done\" methodology. It defines " +"a period of time in order to categorize your tasks: today, this week, this " +"month, long term." +msgstr "" + +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "GTD" +msgstr "GTD" + +#. module: project_gtd +#: model:project.gtd.timebox,name:project_gtd.timebox_lt +msgid "Long Term" +msgstr "Ilgtermiņa" + +#. module: project_gtd +#: model:ir.model,name:project_gtd.model_project_timebox_empty +msgid "Project Timebox Empty" +msgstr "Projekta laika sprīdis tukšs" + +#. module: project_gtd +#: model:project.gtd.timebox,name:project_gtd.timebox_daily +msgid "Today" +msgstr "Šodien" + +#. module: project_gtd +#: view:project.gtd.timebox:0 +#: field:project.gtd.timebox,name:0 +#: view:project.task:0 +#: field:project.task,timebox_id:0 +msgid "Timebox" +msgstr "Laika sprīdis" + +#. module: project_gtd +#: model:ir.module.module,shortdesc:project_gtd.module_meta_information +msgid "Getting Things Done - Time Management Module" +msgstr "Getting Things Done - Laika vadības modulis" + +#. module: project_gtd +#: field:project.timebox.fill.plan,timebox_to_id:0 +msgid "Set to Timebox" +msgstr "Iestatīt par laika sprīdi" + +#. module: project_gtd +#: code:addons/project_gtd/wizard/project_gtd_empty.py:0 +#, python-format +msgid "Error !" +msgstr "Kļūda!" + +#. module: project_gtd +#: constraint:project.task:0 +msgid "Error ! You cannot create recursive tasks." +msgstr "Kļūda! Nedrīkst veidot rekursīvus uzdevumus." + +#. module: project_gtd +#: view:project.timebox.fill.plan:0 +msgid "_Cancel" +msgstr "_Atcelt" + +#. module: project_gtd +#: model:ir.actions.act_window,name:project_gtd.action_project_gtd_empty +#: view:project.timebox.empty:0 +msgid "Empty Timebox" +msgstr "Iztīrīt laika sprīdi" + +#. module: project_gtd +#: model:project.gtd.timebox,name:project_gtd.timebox_weekly +msgid "This Week" +msgstr "Šajā nedēļā" + +#. module: project_gtd +#: model:project.gtd.timebox,name:project_gtd.timebox_monthly +msgid "This Month" +msgstr "Šajā mēnesī" + +#. module: project_gtd +#: field:project.gtd.timebox,icon:0 +msgid "Icon" +msgstr "Ikona" + +#. module: project_gtd +#: model:ir.model,name:project_gtd.model_project_timebox_fill_plan +msgid "Project Timebox Fill" +msgstr "Projekta laika sprīža aizpildīšana" + +#. module: project_gtd +#: model:ir.model,name:project_gtd.model_project_task +msgid "Task" +msgstr "Uzdevums" + +#. module: project_gtd +#: view:project.timebox.fill.plan:0 +msgid "Add to Timebox" +msgstr "Pievienot laika sprīdīm" + +#. module: project_gtd +#: field:project.timebox.empty,name:0 +msgid "Name" +msgstr "Nosaukums" + +#. module: project_gtd +#: model:ir.actions.act_window,name:project_gtd.open_gtd_context_tree +#: model:ir.ui.menu,name:project_gtd.menu_open_gtd_time_contexts +msgid "Contexts" +msgstr "Konteksts" + +#. module: project_gtd +#: model:project.gtd.context,name:project_gtd.context_car +msgid "Car" +msgstr "Mašīna" + +#. module: project_gtd +#: model:ir.module.module,description:project_gtd.module_meta_information +msgid "" +"\n" +"This module implements all concepts defined by the Getting Things Done\n" +"methodology. This world-wide used methodology is used for personal\n" +"time management improvement.\n" +"\n" +"Getting Things Done (commonly abbreviated as GTD) is an action management\n" +"method created by David Allen, and described in a book of the same name.\n" +"\n" +"GTD rests on the principle that a person needs to move tasks out of the mind " +"by\n" +"recording them externally. That way, the mind is freed from the job of\n" +"remembering everything that needs to be done, and can concentrate on " +"actually\n" +"performing those tasks.\n" +" " +msgstr "" + +#. module: project_gtd +#: model:ir.actions.act_window,name:project_gtd.action_project_gtd_fill +#: view:project.timebox.fill.plan:0 +msgid "Plannify Timebox" +msgstr "Plānot laika sprīdi" + +#. module: project_gtd +#: model:ir.actions.act_window,name:project_gtd.open_gtd_timebox_tree +#: model:ir.ui.menu,name:project_gtd.menu_open_gtd_time_timeboxes +#: view:project.gtd.timebox:0 +msgid "Timeboxes" +msgstr "Laika sprīži" + +#. module: project_gtd +#: model:ir.model,name:project_gtd.model_project_gtd_context +#: view:project.gtd.context:0 +#: field:project.gtd.context,name:0 +#: field:project.task,context_id:0 +msgid "Context" +msgstr "Konteksts" + +#. module: project_gtd +#: view:project.task:0 +msgid "Next" +msgstr "Nākamais" + +#. module: project_gtd +#: view:project.timebox.empty:0 +msgid "_Ok" +msgstr "_Labi" + +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Getting Things Done" +msgstr "Getting Things Done" + +#. module: project_gtd +#: model:project.gtd.context,name:project_gtd.context_office +msgid "Office" +msgstr "Birojs" + +#. module: project_gtd +#: field:project.gtd.context,sequence:0 +#: field:project.gtd.timebox,sequence:0 +msgid "Sequence" +msgstr "Secība" + +#. module: project_gtd +#: model:ir.actions.act_window,help:project_gtd.open_gtd_context_tree +msgid "" +"Contexts are defined in the \"Getting Things Done\" methodology. It allows " +"you to categorize your tasks according to the context in which they have to " +"be done: at office, at home, when I take my car, etc." +msgstr "" + +#. module: project_gtd +#: help:project.gtd.context,sequence:0 +msgid "Gives the sequence order when displaying a list of contexts." +msgstr "Attēlo kontekstu sarakstu secībā pēc kārtas." + +#. module: project_gtd +#: view:project.gtd.timebox:0 +msgid "Timebox Definition" +msgstr "Laika sprīža definīcija" + +#. module: project_gtd +#: field:project.timebox.fill.plan,task_ids:0 +msgid "Tasks selection" +msgstr "Uzdevumu izvēlēšanās" + +#. module: project_gtd +#: code:addons/project_gtd/project_gtd.py:0 +#, python-format +msgid "Inbox" +msgstr "Ienākošie" + +#. module: project_gtd +#: field:project.timebox.fill.plan,timebox_id:0 +msgid "Get from Timebox" +msgstr "Paņemt no laika sprīža" + +#. module: project_gtd +#: help:project.task,context_id:0 +msgid "The context place where user has to treat task" +msgstr "Konteksta vieta, kur lietotājam jātiek galā ar uzdevumu" + +#. module: project_gtd +#: model:project.gtd.context,name:project_gtd.context_home +msgid "Home" +msgstr "Mājas" + +#. module: project_gtd +#: view:project.task:0 +msgid "Previous" +msgstr "Iepriekšējais" diff --git a/addons/project_issue/i18n/de.po b/addons/project_issue/i18n/de.po index d7200cc7636..c339a0a6d01 100644 --- a/addons/project_issue/i18n/de.po +++ b/addons/project_issue/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-29 08:43+0000\n" +"PO-Revision-Date: 2010-12-31 10:25+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/es.po b/addons/project_issue/i18n/es.po index 7cde11a1d5f..852d9802d9e 100644 --- a/addons/project_issue/i18n/es.po +++ b/addons/project_issue/i18n/es.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-29 10:01+0000\n" +"PO-Revision-Date: 2010-12-31 10:26+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_issue diff --git a/addons/project_issue/i18n/lv.po b/addons/project_issue/i18n/lv.po index 81d90de9a1e..e1058f16d04 100644 --- a/addons/project_issue/i18n/lv.po +++ b/addons/project_issue/i18n/lv.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-30 18:19+0000\n" -"Last-Translator: Vladimirs Kuzmins \n" +"PO-Revision-Date: 2010-12-31 10:59+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_issue diff --git a/addons/project_issue_sheet/i18n/fr.po b/addons/project_issue_sheet/i18n/fr.po index 7c0763684e5..c6a461a8055 100644 --- a/addons/project_issue_sheet/i18n/fr.po +++ b/addons/project_issue_sheet/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-29 07:36+0000\n" -"Last-Translator: Aline (OpenERP) \n" +"PO-Revision-Date: 2010-12-31 11:01+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_issue_sheet diff --git a/addons/project_issue_sheet/i18n/lv.po b/addons/project_issue_sheet/i18n/lv.po index 5389270f7c6..2b2da0f8ca3 100644 --- a/addons/project_issue_sheet/i18n/lv.po +++ b/addons/project_issue_sheet/i18n/lv.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-30 18:43+0000\n" -"Last-Translator: Vladimirs Kuzmins \n" +"PO-Revision-Date: 2010-12-31 10:58+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_issue_sheet diff --git a/addons/project_long_term/i18n/de.po b/addons/project_long_term/i18n/de.po index e23ed4afc0a..9c4a72f7a7c 100644 --- a/addons/project_long_term/i18n/de.po +++ b/addons/project_long_term/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-30 23:18+0000\n" +"PO-Revision-Date: 2010-12-31 14:22+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_long_term @@ -187,7 +187,8 @@ msgstr "Ende Datum" #. module: project_long_term #: help:project.phase,date_end:0 -msgid "It's computed by the scheduler according to the start date and the duration." +msgid "" +"It's computed by the scheduler according to the start date and the duration." msgstr "Ende Datum d. Phase" #. module: project_long_term @@ -540,7 +541,10 @@ msgstr "Phase" #. module: project_long_term #: help:project.phase,date_start:0 -msgid "It's computed according to the phases order : the start date of the 1st phase is set by you while the other start dates depend on the end date of their previous phases" +msgid "" +"It's computed according to the phases order : the start date of the 1st " +"phase is set by you while the other start dates depend on the end date of " +"their previous phases" msgstr "Beginn der Phase" #. module: project_long_term diff --git a/addons/project_long_term/i18n/es.po b/addons/project_long_term/i18n/es.po index 2e961b5d93f..97294142262 100644 --- a/addons/project_long_term/i18n/es.po +++ b/addons/project_long_term/i18n/es.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-29 09:54+0000\n" +"PO-Revision-Date: 2010-12-31 10:23+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_long_term @@ -167,8 +167,9 @@ msgstr "Fecha de fin" #. module: project_long_term #: help:project.phase,date_end:0 -msgid "Ending Date of the phase" -msgstr "Fecha de fin de la fase" +msgid "" +"It's computed by the scheduler according to the start date and the duration." +msgstr "" #. module: project_long_term #: view:project.phase:0 @@ -507,7 +508,10 @@ msgstr "Fase" #. module: project_long_term #: help:project.phase,date_start:0 -msgid "Starting Date of the phase" +msgid "" +"It's computed according to the phases order : the start date of the 1st " +"phase is set by you while the other start dates depend on the end date of " +"their previous phases" msgstr "" #. module: project_long_term @@ -614,3 +618,6 @@ msgstr "Por defecto en días" #: field:project.phase,duration:0 msgid "Duration" msgstr "Duración" + +#~ msgid "Ending Date of the phase" +#~ msgstr "Fecha de fin de la fase" diff --git a/addons/project_long_term/i18n/fr.po b/addons/project_long_term/i18n/fr.po index b66650adf71..3b7d111daac 100644 --- a/addons/project_long_term/i18n/fr.po +++ b/addons/project_long_term/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-24 22:25+0000\n" +"PO-Revision-Date: 2010-12-31 11:08+0000\n" "Last-Translator: lolivier \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-25 04:52+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_long_term @@ -164,7 +164,8 @@ msgstr "Date de fin" #. module: project_long_term #: help:project.phase,date_end:0 -msgid "It's computed by the scheduler according to the start date and the duration." +msgid "" +"It's computed by the scheduler according to the start date and the duration." msgstr "Date de fin de la phase" #. module: project_long_term @@ -518,7 +519,10 @@ msgstr "Phase" #. module: project_long_term #: help:project.phase,date_start:0 -msgid "It's computed according to the phases order : the start date of the 1st phase is set by you while the other start dates depend on the end date of their previous phases" +msgid "" +"It's computed according to the phases order : the start date of the 1st " +"phase is set by you while the other start dates depend on the end date of " +"their previous phases" msgstr "Date de début de la phase" #. module: project_long_term diff --git a/addons/project_long_term/i18n/lv.po b/addons/project_long_term/i18n/lv.po index 276527c2e23..508efda1634 100644 --- a/addons/project_long_term/i18n/lv.po +++ b/addons/project_long_term/i18n/lv.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-30 22:20+0000\n" -"Last-Translator: Vladimirs Kuzmins \n" +"PO-Revision-Date: 2010-12-31 10:24+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_long_term @@ -165,8 +165,9 @@ msgstr "Beigu Datums" #. module: project_long_term #: help:project.phase,date_end:0 -msgid "Ending Date of the phase" -msgstr "Fāzes beigu datums" +msgid "" +"It's computed by the scheduler according to the start date and the duration." +msgstr "" #. module: project_long_term #: view:project.phase:0 @@ -504,8 +505,11 @@ msgstr "Fāze" #. module: project_long_term #: help:project.phase,date_start:0 -msgid "Starting Date of the phase" -msgstr "Fāzes sākuma datums" +msgid "" +"It's computed according to the phases order : the start date of the 1st " +"phase is set by you while the other start dates depend on the end date of " +"their previous phases" +msgstr "" #. module: project_long_term #: help:project.phase,state:0 @@ -611,3 +615,9 @@ msgstr "Pēc noklusējuma dienās" #: field:project.phase,duration:0 msgid "Duration" msgstr "Ilgums" + +#~ msgid "Ending Date of the phase" +#~ msgstr "Fāzes beigu datums" + +#~ msgid "Starting Date of the phase" +#~ msgstr "Fāzes sākuma datums" diff --git a/addons/project_long_term/i18n/pl.po b/addons/project_long_term/i18n/pl.po index 85f801f47ec..7f9ba5b37ef 100644 --- a/addons/project_long_term/i18n/pl.po +++ b/addons/project_long_term/i18n/pl.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-11-05 09:42+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2010-12-31 11:08+0000\n" +"Last-Translator: Sbh (Open ERP) \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:57+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_long_term @@ -165,7 +165,8 @@ msgstr "Data końcowa" #. module: project_long_term #: help:project.phase,date_end:0 -msgid "It's computed by the scheduler according to the start date and the duration." +msgid "" +"It's computed by the scheduler according to the start date and the duration." msgstr "Końcowa data fazy" #. module: project_long_term @@ -505,8 +506,11 @@ msgstr "Faza" #. module: project_long_term #: help:project.phase,date_start:0 -msgid "It's computed according to the phases order : the start date of the 1st phase is set by you while the other start dates depend on the end date of their previous phasesStarting Date of the phase" -msgstr "Data rozpoczęcia fazy" +msgid "" +"It's computed according to the phases order : the start date of the 1st " +"phase is set by you while the other start dates depend on the end date of " +"their previous phases" +msgstr "" #. module: project_long_term #: help:project.phase,state:0 @@ -641,3 +645,9 @@ msgstr "Czas trwania" #~ msgstr "" #~ "Nazwa obiektu musi zaczynać się od x_ oraz nie może zawierać znaków " #~ "specjalnych !" + +#~ msgid "" +#~ "It's computed according to the phases order : the start date of the 1st " +#~ "phase is set by you while the other start dates depend on the end date of " +#~ "their previous phasesStarting Date of the phase" +#~ msgstr "Data rozpoczęcia fazy" diff --git a/addons/project_long_term/i18n/pt.po b/addons/project_long_term/i18n/pt.po index 3ca11d8d557..2d24cac1e7a 100644 --- a/addons/project_long_term/i18n/pt.po +++ b/addons/project_long_term/i18n/pt.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-12 09:19+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2010-12-31 11:07+0000\n" +"Last-Translator: Sbh (Open ERP) \n" "Language-Team: Portuguese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:57+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_long_term @@ -165,7 +165,8 @@ msgstr "Data de fim" #. module: project_long_term #: help:project.phase,date_end:0 -msgid "It's computed by the scheduler according to the start date and the duration." +msgid "" +"It's computed by the scheduler according to the start date and the duration." msgstr "Data de fim da fase" #. module: project_long_term @@ -504,7 +505,10 @@ msgstr "Fase" #. module: project_long_term #: help:project.phase,date_start:0 -msgid "It's computed according to the phases order : the start date of the 1st phase is set by you while the other start dates depend on the end date of their previous phases" +msgid "" +"It's computed according to the phases order : the start date of the 1st " +"phase is set by you while the other start dates depend on the end date of " +"their previous phases" msgstr "Data de início da fase" #. module: project_long_term diff --git a/addons/project_mailgate/i18n/de.po b/addons/project_mailgate/i18n/de.po index 0bec9b7e97a..a0f821fbe21 100644 --- a/addons/project_mailgate/i18n/de.po +++ b/addons/project_mailgate/i18n/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-29 08:44+0000\n" +"PO-Revision-Date: 2010-12-31 10:37+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_mailgate diff --git a/addons/project_mailgate/i18n/lv.po b/addons/project_mailgate/i18n/lv.po index 506f8fdd383..89e69f4a559 100644 --- a/addons/project_mailgate/i18n/lv.po +++ b/addons/project_mailgate/i18n/lv.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-30 23:28+0000\n" -"Last-Translator: Vladimirs Kuzmins \n" +"PO-Revision-Date: 2010-12-31 10:38+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_mailgate diff --git a/addons/project_messages/i18n/de.po b/addons/project_messages/i18n/de.po index 6611a5d0347..08b03bcf4be 100644 --- a/addons/project_messages/i18n/de.po +++ b/addons/project_messages/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-29 08:44+0000\n" +"PO-Revision-Date: 2010-12-31 10:23+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_messages diff --git a/addons/project_messages/i18n/lv.po b/addons/project_messages/i18n/lv.po index f5cc64942ab..8c0e5fead5b 100644 --- a/addons/project_messages/i18n/lv.po +++ b/addons/project_messages/i18n/lv.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-30 23:31+0000\n" -"Last-Translator: Vladimirs Kuzmins \n" +"PO-Revision-Date: 2010-12-31 10:25+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_messages diff --git a/addons/project_mrp/i18n/de.po b/addons/project_mrp/i18n/de.po index abaea45ae51..315d6313365 100644 --- a/addons/project_mrp/i18n/de.po +++ b/addons/project_mrp/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:44+0000\n" -"PO-Revision-Date: 2010-12-29 08:54+0000\n" +"PO-Revision-Date: 2010-12-31 10:39+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:26+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_mrp diff --git a/addons/project_mrp/i18n/lv.po b/addons/project_mrp/i18n/lv.po new file mode 100644 index 00000000000..b90f62cde33 --- /dev/null +++ b/addons/project_mrp/i18n/lv.po @@ -0,0 +1,134 @@ +# Latvian translation for openobject-addons +# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2010-12-21 19:44+0000\n" +"PO-Revision-Date: 2011-01-01 22:15+0000\n" +"Last-Translator: Vladimirs Kuzmins \n" +"Language-Team: Latvian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-01-02 05:01+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. module: project_mrp +#: model:process.node,note:project_mrp.process_node_procuretasktask0 +msgid "For each product, on type service and on order" +msgstr "Katram produktam uz tipu pakalpojumus un pasūtījumu" + +#. module: project_mrp +#: model:process.transition,name:project_mrp.process_transition_procuretask0 +msgid "Procurement Task" +msgstr "Sagādes uzdevums" + +#. module: project_mrp +#: model:ir.module.module,shortdesc:project_mrp.module_meta_information +msgid "Procurement and Project Management integration" +msgstr "Sagādes un projektu vadības integrācija" + +#. module: project_mrp +#: model:process.transition,note:project_mrp.process_transition_createtask0 +msgid "Product type is service, then its creates the task." +msgstr "Produkta tips ir pakalpojums, tad tas veido uzdevumu." + +#. module: project_mrp +#: model:process.transition,note:project_mrp.process_transition_procuretask0 +msgid "if product type is 'service' then it creates the task." +msgstr "Produkta tips ir pakalpojums, tad tas veido uzdevumu." + +#. module: project_mrp +#: constraint:project.task:0 +msgid "Error ! You cannot create recursive tasks." +msgstr "Kļūda! Nedrīkst veidot rekursīvus uzdevumus." + +#. module: project_mrp +#: model:ir.model,name:project_mrp.model_product_product +msgid "Product" +msgstr "Produkts" + +#. module: project_mrp +#: constraint:product.product:0 +msgid "Error: Invalid ean code" +msgstr "Kļūda: nederīgs EAN kods" + +#. module: project_mrp +#: field:product.product,project_id:0 +msgid "Project" +msgstr "Projekts" + +#. module: project_mrp +#: model:ir.model,name:project_mrp.model_procurement_order +#: field:project.task,procurement_id:0 +msgid "Procurement" +msgstr "Sagāde" + +#. module: project_mrp +#: model:ir.model,name:project_mrp.model_project_task +#: model:process.node,name:project_mrp.process_node_mrptask0 +#: model:process.node,name:project_mrp.process_node_procuretasktask0 +#: field:procurement.order,task_id:0 +msgid "Task" +msgstr "Uzdevums" + +#. module: project_mrp +#: model:process.node,note:project_mrp.process_node_mrptask0 +msgid "A task is created to provide the service." +msgstr "Ir izveidots uzdevums, lai nodrošinātu pakalpojumu." + +#. module: project_mrp +#: model:process.transition,name:project_mrp.process_transition_ordertask0 +msgid "Order Task" +msgstr "Pasūtījuma uzdevums" + +#. module: project_mrp +#: model:process.node,name:project_mrp.process_node_saleordertask0 +msgid "Sale Order Task" +msgstr "Klienta pasūtījuma uzdevums" + +#. module: project_mrp +#: model:process.transition,name:project_mrp.process_transition_createtask0 +msgid "Create Task" +msgstr "Izveidot uzdevumu" + +#. module: project_mrp +#: model:ir.module.module,description:project_mrp.module_meta_information +msgid "" +"\n" +"This module creates a link between procurement orders\n" +"containing \"service\" lines and project management tasks.\n" +"\n" +"When installed, this module will automatically create a new task\n" +"for each procurement order line, when the corresponding product\n" +"meets the following characteristics:\n" +" * Type = Service\n" +" * Procurement method (Order fulfillment) = MTO (make to order)\n" +" * Supply/Procurement method = Produce\n" +"\n" +"The new task is created outside of any existing project, but\n" +"can be added to a project manually.\n" +"\n" +"When the project task is completed or cancelled, the workflow of the " +"corresponding\n" +"procurement line is updated accordingly.\n" +"\n" +"This module is useful to be able to invoice services based on tasks\n" +"automatically created via sale orders.\n" +"\n" +msgstr "" + +#. module: project_mrp +#: model:process.transition,note:project_mrp.process_transition_ordertask0 +msgid "If procurement method is Make to order and supply method is produce" +msgstr "" +"Ja sagādes metode ir veidot uz pasūtījuma un piegādes metode ir ražot" + +#. module: project_mrp +#: model:process.node,note:project_mrp.process_node_saleordertask0 +msgid "In case you sell services on sale order" +msgstr "Gadījumā, ja tiek pārdoti pakalpojumi uz klientu pasūtījumu" diff --git a/addons/project_planning/i18n/lv.po b/addons/project_planning/i18n/lv.po new file mode 100644 index 00000000000..37f69da8f05 --- /dev/null +++ b/addons/project_planning/i18n/lv.po @@ -0,0 +1,571 @@ +# Latvian translation for openobject-addons +# Copyright (c) 2010 Rosetta Contributors and Canonical Ltd 2010 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2010. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2010-12-21 19:45+0000\n" +"PO-Revision-Date: 2010-12-31 09:34+0000\n" +"Last-Translator: Vladimirs Kuzmins \n" +"Language-Team: Latvian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. module: project_planning +#: help:report_account_analytic.planning.account,tasks:0 +#: help:report_account_analytic.planning.user,tasks:0 +msgid "" +"This value is given by the sum of work remaining to do on the task for this " +"planning, expressed in days." +msgstr "" + +#. module: project_planning +#: model:ir.actions.act_window,name:project_planning.action_account_analytic_planning_stat_form +#: model:ir.ui.menu,name:project_planning.menu_board_planning +#: model:ir.ui.menu,name:project_planning.menu_report_account_analytic_planning_stat +msgid "Planning Statistics" +msgstr "Plānošanas statistika" + +#. module: project_planning +#: model:ir.model,name:project_planning.model_report_account_analytic_planning_line +#: view:report_account_analytic.planning.line:0 +msgid "Planning Line" +msgstr "Plānošanas rinda" + +#. module: project_planning +#: view:report_account_analytic.planning:0 +msgid "Total Unallocated Time" +msgstr "Neiedalītais laiks kopā" + +#. module: project_planning +#: field:report_account_analytic.planning,name:0 +msgid "Planning Name" +msgstr "Plānošanas nosaukums" + +#. module: project_planning +#: constraint:project.task:0 +msgid "Error ! You cannot create recursive tasks." +msgstr "Kļūda! Nedrīkst veidot rekursīvus uzdevumus." + +#. module: project_planning +#: view:board.board:0 +msgid "My Project's planning" +msgstr "Manu projektu plānošanas" + +#. module: project_planning +#: field:report_account_analytic.planning.account,timesheet:0 +#: report:report_account_analytic.planning.print:0 +#: field:report_account_analytic.planning.stat,sum_amount_real:0 +#: field:report_account_analytic.planning.user,timesheet:0 +msgid "Timesheet" +msgstr "Darba laika uzskaites Tabele" + +#. module: project_planning +#: model:ir.module.module,shortdesc:project_planning.module_meta_information +msgid "Planning Management Module" +msgstr "Plānošanas vadības modulis" + +#. module: project_planning +#: field:report_account_analytic.planning.stat,account_id:0 +msgid "Account" +msgstr "Konts" + +#. module: project_planning +#: model:ir.model,name:project_planning.model_project_task +msgid "Task" +msgstr "Uzdevums" + +#. module: project_planning +#: view:account.analytic.account:0 +#: view:report_account_analytic.planning:0 +#: view:report_account_analytic.planning.line:0 +msgid "Notes" +msgstr "Piezīmes" + +#. module: project_planning +#: field:account.analytic.account,planning_ids:0 +#: model:ir.actions.act_window,name:project_planning.action_account_analytic_planning_form +#: model:ir.ui.menu,name:project_planning.menu_report_account_analytic_planning +msgid "Plannings" +msgstr "Plānošanas" + +#. module: project_planning +#: report:report_account_analytic.planning.print:0 +msgid "Project" +msgstr "Projekts" + +#. module: project_planning +#: view:report_account_analytic.planning:0 +msgid "Start Task" +msgstr "Sākt Uzdevumu" + +#. module: project_planning +#: selection:report_account_analytic.planning,state:0 +msgid "Cancelled" +msgstr "Atcelts" + +#. module: project_planning +#: view:account.analytic.account:0 +#: view:report_account_analytic.planning:0 +#: view:report_account_analytic.planning.line:0 +msgid "Total Planned (in Days)" +msgstr "Plānots kopā (dienās)" + +#. module: project_planning +#: constraint:report_account_analytic.planning:0 +msgid "" +"Invalid planning ! Planning dates can't overlap for the same responsible. " +msgstr "" +"Nekorekta plānošana! Plānotas dienas nedrīkst pārklāties vienam " +"atbildīgajām. " + +#. module: project_planning +#: field:report_account_analytic.planning,planning_account:0 +msgid "Planning By Account" +msgstr "Plānošana pēc konta" + +#. module: project_planning +#: report:report_account_analytic.planning.print:0 +msgid "Time without" +msgstr "Laiks bez" + +#. module: project_planning +#: view:report_account_analytic.planning:0 +msgid "Current Plannings" +msgstr "Aktīvas plānošanas" + +#. module: project_planning +#: model:ir.model,name:project_planning.model_account_analytic_account +msgid "Analytic Account" +msgstr "Analītiskais Konts" + +#. module: project_planning +#: view:report_account_analytic.planning:0 +msgid "Reset to Draft" +msgstr "Atstatīt uz melnrakstu" + +#. module: project_planning +#: view:report_account_analytic.planning:0 +msgid "Extra Info" +msgstr "Papildus Info" + +#. module: project_planning +#: field:report_account_analytic.planning,total_planned:0 +msgid "Total Planned" +msgstr "Plānots kopā" + +#. module: project_planning +#: help:report_account_analytic.planning.account,timesheet:0 +#: help:report_account_analytic.planning.user,timesheet:0 +msgid "" +"This value is given by the sum of all work encoded in the timesheet(s) " +"between the 'Date From' and 'Date To' of the planning." +msgstr "" + +#. module: project_planning +#: constraint:account.analytic.account:0 +msgid "Error! You can not create recursive analytic accounts." +msgstr "Kļūda! Nedrīkst veidot rekursīvus analītiskos kontus" + +#. module: project_planning +#: field:report_account_analytic.planning.account,plan_open:0 +#: field:report_account_analytic.planning.user,plan_open:0 +msgid "Time Allocation without Tasks" +msgstr "Laika iedalīšana bez uzdevumiem" + +#. module: project_planning +#: report:report_account_analytic.planning.print:0 +msgid "From" +msgstr "No" + +#. module: project_planning +#: constraint:res.company:0 +msgid "Error! You can not create recursive companies." +msgstr "Kļūda! Jums nav tiesību veidot rekursīvus uzņēmumus." + +#. module: project_planning +#: field:report_account_analytic.planning.account,account_id:0 +#: field:report_account_analytic.planning.line,account_id:0 +msgid "Analytic account" +msgstr "Analītiskais konts" + +#. module: project_planning +#: help:report_account_analytic.planning.account,plan_open:0 +msgid "" +"This value is given by the sum of time allocation with the checkbox " +"'Assigned in Taks' set to FALSE, expressed in days." +msgstr "" + +#. module: project_planning +#: view:report_account_analytic.planning:0 +msgid "Miscelleanous" +msgstr "Dažādi" + +#. module: project_planning +#: help:res.company,planning_time_mode_id:0 +msgid "This will set the unit of measure used in plannings." +msgstr "Šis iestatīts mērvienību, ko lietos plānošanā." + +#. module: project_planning +#: report:report_account_analytic.planning.print:0 +msgid "HR Planning" +msgstr "HR plānošana" + +#. module: project_planning +#: field:report_account_analytic.planning.account,tasks:0 +#: field:report_account_analytic.planning.user,tasks:0 +msgid "Remaining Tasks" +msgstr "Atlikušie uzdevumi" + +#. module: project_planning +#: view:account.analytic.account:0 +#: model:ir.actions.report.xml,name:project_planning.report_planning +#: model:ir.model,name:project_planning.model_report_account_analytic_planning +#: model:ir.ui.menu,name:project_planning.next_id_85 +#: field:project.task,planning_line_id:0 +#: view:report_account_analytic.planning:0 +#: field:report_account_analytic.planning.account,planning_id:0 +#: field:report_account_analytic.planning.line,planning_id:0 +#: field:report_account_analytic.planning.stat,planning_id:0 +#: field:report_account_analytic.planning.user,planning_id:0 +msgid "Planning" +msgstr "Plānošana" + +#. module: project_planning +#: view:report_account_analytic.planning:0 +msgid "Time Encoding" +msgstr "Laika kodēšana" + +#. module: project_planning +#: field:report_account_analytic.planning.user,free:0 +msgid "Unallocated Time" +msgstr "Neiedalīts laiks" + +#. module: project_planning +#: model:ir.model,name:project_planning.model_report_account_analytic_planning_account +#: view:report_account_analytic.planning:0 +msgid "Planning by Account" +msgstr "Plānošana pēc konta" + +#. module: project_planning +#: help:report_account_analytic.planning.user,plan_open:0 +msgid "" +"This value is given by the sum of time allocation without task(s) linked, " +"expressed in days." +msgstr "" + +#. module: project_planning +#: view:report_account_analytic.planning:0 +msgid "Delegate" +msgstr "Deleģēt" + +#. module: project_planning +#: field:report_account_analytic.planning,stat_ids:0 +msgid "Planning analysis" +msgstr "Plānošanas anlīze" + +#. module: project_planning +#: help:report_account_analytic.planning,business_days:0 +msgid "" +"Set here the number of working days within this planning for one person full " +"time" +msgstr "" + +#. module: project_planning +#: field:report_account_analytic.planning,planning_user_ids:0 +msgid "Planning By User" +msgstr "Plānošana pēc lietotāja" + +#. module: project_planning +#: model:ir.actions.act_window,name:project_planning.act_task_of_lines +#: view:report_account_analytic.planning:0 +#: field:report_account_analytic.planning.stat,sum_amount_tasks:0 +msgid "Tasks" +msgstr "Uzdevumi" + +#. module: project_planning +#: view:report_account_analytic.planning:0 +msgid "Planning By Account (in Days)" +msgstr "Plānošana pēc konta (dienās)" + +#. module: project_planning +#: field:report_account_analytic.planning,date_from:0 +msgid "Start Date" +msgstr "Sākuma datums" + +#. module: project_planning +#: report:report_account_analytic.planning.print:0 +msgid "Total Planned Tasks" +msgstr "Plānotie uzdevumi kopā" + +#. module: project_planning +#: field:report_account_analytic.planning,total_free:0 +msgid "Total Free" +msgstr "Brīvs kopā" + +#. module: project_planning +#: help:report_account_analytic.planning.account,plan_tasks:0 +msgid "" +"This value is given by the sum of time allocation with the checkbox " +"'Assigned in Taks' set to TRUE expressed in days." +msgstr "" + +#. module: project_planning +#: report:report_account_analytic.planning.print:0 +msgid "tasks" +msgstr "uzdevumi" + +#. module: project_planning +#: help:report_account_analytic.planning.user,free:0 +msgid "" +"Computed as Business Days - (Time Allocation of Tasks + Time Allocation " +"without Tasks + Holiday Leaves)" +msgstr "" + +#. module: project_planning +#: field:report_account_analytic.planning.line,amount_unit:0 +msgid "Qty UoM" +msgstr "Daudz. mērv." + +#. module: project_planning +#: field:report_account_analytic.planning.line,note:0 +msgid "Note" +msgstr "Piezīme" + +#. module: project_planning +#: view:report_account_analytic.planning:0 +#: selection:report_account_analytic.planning,state:0 +msgid "Draft" +msgstr "Melnraksts" + +#. module: project_planning +#: view:account.analytic.account:0 +#: view:report_account_analytic.planning:0 +msgid "Planning Lines" +msgstr "Plānošanas rindas" + +#. module: project_planning +#: view:report_account_analytic.planning:0 +msgid "Pending" +msgstr "Neizlemts" + +#. module: project_planning +#: field:report_account_analytic.planning.stat,sum_amount:0 +msgid "Planned Days" +msgstr "Plānotas dienas" + +#. module: project_planning +#: field:report_account_analytic.planning,state:0 +msgid "Status" +msgstr "Statuss" + +#. module: project_planning +#: help:report_account_analytic.planning.user,holiday:0 +msgid "" +"This value is given by the total of validated leaves into the 'Date From' " +"and 'Date To' of the planning." +msgstr "" + +#. module: project_planning +#: field:report_account_analytic.planning.line,user_id:0 +#: report:report_account_analytic.planning.print:0 +#: field:report_account_analytic.planning.stat,user_id:0 +#: field:report_account_analytic.planning.user,user_id:0 +msgid "User" +msgstr "Lietotājs" + +#. module: project_planning +#: view:report_account_analytic.planning:0 +msgid "Total Remaining Tasks" +msgstr "Atlikušie uzdevumi kopā" + +#. module: project_planning +#: model:ir.module.module,description:project_planning.module_meta_information +msgid "" +"\n" +"This module helps you to manage your plannings.\n" +"\n" +"This module is based on the analytic accounting and is totally integrated " +"with\n" +"* the timesheets encoding\n" +"* the holidays management\n" +"* the project management\n" +"\n" +"So that, each department manager can know if someone in his team has still " +"unallocated time for a given planning (taking in consideration the validated " +"leaves) or if he still needs to encode tasks.\n" +"\n" +"At the end of the month, the planning manager can also check if the encoded " +"timesheets are respecting the planned time on each analytic account.\n" +msgstr "" + +#. module: project_planning +#: model:ir.model,name:project_planning.model_res_company +msgid "Companies" +msgstr "Uzņēmumi" + +#. module: project_planning +#: field:report_account_analytic.planning.line,amount_in_base_uom:0 +msgid "Quantity in base uom" +msgstr "Daudzums bāzes mērv." + +#. module: project_planning +#: field:report_account_analytic.planning.user,plan_tasks:0 +msgid "Time Planned on Tasks" +msgstr "Plānotais laiks uz uzdevumiem" + +#. module: project_planning +#: field:report_account_analytic.planning.line,amount:0 +msgid "Quantity" +msgstr "Daudzums" + +#. module: project_planning +#: field:report_account_analytic.planning,code:0 +msgid "Code" +msgstr "Kods" + +#. module: project_planning +#: view:account.analytic.account:0 +#: field:report_account_analytic.planning,line_ids:0 +msgid "Planning lines" +msgstr "Plānošanas rindas" + +#. module: project_planning +#: view:report_account_analytic.planning:0 +#: selection:report_account_analytic.planning,state:0 +msgid "Done" +msgstr "Pabeigts" + +#. module: project_planning +#: view:report_account_analytic.planning:0 +msgid "Cancel" +msgstr "Atcelt" + +#. module: project_planning +#: view:report_account_analytic.planning:0 +msgid "Planning By User (in Days)" +msgstr "Plānošana pēc lietotāja (dienās)" + +#. module: project_planning +#: view:report_account_analytic.planning.stat:0 +msgid "Planning statistics" +msgstr "Plānošanas statistika" + +#. module: project_planning +#: view:report_account_analytic.planning:0 +#: selection:report_account_analytic.planning,state:0 +msgid "Open" +msgstr "Atvērts" + +#. module: project_planning +#: model:ir.model,name:project_planning.model_report_account_analytic_planning_user +#: view:report_account_analytic.planning:0 +msgid "Planning by User" +msgstr "Plānošana pēc lietotāja" + +#. module: project_planning +#: view:report_account_analytic.planning:0 +msgid "Information" +msgstr "Informācija" + +#. module: project_planning +#: field:report_account_analytic.planning,business_days:0 +msgid "Business Days" +msgstr "Darba dienas" + +#. module: project_planning +#: view:report_account_analytic.planning:0 +msgid "Reactivate" +msgstr "Aktivizēt atkal" + +#. module: project_planning +#: field:report_account_analytic.planning,user_id:0 +#: report:report_account_analytic.planning.print:0 +msgid "Responsible" +msgstr "Atbildīgais" + +#. module: project_planning +#: model:ir.model,name:project_planning.model_report_account_analytic_planning_stat +msgid "Planning stat" +msgstr "Plānošanas stat." + +#. module: project_planning +#: report:report_account_analytic.planning.print:0 +msgid "To" +msgstr "Līdz" + +#. module: project_planning +#: field:report_account_analytic.planning.account,plan_tasks:0 +msgid "Time Allocation of Tasks" +msgstr "Uzdevumu laika iedalīšana" + +#. module: project_planning +#: report:report_account_analytic.planning.print:0 +msgid "Summary by user" +msgstr "Kopsavilkums pēc lietotāja" + +#. module: project_planning +#: model:ir.actions.act_window,help:project_planning.action_account_analytic_planning_form +msgid "" +"With its commun system for scheduling all resources of a company (people and " +"materials), OpenERP allows you to encode then compute automatically tasks " +"and phases scheduling, track resources allocation and availibility." +msgstr "" + +#. module: project_planning +#: view:report_account_analytic.planning:0 +msgid "Total Time Allocation without Tasks" +msgstr "Laika iedalīšana bez uzdevumiem kopā" + +#. module: project_planning +#: field:report_account_analytic.planning.user,holiday:0 +msgid "Leaves" +msgstr "Prombūtne" + +#. module: project_planning +#: view:report_account_analytic.planning:0 +msgid "Total Time Allocation of Tasks" +msgstr "" + +#. module: project_planning +#: field:report_account_analytic.planning,date_to:0 +msgid "End Date" +msgstr "Beigu datums" + +#. module: project_planning +#: report:report_account_analytic.planning.print:0 +msgid "Remaining tasks" +msgstr "" + +#. module: project_planning +#: report:report_account_analytic.planning.print:0 +msgid "Summary by project" +msgstr "Kopsavilkums pēc projekta" + +#. module: project_planning +#: field:res.company,planning_time_mode_id:0 +msgid "Planning Time Unit" +msgstr "Plānošanas laika vienība" + +#. module: project_planning +#: field:report_account_analytic.planning.line,task_ids:0 +msgid "Planning Tasks" +msgstr "Plānošanas uzdevumi" + +#. module: project_planning +#: field:report_account_analytic.planning.stat,manager_id:0 +msgid "Manager" +msgstr "Vadītājs" + +#. module: project_planning +#: help:report_account_analytic.planning.user,plan_tasks:0 +msgid "" +"This value is given by the sum of time allocation with task(s) linked, " +"expressed in days." +msgstr "" diff --git a/addons/project_retro_planning/i18n/de.po b/addons/project_retro_planning/i18n/de.po index 6a29a51a848..5753ab4dd61 100644 --- a/addons/project_retro_planning/i18n/de.po +++ b/addons/project_retro_planning/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 09:02+0000\n" +"PO-Revision-Date: 2010-12-31 10:22+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_retro_planning diff --git a/addons/project_scrum/i18n/de.po b/addons/project_scrum/i18n/de.po index 8d881c93fb2..27ac755a1f5 100644 --- a/addons/project_scrum/i18n/de.po +++ b/addons/project_scrum/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 12:26+0000\n" +"PO-Revision-Date: 2010-12-31 10:27+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:23+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_scrum diff --git a/addons/project_scrum/i18n/es.po b/addons/project_scrum/i18n/es.po index 4c0db3dd429..f9b0a3339ae 100644 --- a/addons/project_scrum/i18n/es.po +++ b/addons/project_scrum/i18n/es.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 10:08+0000\n" -"Last-Translator: Borja López Soilán \n" +"PO-Revision-Date: 2011-01-01 15:01+0000\n" +"Last-Translator: Raimon Esteve (Zikzakmedia) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:23+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:00+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_scrum @@ -214,6 +214,7 @@ msgstr "" #, python-format msgid "Please provide email address for product owner defined on sprint." msgstr "" +"Intruduze una dirección de correo del producto para definir el esprint." #. module: project_scrum #: code:addons/project_scrum/project_scrum.py:0 diff --git a/addons/project_timesheet/i18n/de.po b/addons/project_timesheet/i18n/de.po index f6fcecd02a5..738eac50c2f 100644 --- a/addons/project_timesheet/i18n/de.po +++ b/addons/project_timesheet/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 09:07+0000\n" +"PO-Revision-Date: 2010-12-31 10:38+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:26+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/es.po b/addons/project_timesheet/i18n/es.po index c3e375d36a2..d1476ad5221 100644 --- a/addons/project_timesheet/i18n/es.po +++ b/addons/project_timesheet/i18n/es.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 09:49+0000\n" +"PO-Revision-Date: 2010-12-31 10:57+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:26+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_timesheet diff --git a/addons/project_timesheet/i18n/lv.po b/addons/project_timesheet/i18n/lv.po index fef8564b39a..949c08a52b7 100644 --- a/addons/project_timesheet/i18n/lv.po +++ b/addons/project_timesheet/i18n/lv.po @@ -8,20 +8,20 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2009-09-08 13:14+0000\n" -"Last-Translator: Fabien (Open ERP) \n" +"PO-Revision-Date: 2011-01-01 13:07+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: Latvian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:40+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: project_timesheet #: code:addons/project_timesheet/project_timesheet.py:0 #, python-format msgid "No employee defined for user \"%s\". You must create one." -msgstr "" +msgstr "Lietotājam '%s' nav definēts darbinieks, kas obligāti jāizveido." #. module: project_timesheet #: code:addons/project_timesheet/project_timesheet.py:0 @@ -36,12 +36,12 @@ msgstr "" #. module: project_timesheet #: model:process.node,name:project_timesheet.process_node_timesheettask0 msgid "Timesheet task" -msgstr "" +msgstr "Darba uzsk. tabulas uzdevums" #. module: project_timesheet #: view:account.analytic.line:0 msgid "Search Analytic Lines" -msgstr "" +msgstr "Meklēta analītikas rindas" #. module: project_timesheet #: field:project.task.work,hr_analytic_timesheet_id:0 @@ -51,151 +51,151 @@ msgstr "Saistītās hronoloģijas ID" #. module: project_timesheet #: model:ir.model,name:project_timesheet.model_project_task_work msgid "Project Task Work" -msgstr "" +msgstr "Projekta uzdevuma darbs" #. module: project_timesheet #: selection:report.timesheet.task.user,month:0 msgid "February" -msgstr "" +msgstr "Februāris" #. module: project_timesheet #: view:account.analytic.line:0 #: view:report.timesheet.task.user:0 msgid "Group By..." -msgstr "" +msgstr "Grupēt pēc..." #. module: project_timesheet #: model:process.node,note:project_timesheet.process_node_triggerinvoice0 msgid "Trigger invoices from sale order lines" -msgstr "" +msgstr "Iniciē rēķinus no klientu pasūtījumu rindām" #. module: project_timesheet #: selection:report.timesheet.task.user,month:0 msgid "October" -msgstr "" +msgstr "Oktobris" #. module: project_timesheet #: view:report.timesheet.task.user:0 #: field:report.timesheet.task.user,year:0 msgid "Year" -msgstr "" +msgstr "Gads" #. module: project_timesheet #: field:report.timesheet.task.user,task_hrs:0 msgid "Task Hours" -msgstr "" +msgstr "Uzdevuma stundas" #. module: project_timesheet #: constraint:project.project:0 msgid "Error! project start-date must be lower then project end-date." -msgstr "" +msgstr "Kļūda! Projekta sākuma datumam jābūt mazākam nekā beigu." #. module: project_timesheet #: view:report.timesheet.task.user:0 msgid " Year " -msgstr "" +msgstr " Gads " #. module: project_timesheet #: view:account.analytic.line:0 msgid "Product" -msgstr "" +msgstr "Produkts" #. module: project_timesheet #: selection:report.timesheet.task.user,month:0 msgid "March" -msgstr "" +msgstr "Marts" #. module: project_timesheet #: selection:report.timesheet.task.user,month:0 msgid "August" -msgstr "" +msgstr "Augusts" #. module: project_timesheet #: model:process.transition,name:project_timesheet.process_transition_taskinvoice0 msgid "Task invoice" -msgstr "" +msgstr "Uzdevuma rēķins" #. module: project_timesheet #: model:process.node,name:project_timesheet.process_node_taskwork0 msgid "Task Work" -msgstr "" +msgstr "Uzdevuma darbi" #. module: project_timesheet #: selection:report.timesheet.task.user,month:0 msgid "May" -msgstr "" +msgstr "Maijs" #. module: project_timesheet #: constraint:project.task:0 msgid "Error ! You cannot create recursive tasks." -msgstr "" +msgstr "Kļūda! Nedrīkst veidot rekursīvus uzdevumus." #. module: project_timesheet #: view:account.analytic.line:0 msgid "Journal" -msgstr "" +msgstr "Žurnāls" #. module: project_timesheet #: selection:report.timesheet.task.user,month:0 msgid "June" -msgstr "" +msgstr "Jūnijs" #. module: project_timesheet #: view:account.analytic.line:0 msgid "My Entries" -msgstr "" +msgstr "Mani ieraksti" #. module: project_timesheet #: model:ir.model,name:project_timesheet.model_project_task msgid "Task" -msgstr "" +msgstr "Uzdevums" #. module: project_timesheet #: model:ir.ui.menu,name:project_timesheet.menu_project_billing_line msgid "Invoice Tasks Work" -msgstr "" +msgstr "Izrakstīt rēķinu par uzdevumu darbu" #. module: project_timesheet #: view:account.analytic.line:0 #: view:report.timesheet.task.user:0 #: field:report.timesheet.task.user,user_id:0 msgid "User" -msgstr "" +msgstr "Lietotājs" #. module: project_timesheet #: constraint:project.project:0 msgid "Error! You cannot assign escalation to the same project!" -msgstr "" +msgstr "Kļūda! Nedrīkst piešķirt eskalāciju uz to pašu projektu!" #. module: project_timesheet #: field:report.timesheet.task.user,name:0 msgid "Date" -msgstr "" +msgstr "Datums" #. module: project_timesheet #: selection:report.timesheet.task.user,month:0 msgid "July" -msgstr "" +msgstr "Jūlijs" #. module: project_timesheet #: view:account.analytic.line:0 msgid "Extended Filters..." -msgstr "" +msgstr "Paplašinātie filtri..." #. module: project_timesheet #: model:process.node,note:project_timesheet.process_node_timesheettask0 msgid "Complete Your Timesheet." -msgstr "" +msgstr "Aizpildiet savu darba izsk. tabeli" #. module: project_timesheet #: view:project.project:0 msgid "Invoiceable" -msgstr "" +msgstr "Izrakstāmi rēķini" #. module: project_timesheet #: view:project.project:0 msgid "Customer" -msgstr "" +msgstr "Klients" #. module: project_timesheet #: model:ir.module.module,description:project_timesheet.module_meta_information @@ -212,47 +212,47 @@ msgstr "" #. module: project_timesheet #: view:account.analytic.line:0 msgid "Account" -msgstr "" +msgstr "Konts" #. module: project_timesheet #: model:ir.actions.act_window,name:project_timesheet.action_project_timesheet_bill_task msgid "Bill Tasks Works" -msgstr "" +msgstr "Izrakstīt rēķinus par uzdevumu darbu" #. module: project_timesheet #: field:report.timesheet.task.user,timesheet_hrs:0 msgid "Timesheet Hours" -msgstr "" +msgstr "Darba uzsk. tabeles stundas" #. module: project_timesheet #: model:process.transition,name:project_timesheet.process_transition_taskencoding0 msgid "Task encoding" -msgstr "" +msgstr "Uzdevumu kodējums" #. module: project_timesheet #: model:process.transition,note:project_timesheet.process_transition_filltimesheet0 msgid "Task summary is comes into the timesheet line" -msgstr "" +msgstr "Uzdevuma kopsavilkums, kas nonāks darba uzsk. tabeles rindā" #. module: project_timesheet #: selection:report.timesheet.task.user,month:0 msgid "January" -msgstr "" +msgstr "Janvāris" #. module: project_timesheet #: model:process.node,name:project_timesheet.process_node_triggerinvoice0 msgid "Trigger Invoice" -msgstr "" +msgstr "Iniciēt rēķinu" #. module: project_timesheet #: selection:report.timesheet.task.user,month:0 msgid "November" -msgstr "" +msgstr "Novembris" #. module: project_timesheet #: view:report.timesheet.task.user:0 msgid "Tasks by User" -msgstr "" +msgstr "Uzdevumi pēc lietotāja" #. module: project_timesheet #: code:addons/project_timesheet/project_timesheet.py:0 @@ -268,27 +268,27 @@ msgstr "" #: view:account.analytic.line:0 #: model:ir.model,name:project_timesheet.model_project_project msgid "Project" -msgstr "" +msgstr "Projekts" #. module: project_timesheet #: selection:report.timesheet.task.user,month:0 msgid "April" -msgstr "" +msgstr "Aprīlis" #. module: project_timesheet #: view:project.project:0 msgid "Invoicing Data" -msgstr "" +msgstr "Dati rēķinu izrakstišanai" #. module: project_timesheet #: view:account.analytic.line:0 msgid "Fin.Account" -msgstr "" +msgstr "Fin. konts" #. module: project_timesheet #: view:report.timesheet.task.user:0 msgid " Month " -msgstr "" +msgstr " Mēnesis " #. module: project_timesheet #: view:report.timesheet.task.user:0 @@ -304,43 +304,43 @@ msgstr "Nepareiza konfigurācija!" #. module: project_timesheet #: model:ir.ui.menu,name:project_timesheet.menu_project_billing msgid "Invoicing" -msgstr "" +msgstr "Rēķinu izrakstīšana" #. module: project_timesheet #: model:process.node,note:project_timesheet.process_node_taskwork0 msgid "Work on task" -msgstr "" +msgstr "Darbs pie uzdevuma" #. module: project_timesheet #: view:report.timesheet.task.user:0 msgid " Month-1 " -msgstr "" +msgstr " Mēnesis-1 " #. module: project_timesheet #: selection:report.timesheet.task.user,month:0 msgid "September" -msgstr "" +msgstr "Septembris" #. module: project_timesheet #: selection:report.timesheet.task.user,month:0 msgid "December" -msgstr "" +msgstr "Decembris" #. module: project_timesheet #: model:process.transition,note:project_timesheet.process_transition_taskinvoice0 msgid "After task is completed, Create its invoice." -msgstr "" +msgstr "Pēc uzdevuma pabeigšanas izveidot tam rēķinu." #. module: project_timesheet #: model:ir.model,name:project_timesheet.model_report_timesheet_task_user msgid "report.timesheet.task.user" -msgstr "" +msgstr "report.timesheet.task.user" #. module: project_timesheet #: view:report.timesheet.task.user:0 #: field:report.timesheet.task.user,month:0 msgid "Month" -msgstr "" +msgstr "Mēnesis" #. module: project_timesheet #: model:ir.module.module,shortdesc:project_timesheet.module_meta_information @@ -350,12 +350,12 @@ msgstr "Projekta darbu uzskaites Tabele" #. module: project_timesheet #: model:process.transition,note:project_timesheet.process_transition_taskencoding0 msgid "Encode how much time u spent on your task" -msgstr "" +msgstr "Iekodējiet cik daudz laika esat patērējis savam uzdevumam" #. module: project_timesheet #: view:project.project:0 msgid "Invoice Task Work" -msgstr "" +msgstr "Izrakstīt rēķinu par uzdevuma darbu" #. module: project_timesheet #: code:addons/project_timesheet/project_timesheet.py:0 @@ -371,12 +371,12 @@ msgstr "" #: model:ir.ui.menu,name:project_timesheet.menu_timesheet_task_user #: view:report.timesheet.task.user:0 msgid "Task Hours Per Month" -msgstr "" +msgstr "Uzdevuma stundas mēnesī" #. module: project_timesheet #: model:process.transition,name:project_timesheet.process_transition_filltimesheet0 msgid "Fill Timesheet" -msgstr "" +msgstr "Aizpildiet darba uzsk. tabeli" #. module: project_timesheet #: model:ir.actions.act_window,help:project_timesheet.action_project_timesheet_bill_task diff --git a/addons/purchase/i18n/de.po b/addons/purchase/i18n/de.po index 538a037c4a7..2ebbbc6f7b0 100644 --- a/addons/purchase/i18n/de.po +++ b/addons/purchase/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-30 23:09+0000\n" +"PO-Revision-Date: 2010-12-31 10:36+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:23+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: purchase diff --git a/addons/purchase/i18n/ru.po b/addons/purchase/i18n/ru.po index 672c398dbd5..ebca800c5e3 100644 --- a/addons/purchase/i18n/ru.po +++ b/addons/purchase/i18n/ru.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-21 13:34+0000\n" +"PO-Revision-Date: 2011-01-01 13:38+0000\n" "Last-Translator: Chertykov Denis \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:05+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:00+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: purchase @@ -595,7 +595,7 @@ msgstr "Счет будет выставлен" #. module: purchase #: model:ir.ui.menu,name:purchase.menu_product_pricelist_action2_purchase msgid "Pricelists" -msgstr "" +msgstr "Каталоги" #. module: purchase #: field:purchase.report,partner_address_id:0 @@ -616,7 +616,7 @@ msgstr "" #. module: purchase #: help:purchase.order,invoice_ids:0 msgid "Invoices generated for a purchase order" -msgstr "" +msgstr "Счета созданные для заказа на закупку" #. module: purchase #: code:addons/purchase/purchase.py:0 @@ -840,7 +840,7 @@ msgstr "Снабжение" #: view:purchase.order:0 #: field:purchase.order,invoice_ids:0 msgid "Invoices" -msgstr "" +msgstr "Счета" #. module: purchase #: model:process.node,note:purchase.process_node_purchaseorder0 @@ -1152,6 +1152,8 @@ msgid "" "The selected supplier has a minimal quantity set to %s, you cannot purchase " "less." msgstr "" +"Минимальное закупаемое количество у выбранного поставщика: %s. Нельзя купить " +"меньше." #. module: purchase #: selection:purchase.report,month:0 @@ -1685,7 +1687,7 @@ msgstr "Всего" #. module: purchase #: model:ir.ui.menu,name:purchase.menu_product_pricelist_action_purhase msgid "Pricelist Versions" -msgstr "" +msgstr "Версии каталогов" #. module: purchase #: model:ir.actions.act_window,name:purchase.action_supplier_address_form diff --git a/addons/purchase_analytic_plans/i18n/de.po b/addons/purchase_analytic_plans/i18n/de.po index 6771bed9710..769f4e3b3da 100644 --- a/addons/purchase_analytic_plans/i18n/de.po +++ b/addons/purchase_analytic_plans/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 09:13+0000\n" +"PO-Revision-Date: 2010-12-31 10:22+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:23+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:00+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: purchase_analytic_plans diff --git a/addons/purchase_analytic_plans/i18n/it.po b/addons/purchase_analytic_plans/i18n/it.po index 1ae353896a9..60c17d6a572 100644 --- a/addons/purchase_analytic_plans/i18n/it.po +++ b/addons/purchase_analytic_plans/i18n/it.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-09-29 08:45+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-01 21:55+0000\n" +"Last-Translator: Roberto Onnis \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 04:59+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:00+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: purchase_analytic_plans @@ -29,7 +29,7 @@ msgstr "Gestione della distribuzione analitica degli acquisti" #. module: purchase_analytic_plans #: model:ir.model,name:purchase_analytic_plans.model_purchase_order_line msgid "Purchase Order Line" -msgstr "" +msgstr "Riga Ordine di Acquisto" #. module: purchase_analytic_plans #: model:ir.module.module,description:purchase_analytic_plans.module_meta_information @@ -38,11 +38,16 @@ msgid "" " The base module to manage analytic distribution and purchase orders.\n" " " msgstr "" +"\n" +" \\n\n" +" Il modulo di base per gestire le distribuzioni analitiche e gli ordini " +"di acquisto.\\n\n" +" " #. module: purchase_analytic_plans #: model:ir.model,name:purchase_analytic_plans.model_purchase_order msgid "Purchase Order" -msgstr "" +msgstr "Ordine di acquisto" #~ msgid "Invalid XML for View Architecture!" #~ msgstr "XML non valido per Visualizzazione Architettura!" diff --git a/addons/purchase_requisition/i18n/de.po b/addons/purchase_requisition/i18n/de.po index 70c04921ded..9637ffd642d 100644 --- a/addons/purchase_requisition/i18n/de.po +++ b/addons/purchase_requisition/i18n/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 09:17+0000\n" +"PO-Revision-Date: 2010-12-31 10:31+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/es.po b/addons/purchase_requisition/i18n/es.po index 173b2ba2bad..6937aca97f8 100644 --- a/addons/purchase_requisition/i18n/es.po +++ b/addons/purchase_requisition/i18n/es.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 09:51+0000\n" +"PO-Revision-Date: 2010-12-31 10:19+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: purchase_requisition diff --git a/addons/purchase_requisition/i18n/it.po b/addons/purchase_requisition/i18n/it.po new file mode 100644 index 00000000000..5bfba50a3e9 --- /dev/null +++ b/addons/purchase_requisition/i18n/it.po @@ -0,0 +1,424 @@ +# Italian translation for openobject-addons +# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2010-12-21 19:45+0000\n" +"PO-Revision-Date: 2011-01-01 23:13+0000\n" +"Last-Translator: Roberto Onnis \n" +"Language-Team: Italian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +#: selection:purchase.requisition,state:0 +msgid "In Progress" +msgstr "In progresso" + +#. module: purchase_requisition +#: code:addons/purchase_requisition/wizard/purchase_requisition_partner.py:0 +#, python-format +msgid "No Product in Tender" +msgstr "Nessun prodotto in offerta" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Confirm" +msgstr "Conferma" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +#: field:purchase.requisition,user_id:0 +msgid "Responsible" +msgstr "Responsabile" + +#. module: purchase_requisition +#: model:ir.actions.act_window,help:purchase_requisition.action_purchase_requisition +msgid "" +"A purchase requisition is a step before the request for quotation. In a " +"purchase requisition (or purchase tender), you can record the products you " +"need to buy and trigger the creation of RfQs to supplier. After the " +"negotiation, once you have reviewed all the supplier's offers, you can " +"validate some and cancel others." +msgstr "" +"Una richiesta di vendita rappresenta un passo antecedente al preventivo. In " +"un richiesta di vendita (o offerta di vendita), è possibile registrare i " +"prodotti che si desidera comprare ed innescare la creazione di una richiesta " +"preventivo per il fornitore. Dopo che la negoziazione è terminata, non " +"appena quindi tutte le offerte dei fornitori sono state valutate, è " +"possibile confermarne alcune e cancellarne altre." + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Group By..." +msgstr "Raggruppa per..." + +#. module: purchase_requisition +#: view:purchase.requisition:0 +#: field:purchase.requisition,state:0 +msgid "State" +msgstr "Stato" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +#: selection:purchase.requisition,state:0 +msgid "Draft" +msgstr "Bozza" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "Supplier" +msgstr "Fornitore" + +#. module: purchase_requisition +#: field:purchase.requisition,exclusive:0 +msgid "Requisition Type" +msgstr "Tipo richiesta" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "Product Detail" +msgstr "Dettaglio prodotto" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +#: field:purchase.requisition,date_start:0 +msgid "Requisition Date" +msgstr "Data richiesta" + +#. module: purchase_requisition +#: model:ir.actions.act_window,name:purchase_requisition.action_purchase_requisition_partner +#: model:ir.actions.report.xml,name:purchase_requisition.report_purchase_requisition +#: model:ir.model,name:purchase_requisition.model_purchase_requisition +#: field:product.product,purchase_requisition:0 +#: field:purchase.order,requisition_id:0 +#: view:purchase.requisition:0 +#: field:purchase.requisition.line,requisition_id:0 +#: view:purchase.requisition.partner:0 +msgid "Purchase Requisition" +msgstr "Richiesta d'acquisto" + +#. module: purchase_requisition +#: model:ir.model,name:purchase_requisition.model_purchase_requisition_line +msgid "Purchase Requisition Line" +msgstr "Linea di richiesta d'acquisto" + +#. module: purchase_requisition +#: model:ir.model,name:purchase_requisition.model_product_product +#: field:purchase.requisition.line,product_id:0 +msgid "Product" +msgstr "Prodotto" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Quotations" +msgstr "Quotazioni" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +#: field:purchase.requisition,description:0 +msgid "Description" +msgstr "Descrizioni" + +#. module: purchase_requisition +#: help:product.product,purchase_requisition:0 +msgid "" +"Check this box so that requisitions generates purchase requisitions instead " +"of directly requests for quotations." +msgstr "" +"Spuntare questa opzione se si desidera che le richieste generino richieste " +"d'acquisto invece di creare direttamente dei preventivi." + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "Type" +msgstr "Tipo" + +#. module: purchase_requisition +#: field:purchase.requisition,company_id:0 +#: field:purchase.requisition.line,company_id:0 +msgid "Company" +msgstr "Azienda" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Request a Quotation" +msgstr "Richiedi preventivo" + +#. module: purchase_requisition +#: selection:purchase.requisition,exclusive:0 +msgid "Multiple Requisitions" +msgstr "Più richieste" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Approved by Supplier" +msgstr "Approvato dal fornitore" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Reset to Draft" +msgstr "Reimposta come bozza" + +#. module: purchase_requisition +#: model:ir.module.module,description:purchase_requisition.module_meta_information +msgid "" +"\n" +" This module allows you to manage your Purchase Requisition.\n" +" When a purchase order is created, you now have the opportunity to save " +"the related requisition.\n" +" This new object will regroup and will allow you to easily keep track and " +"order all your purchase orders.\n" +msgstr "" +"\n" +" Questo modulo permette di gestire le proprie richieste di acquisto.\n" +" Ora, quando un ordine di acquisto viene creato, si ha l'opportunità di " +"legare ad esso una richiesta.\n" +" Questo nuovo oggetto raggrupperà tutti i propri ordini di acquisto e " +"permetterà quindi di tenerne traccia ed ordinarli facilmente.\n" + +#. module: purchase_requisition +#: field:purchase.requisition.partner,partner_address_id:0 +msgid "Address" +msgstr "Indirizzo" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "Order Reference" +msgstr "Riferimento ordine" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Start Date" +msgstr "Data inizio" + +#. module: purchase_requisition +#: field:purchase.requisition.line,product_qty:0 +msgid "Quantity" +msgstr "Quantità" + +#. module: purchase_requisition +#: model:ir.actions.act_window,name:purchase_requisition.action_purchase_requisition +#: model:ir.ui.menu,name:purchase_requisition.menu_purchase_requisition_pro_mgt +msgid "Purchase Requisitions" +msgstr "Richieste di acquisto" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "End Date" +msgstr "Data fine" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +#: field:purchase.requisition,name:0 +msgid "Requisition Reference" +msgstr "Riferimento richiesta" + +#. module: purchase_requisition +#: field:purchase.requisition,line_ids:0 +msgid "Products to Purchase" +msgstr "Prodotti da acquistare" + +#. module: purchase_requisition +#: field:purchase.requisition,date_end:0 +msgid "Requisition Deadline" +msgstr "Termine richiesta" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Search Purchase Requisition" +msgstr "Cerca richieste d'acquisto" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Notes" +msgstr "Note" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "Date Ordered" +msgstr "Data ordine" + +#. module: purchase_requisition +#: help:purchase.requisition,exclusive:0 +msgid "" +"Purchase Requisition (exclusive): On the confirmation of a purchase order, " +"it cancels the remaining purchase order.\n" +"Purchase Requisition(Multiple): It allows to have multiple purchase " +"orders.On confirmation of a purchase order it does not cancel the remaining " +"orders" +msgstr "" +"Richiesta d'acquisto(esclusiva): durante la conferma dell'ordine di acquisto " +"cancella il rimanente ordine di acquisto.\n" +"Richiesta d'acquisto(multipla): permette di avere diversi ordini di " +"acquisto. Durante la conferma di un ordine di acquisto non cancella gli " +"ordini rimanenti" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Cancel Purchase Order" +msgstr "Cancella ordine di acquisto" + +#. module: purchase_requisition +#: model:ir.model,name:purchase_requisition.model_purchase_order +#: view:purchase.requisition:0 +msgid "Purchase Order" +msgstr "Ordine di Acquisto" + +#. module: purchase_requisition +#: code:addons/purchase_requisition/wizard/purchase_requisition_partner.py:0 +#, python-format +msgid "Error!" +msgstr "Errore!" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +#: field:purchase.requisition.line,product_uom_id:0 +msgid "Product UoM" +msgstr "UoM prodotto" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Products" +msgstr "Prodotti" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Order Date" +msgstr "Data ordine" + +#. module: purchase_requisition +#: selection:purchase.requisition,state:0 +msgid "Cancelled" +msgstr "Cancellato" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "[" +msgstr "[" + +#. module: purchase_requisition +#: model:ir.model,name:purchase_requisition.model_purchase_requisition_partner +msgid "Purchase Requisition Partner" +msgstr "Partner richiesta ordine" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "]" +msgstr "]" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "Quotation Detail" +msgstr "Dettaglio preventivo" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "Purchase for Requisitions" +msgstr "Acquisto per richieste" + +#. module: purchase_requisition +#: model:ir.actions.act_window,name:purchase_requisition.act_res_partner_2_purchase_order +msgid "Purchase orders" +msgstr "Ordini di acquisto" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +#: view:purchase.requisition:0 +#: field:purchase.requisition,origin:0 +msgid "Origin" +msgstr "Origine" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Reference" +msgstr "Riferimento" + +#. module: purchase_requisition +#: model:ir.model,name:purchase_requisition.model_procurement_order +msgid "Procurement" +msgstr "Approvvigionamento" + +#. module: purchase_requisition +#: field:purchase.requisition,warehouse_id:0 +msgid "Warehouse" +msgstr "Magazzino" + +#. module: purchase_requisition +#: field:procurement.order,requisition_id:0 +msgid "Latest Requisition" +msgstr "Ultima richiesta" + +#. module: purchase_requisition +#: report:purchase.requisition:0 +msgid "Qty" +msgstr "Q.tà" + +#. module: purchase_requisition +#: selection:purchase.requisition,exclusive:0 +msgid "Purchase Requisition (exclusive)" +msgstr "Richiesta d'acquisto (esclusiva)" + +#. module: purchase_requisition +#: view:purchase.requisition.partner:0 +msgid "Create Quotation" +msgstr "Crea preventivo" + +#. module: purchase_requisition +#: constraint:product.product:0 +msgid "Error: Invalid ean code" +msgstr "Errore: codice ean non valido" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +#: selection:purchase.requisition,state:0 +msgid "Done" +msgstr "Fatto" + +#. module: purchase_requisition +#: view:purchase.requisition.partner:0 +msgid "_Cancel" +msgstr "_Cancella" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Confirm Purchase Order" +msgstr "Conferma ordine di acquisto" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Cancel" +msgstr "Annulla" + +#. module: purchase_requisition +#: field:purchase.requisition.partner,partner_id:0 +msgid "Partner" +msgstr "Partner" + +#. module: purchase_requisition +#: model:ir.module.module,shortdesc:purchase_requisition.module_meta_information +msgid "Purchase - Purchase Requisition" +msgstr "Acquisto- Richiesta d'acquisto" + +#. module: purchase_requisition +#: view:purchase.requisition:0 +msgid "Unassigned" +msgstr "Non assegnato" + +#. module: purchase_requisition +#: view:purchase.order:0 +msgid "Requisition" +msgstr "Richiesta" + +#. module: purchase_requisition +#: field:purchase.requisition,purchase_ids:0 +msgid "Purchase Orders" +msgstr "Ordini di acquisto" diff --git a/addons/report_designer/i18n/de.po b/addons/report_designer/i18n/de.po index 3d4bbfa0e83..fb4edd8dfb8 100644 --- a/addons/report_designer/i18n/de.po +++ b/addons/report_designer/i18n/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 09:20+0000\n" +"PO-Revision-Date: 2010-12-31 10:29+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: report_designer diff --git a/addons/report_designer/i18n/ru.po b/addons/report_designer/i18n/ru.po index c6d35eebc5b..22435b55dad 100644 --- a/addons/report_designer/i18n/ru.po +++ b/addons/report_designer/i18n/ru.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-11-22 07:38+0000\n" +"PO-Revision-Date: 2011-01-01 12:53+0000\n" "Last-Translator: Chertykov Denis \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:59+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: report_designer @@ -31,7 +31,7 @@ msgstr "Конструктор запроса" #. module: report_designer #: view:report_designer.installer:0 msgid "Configure" -msgstr "" +msgstr "Настройка" #. module: report_designer #: view:report_designer.installer:0 @@ -68,7 +68,7 @@ msgstr "" #. module: report_designer #: view:report_designer.installer:0 msgid "Configure Reporting Tools" -msgstr "" +msgstr "Инструментарий настройки отчетов" #. module: report_designer #: help:report_designer.installer,base_report_creator:0 diff --git a/addons/report_intrastat/i18n/de.po b/addons/report_intrastat/i18n/de.po index 0c1eddfc14d..9062fce8198 100644 --- a/addons/report_intrastat/i18n/de.po +++ b/addons/report_intrastat/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 09:23+0000\n" +"PO-Revision-Date: 2010-12-31 10:27+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:25+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:03+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: report_intrastat diff --git a/addons/report_intrastat/i18n/ru.po b/addons/report_intrastat/i18n/ru.po index af6ba8595c0..0b497da76c6 100644 --- a/addons/report_intrastat/i18n/ru.po +++ b/addons/report_intrastat/i18n/ru.po @@ -7,29 +7,29 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-10-30 11:53+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-01 12:50+0000\n" +"Last-Translator: Chertykov Denis \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:26+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: report_intrastat #: report:account.invoice.intrastat:0 msgid "Cancelled Invoice" -msgstr "" +msgstr "Отмененный счет" #. module: report_intrastat #: selection:report.intrastat,month:0 msgid "June" -msgstr "" +msgstr "Июнь" #. module: report_intrastat #: sql_constraint:res.country:0 msgid "The code of the country must be unique !" -msgstr "" +msgstr "Код страны должен быть уникальным !" #. module: report_intrastat #: report:account.invoice.intrastat:0 @@ -51,6 +51,8 @@ msgstr "Цена за ед." msgid "" "Error: The default UOM and the purchase UOM must be in the same category." msgstr "" +"Ошибка. ед. изм. по умолчанию и закупочные ед. изм. должны иметь одинаковую " +"категорию." #. module: report_intrastat #: selection:report.intrastat,type:0 @@ -60,7 +62,7 @@ msgstr "Импорт" #. module: report_intrastat #: report:account.invoice.intrastat:0 msgid "VAT :" -msgstr "" +msgstr "НДС:" #. module: report_intrastat #: report:account.invoice.intrastat:0 @@ -80,7 +82,7 @@ msgstr "Налоги:" #. module: report_intrastat #: selection:report.intrastat,month:0 msgid "March" -msgstr "" +msgstr "Март" #. module: report_intrastat #: report:account.invoice.intrastat:0 @@ -91,7 +93,7 @@ msgstr "Описание" #. module: report_intrastat #: selection:report.intrastat,month:0 msgid "May" -msgstr "" +msgstr "Май" #. module: report_intrastat #: field:report.intrastat,type:0 @@ -131,17 +133,17 @@ msgstr "База" #. module: report_intrastat #: view:report.intrastat:0 msgid "This Year" -msgstr "" +msgstr "Этот год" #. module: report_intrastat #: selection:report.intrastat,month:0 msgid "January" -msgstr "" +msgstr "Январь" #. module: report_intrastat #: selection:report.intrastat,month:0 msgid "July" -msgstr "" +msgstr "Июль" #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat_code @@ -164,17 +166,17 @@ msgstr "Ссылка на партнера" #. module: report_intrastat #: report:account.invoice.intrastat:0 msgid "Total (inclu. taxes):" -msgstr "" +msgstr "Всего (с налогами):" #. module: report_intrastat #: selection:report.intrastat,month:0 msgid "February" -msgstr "" +msgstr "Февраль" #. module: report_intrastat #: selection:report.intrastat,month:0 msgid "October" -msgstr "" +msgstr "Октябрь" #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_report_intrastat @@ -198,17 +200,17 @@ msgstr "" #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_res_country msgid "Country" -msgstr "" +msgstr "Страна" #. module: report_intrastat #: sql_constraint:res.country:0 msgid "The name of the country must be unique !" -msgstr "" +msgstr "Название страны должно быть уникальным !" #. module: report_intrastat #: selection:report.intrastat,month:0 msgid "September" -msgstr "" +msgstr "Сентябрь" #. module: report_intrastat #: report:account.invoice.intrastat:0 @@ -218,7 +220,7 @@ msgstr "Налоги" #. module: report_intrastat #: selection:report.intrastat,month:0 msgid "April" -msgstr "" +msgstr "Апрель" #. module: report_intrastat #: report:account.invoice.intrastat:0 @@ -255,12 +257,12 @@ msgstr "" #. module: report_intrastat #: selection:report.intrastat,month:0 msgid "November" -msgstr "" +msgstr "Ноябрь" #. module: report_intrastat #: selection:report.intrastat,month:0 msgid "August" -msgstr "" +msgstr "Август" #. module: report_intrastat #: report:account.invoice.intrastat:0 @@ -270,12 +272,12 @@ msgstr "Возвраты" #. module: report_intrastat #: field:report.intrastat,ref:0 msgid "Source document" -msgstr "" +msgstr "Документ - источник" #. module: report_intrastat #: report:account.invoice.intrastat:0 msgid "Fiscal Position Remark :" -msgstr "" +msgstr "Замечание о системе налогообложения:" #. module: report_intrastat #: report:account.invoice.intrastat:0 @@ -286,7 +288,7 @@ msgstr "Вес" #. module: report_intrastat #: model:ir.model,name:report_intrastat.model_product_template msgid "Product Template" -msgstr "" +msgstr "Шаблон ТМЦ" #. module: report_intrastat #: field:res.country,intrastat:0 @@ -296,7 +298,7 @@ msgstr "" #. module: report_intrastat #: selection:report.intrastat,month:0 msgid "December" -msgstr "" +msgstr "Декабрь" #. module: report_intrastat #: report:account.invoice.intrastat:0 @@ -331,7 +333,7 @@ msgstr "Факс :" #. module: report_intrastat #: field:report.intrastat,name:0 msgid "Year" -msgstr "" +msgstr "Год" #. module: report_intrastat #: report:account.invoice.intrastat:0 diff --git a/addons/report_webkit/i18n/de.po b/addons/report_webkit/i18n/de.po index 05d198a1b29..55968a453bc 100644 --- a/addons/report_webkit/i18n/de.po +++ b/addons/report_webkit/i18n/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 09:24+0000\n" +"PO-Revision-Date: 2010-12-31 10:18+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: report_webkit diff --git a/addons/report_webkit_sample/i18n/de.po b/addons/report_webkit_sample/i18n/de.po index b108a18e75c..669572334d5 100644 --- a/addons/report_webkit_sample/i18n/de.po +++ b/addons/report_webkit_sample/i18n/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 09:24+0000\n" +"PO-Revision-Date: 2010-12-31 10:19+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: report_webkit_sample diff --git a/addons/resource/i18n/de.po b/addons/resource/i18n/de.po index 6ba9537b140..babb9dd80b9 100644 --- a/addons/resource/i18n/de.po +++ b/addons/resource/i18n/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 09:31+0000\n" +"PO-Revision-Date: 2010-12-31 10:58+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: resource diff --git a/addons/resource/i18n/vi.po b/addons/resource/i18n/vi.po index 5f9721e26e3..e30f2e9776d 100644 --- a/addons/resource/i18n/vi.po +++ b/addons/resource/i18n/vi.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-31 03:38+0000\n" -"Last-Translator: Phong Nguyen \n" +"PO-Revision-Date: 2010-12-31 10:37+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: Vietnamese \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: resource diff --git a/addons/sale/i18n/de.po b/addons/sale/i18n/de.po index f4663051033..24f2ac1f37c 100644 --- a/addons/sale/i18n/de.po +++ b/addons/sale/i18n/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 11:20+0000\n" +"PO-Revision-Date: 2010-12-31 11:02+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:25+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:03+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale diff --git a/addons/sale/i18n/it.po b/addons/sale/i18n/it.po index 100ea5123a1..f48780a6536 100644 --- a/addons/sale/i18n/it.po +++ b/addons/sale/i18n/it.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-30 21:03+0000\n" +"PO-Revision-Date: 2011-01-01 22:14+0000\n" "Last-Translator: Roberto Onnis \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:25+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale @@ -1749,7 +1749,7 @@ msgstr "Conferma" #. module: sale #: constraint:res.company:0 msgid "Error! You can not create recursive companies." -msgstr "Errore! non è possibile creare aziende ricorsivamente." +msgstr "Errore! Non è possibile creare aziende ricorsive." #. module: sale #: view:sale.order:0 diff --git a/addons/sale/i18n/pl.po b/addons/sale/i18n/pl.po index 4434ef7a1e3..ae4ee823bba 100644 --- a/addons/sale/i18n/pl.po +++ b/addons/sale/i18n/pl.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev_rc3\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 20:02+0000\n" -"Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \n" +"PO-Revision-Date: 2010-12-31 10:19+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:26+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:03+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale diff --git a/addons/sale/i18n/ru.po b/addons/sale/i18n/ru.po index 0237445e79d..5636c36b725 100644 --- a/addons/sale/i18n/ru.po +++ b/addons/sale/i18n/ru.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-30 13:08+0000\n" +"PO-Revision-Date: 2010-12-31 10:33+0000\n" "Last-Translator: Chertykov Denis \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:26+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:03+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale diff --git a/addons/sale_analytic_plans/i18n/de.po b/addons/sale_analytic_plans/i18n/de.po index 54da9fe8ff9..f856141d7f9 100644 --- a/addons/sale_analytic_plans/i18n/de.po +++ b/addons/sale_analytic_plans/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 11:22+0000\n" +"PO-Revision-Date: 2010-12-31 10:29+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale_analytic_plans diff --git a/addons/sale_analytic_plans/i18n/it.po b/addons/sale_analytic_plans/i18n/it.po index e4cc1d77be7..4427546b153 100644 --- a/addons/sale_analytic_plans/i18n/it.po +++ b/addons/sale_analytic_plans/i18n/it.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-10-22 10:45+0000\n" -"Last-Translator: Andrea Amoroso \n" +"PO-Revision-Date: 2011-01-01 22:18+0000\n" +"Last-Translator: Roberto Onnis \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:42+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale_analytic_plans @@ -33,11 +33,16 @@ msgid "" " The base module to manage analytic distribution and sales orders.\n" " " msgstr "" +"\n" +" \\n\n" +" Il modulo di base per gestire le distribuzioni analitiche e gli ordini " +"di vendita.\\n\n" +" " #. module: sale_analytic_plans #: model:ir.model,name:sale_analytic_plans.model_sale_order_line msgid "Sales Order Line" -msgstr "" +msgstr "Linea d'ordine di vendita" #~ msgid "Invalid XML for View Architecture!" #~ msgstr "XML non valido per Visualizzazione Architettura!" diff --git a/addons/sale_crm/i18n/de.po b/addons/sale_crm/i18n/de.po index 3be35b0b3f4..09c94e05326 100644 --- a/addons/sale_crm/i18n/de.po +++ b/addons/sale_crm/i18n/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 11:31+0000\n" +"PO-Revision-Date: 2010-12-31 10:58+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:24+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/fr.po b/addons/sale_crm/i18n/fr.po index e686af6ffde..3ce5e324586 100644 --- a/addons/sale_crm/i18n/fr.po +++ b/addons/sale_crm/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-30 14:46+0000\n" -"Last-Translator: Aline (OpenERP) \n" +"PO-Revision-Date: 2010-12-31 10:37+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:24+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale_crm diff --git a/addons/sale_crm/i18n/it.po b/addons/sale_crm/i18n/it.po index 14b5a419f9b..abce56e8c53 100644 --- a/addons/sale_crm/i18n/it.po +++ b/addons/sale_crm/i18n/it.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-30 21:05+0000\n" -"Last-Translator: Roberto Onnis \n" +"PO-Revision-Date: 2010-12-31 10:37+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:24+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale_crm diff --git a/addons/sale_journal/i18n/de.po b/addons/sale_journal/i18n/de.po index dd0815503a6..283ff1eab32 100644 --- a/addons/sale_journal/i18n/de.po +++ b/addons/sale_journal/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 11:47+0000\n" +"PO-Revision-Date: 2010-12-31 10:36+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:26+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale_journal diff --git a/addons/sale_journal/i18n/it.po b/addons/sale_journal/i18n/it.po index dd2b888b21b..bf2a3173580 100644 --- a/addons/sale_journal/i18n/it.po +++ b/addons/sale_journal/i18n/it.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-08-03 06:03+0000\n" -"Last-Translator: mga (Open ERP) \n" +"PO-Revision-Date: 2011-01-01 22:26+0000\n" +"Last-Translator: Roberto Onnis \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:32+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale_journal @@ -29,12 +29,12 @@ msgstr "" #. module: sale_journal #: model:ir.model,name:sale_journal.model_sale_order msgid "Sales Order" -msgstr "" +msgstr "Ordine di vendita" #. module: sale_journal #: view:res.partner:0 msgid "Invoicing" -msgstr "" +msgstr "Fatturazione" #. module: sale_journal #: model:ir.actions.act_window,help:sale_journal.action_definition_journal_invoice_type diff --git a/addons/sale_layout/i18n/de.po b/addons/sale_layout/i18n/de.po index 903ae6be3ae..e21c0f52ba3 100644 --- a/addons/sale_layout/i18n/de.po +++ b/addons/sale_layout/i18n/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 11:50+0000\n" +"PO-Revision-Date: 2010-12-31 10:52+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale_layout diff --git a/addons/sale_layout/i18n/ru.po b/addons/sale_layout/i18n/ru.po index c999dc8a7b2..9f7b316d834 100644 --- a/addons/sale_layout/i18n/ru.po +++ b/addons/sale_layout/i18n/ru.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-25 22:11+0000\n" +"PO-Revision-Date: 2011-01-01 12:46+0000\n" "Last-Translator: Chertykov Denis \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-26 04:51+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale_layout @@ -99,7 +99,7 @@ msgstr "Описание" #. module: sale_layout #: view:sale.order:0 msgid "Manual Description" -msgstr "" +msgstr "Примечания" #. module: sale_layout #: report:sale.order.layout:0 diff --git a/addons/sale_margin/i18n/de.po b/addons/sale_margin/i18n/de.po index 1cff15507f2..071ab8a5169 100644 --- a/addons/sale_margin/i18n/de.po +++ b/addons/sale_margin/i18n/de.po @@ -9,14 +9,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 11:55+0000\n" +"PO-Revision-Date: 2010-12-31 10:39+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale_margin diff --git a/addons/sale_margin/i18n/ru.po b/addons/sale_margin/i18n/ru.po index 17def48c2a5..a41f7cd73ca 100644 --- a/addons/sale_margin/i18n/ru.po +++ b/addons/sale_margin/i18n/ru.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-25 10:04+0000\n" +"PO-Revision-Date: 2011-01-01 12:37+0000\n" "Last-Translator: Chertykov Denis \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-26 04:51+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale_margin @@ -62,6 +62,10 @@ msgid "" "Unit Price and Cost Price\n" " " msgstr "" +" \n" +" Этот модуль добавит поле \"Прибыль\" в заказ на продажу,\n" +" прибыль определяется как разница между ценой продажи и ценой закупки\n" +" " #. module: sale_margin #: view:report.account.invoice.product:0 @@ -85,6 +89,7 @@ msgid "" "It gives profitability by calculating the difference between the Unit Price " "and Cost Price." msgstr "" +"Прибыль определяется как разница между ценой продажи и ценой закупки." #. module: sale_margin #: field:report.account.invoice.product,type:0 diff --git a/addons/sale_mrp/i18n/de.po b/addons/sale_mrp/i18n/de.po index 5bb83ef470b..ea24552c4f4 100644 --- a/addons/sale_mrp/i18n/de.po +++ b/addons/sale_mrp/i18n/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 12:05+0000\n" +"PO-Revision-Date: 2010-12-31 10:22+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale_mrp diff --git a/addons/sale_order_dates/i18n/de.po b/addons/sale_order_dates/i18n/de.po index 956f1e94f24..e6803ed8f92 100644 --- a/addons/sale_order_dates/i18n/de.po +++ b/addons/sale_order_dates/i18n/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 12:10+0000\n" +"PO-Revision-Date: 2010-12-31 10:35+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale_order_dates diff --git a/addons/sale_order_dates/i18n/ru.po b/addons/sale_order_dates/i18n/ru.po index 6ad2a954c10..b5ca5d3f7ec 100644 --- a/addons/sale_order_dates/i18n/ru.po +++ b/addons/sale_order_dates/i18n/ru.po @@ -8,19 +8,19 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-25 22:09+0000\n" +"PO-Revision-Date: 2011-01-01 11:54+0000\n" "Last-Translator: Chertykov Denis \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-26 04:51+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: sale_order_dates #: help:sale.order,requested_date:0 msgid "Date on which customer has requested for sales." -msgstr "" +msgstr "Дата в которую заказчик сделал заказ" #. module: sale_order_dates #: field:sale.order,commitment_date:0 @@ -62,7 +62,7 @@ msgstr "" #. module: sale_order_dates #: help:sale.order,commitment_date:0 msgid "Date on which delivery of products is to be made." -msgstr "" +msgstr "Дата на которую должна быть сделана доставка." #~ msgid "Sale Order Dates" #~ msgstr "Даты заказа на продажу" diff --git a/addons/share/i18n/de.po b/addons/share/i18n/de.po index 373adebc7fa..3a2eff0aea1 100644 --- a/addons/share/i18n/de.po +++ b/addons/share/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 12:33+0000\n" +"PO-Revision-Date: 2010-12-31 11:00+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: share diff --git a/addons/share/i18n/es.po b/addons/share/i18n/es.po index abfa90286eb..c39a61bb906 100644 --- a/addons/share/i18n/es.po +++ b/addons/share/i18n/es.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 12:37+0000\n" +"PO-Revision-Date: 2010-12-31 09:19+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: share diff --git a/addons/stock/i18n/de.po b/addons/stock/i18n/de.po index cf19df40dcf..373dc5fdb64 100644 --- a/addons/stock/i18n/de.po +++ b/addons/stock/i18n/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-31 00:02+0000\n" +"PO-Revision-Date: 2010-12-31 10:30+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:23+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock diff --git a/addons/stock/i18n/es.po b/addons/stock/i18n/es.po index fa873e78cfd..a3cfd3095dd 100644 --- a/addons/stock/i18n/es.po +++ b/addons/stock/i18n/es.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-30 08:01+0000\n" +"PO-Revision-Date: 2010-12-31 08:47+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:23+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #~ msgid "Stock Management" diff --git a/addons/stock/i18n/fr.po b/addons/stock/i18n/fr.po index f460af9e0e9..e17796027d7 100644 --- a/addons/stock/i18n/fr.po +++ b/addons/stock/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-21 01:27+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-01 18:37+0000\n" +"Last-Translator: Christophe Chauvet - http://www.syleam.fr/ \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 04:59+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:00+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock @@ -50,6 +50,8 @@ msgstr "" #, python-format msgid "Variation Account is not specified for Product Category: %s" msgstr "" +"Le compte de variation de stock n'est pas spécifié dans la catégorie de " +"produit: %s" #. module: stock #: field:stock.location,chained_location_id:0 @@ -169,7 +171,7 @@ msgstr "UdM" #: model:ir.actions.act_window,name:stock.action_inventory_form #: model:ir.ui.menu,name:stock.menu_action_inventory_form msgid "Physical Inventories" -msgstr "" +msgstr "Inventaires physique" #. module: stock #: field:product.category,property_stock_journal:0 @@ -245,7 +247,7 @@ msgstr "Origine" #. module: stock #: view:report.stock.lines.date:0 msgid "Non Inv" -msgstr "" +msgstr "Non inventorié" #. module: stock #: view:stock.tracking:0 @@ -440,7 +442,7 @@ msgstr "Décallage (Jours)" #. module: stock #: model:ir.model,name:stock.model_action_traceability msgid "Action traceability " -msgstr "" +msgstr "Action de traçabilité " #. module: stock #: field:stock.location,posy:0 @@ -528,6 +530,7 @@ msgstr "Type d'emplacement" #: help:stock.picking,type:0 msgid "Shipping type specify, goods coming in or going out." msgstr "" +"Le type d'expédition définit si les produits sont entrants ou sortants." #. module: stock #: model:ir.actions.report.xml,name:stock.report_move_labels @@ -558,6 +561,8 @@ msgid "" "Current quantity of products with this Production Lot Number available in " "company warehouses" msgstr "" +"Quantité actuelle de produits disponibles avec ce numéro de lot dans les " +"entrepôts de la société." #. module: stock #: field:stock.move,move_history_ids:0 @@ -638,6 +643,8 @@ msgid "" "Forces to specify a Production Lot for all moves containing this product and " "going to a Customer Location" msgstr "" +"Oblige à indiquer un lot de production pour tous les mouvements contenant ce " +"produit et allant vers un emplacement client." #. module: stock #: field:stock.location,complete_name:0 @@ -836,7 +843,7 @@ msgstr "Emplacement de transit pour les transferts inter-entrepôts" #: model:ir.model,name:stock.model_stock_change_product_qty #: view:stock.change.product.qty:0 msgid "Change Product Quantity" -msgstr "" +msgstr "Changer la quantité de produit" #. module: stock #: model:ir.model,name:stock.model_stock_inventory_merge @@ -1226,6 +1233,9 @@ msgid "" "default one, as the source location for stock moves generated by production " "orders" msgstr "" +"Pour le produit actuel, cet emplacement de stock sera utilisé, au lieu de " +"l'emplacement par défaut, en tant qu'emplacement d'origine pour les " +"mouvements de stock générés par les ordres de fabrication." #. module: stock #: code:addons/stock/stock.py:0 @@ -1366,7 +1376,7 @@ msgstr "Fournisseurs IT Générique" #. module: stock #: report:stock.picking.list:0 msgid "Picking List:" -msgstr "" +msgstr "Liste de colisage" #. module: stock #: field:stock.inventory,date:0 @@ -1512,7 +1522,7 @@ msgstr "Impossible de livrer des produits qui sont déjà livrés !" #. module: stock #: model:ir.model,name:stock.model_stock_invoice_onshipping msgid "Stock Invoice Onshipping" -msgstr "" +msgstr "Facturation du stock au moment de l'expédition" #. module: stock #: selection:report.stock.inventory,location_type:0 @@ -1623,6 +1633,7 @@ msgstr "Lot de suivi" #: help:stock.location,posz:0 msgid "Optional localization details, for information purpose only" msgstr "" +"Détails facultatifs sur la localisation, uniquement à but informatif." #. module: stock #: view:product.product:0 @@ -1989,6 +2000,9 @@ msgid "" "default one, as the source location for stock moves generated when you do an " "inventory" msgstr "" +"Pour le produit actuel, cet emplacement sera utilisé comme source des " +"mouvements de stock générés lors de l'inventaire, à la place de " +"l'emplacement par défaut." #. module: stock #: view:report.stock.lines.date:0 @@ -2037,6 +2051,9 @@ msgid "" "specific product. You can filter on the product to see all the past or " "future movements made on the product." msgstr "" +"Ce menu permet la traçabilité totale des opérations de stock effectués sur " +"un produit donné. Vous pouvez filtrer sur le produit pour voir toues les " +"mouvements passés ou à venir concernant ce produit." #. module: stock #: help:stock.location,chained_journal_id:0 @@ -2044,6 +2061,9 @@ msgid "" "Inventory Journal in which the chained move will be written, if the Chaining " "Type is not Transparent (no journal is used if left empty)" msgstr "" +"Journal d'inventaire sur lequel le mouvement chainé sera inscrit, si le type " +"de chaînage n'est pas \"Transparent\" (aucun journal n'est utilisé si le " +"champ est vide)" #. module: stock #: view:board.board:0 @@ -2079,7 +2099,7 @@ msgstr "Gestion d'entrepôt" #. module: stock #: selection:stock.picking,move_type:0 msgid "Partial Delivery" -msgstr "" +msgstr "Livraison partielle" #. module: stock #: selection:stock.location,chained_auto_packing:0 @@ -2103,6 +2123,8 @@ msgid "" "Move date: scheduled date until move is done, then date of actual move " "processing" msgstr "" +"Date du mouvement : date planifiée tant que le mouvement n'est pas terminé, " +"puis date de l'exécution réelle du mouvement." #. module: stock #: field:report.stock.lines.date,date:0 @@ -2224,7 +2246,7 @@ msgstr "Produits " #. module: stock #: field:product.product,track_incoming:0 msgid "Track Incoming Lots" -msgstr "" +msgstr "Suivre les lots entrants" #. module: stock #: view:board.board:0 @@ -2293,7 +2315,7 @@ msgstr "Méthode de livraison" #: help:stock.move,location_dest_id:0 #: help:stock.picking,location_dest_id:0 msgid "Location where the system will stock the finished products." -msgstr "" +msgstr "L'emplacement ou le système stockera les produits finis" #. module: stock #: help:product.category,property_stock_variation:0 @@ -2301,6 +2323,8 @@ msgid "" "When real-time inventory valuation is enabled on a product, this account " "will hold the current value of the products." msgstr "" +"Quand la valorisation en temps réel est activée sur un produit, ce compte " +"donnera la valorisation actuelle des produits." #. module: stock #: code:addons/stock/stock.py:0 @@ -2309,6 +2333,8 @@ msgid "" "There is no stock output account defined for this product or its category: " "\"%s\" (id: %d)" msgstr "" +"Il n'y a pas de compte comptable sur la sortie de stock définit sur ce " +"produit ou sa catégorie: \"%s\" (id: %d)" #. module: stock #: model:ir.model,name:stock.model_stock_move @@ -2318,12 +2344,12 @@ msgstr "Mouvement de stock" #. module: stock #: view:report.stock.move:0 msgid "Delay(Days)" -msgstr "" +msgstr "Dali(Jour)" #. module: stock #: field:stock.move.memory,move_id:0 msgid "Move" -msgstr "" +msgstr "Mouvement" #. module: stock #: help:stock.picking,min_date:0 @@ -2436,7 +2462,7 @@ msgstr "Annuler l'inventaire" #: field:stock.move.split.lines,name:0 #: field:stock.move.split.lines.exist,name:0 msgid "Tracking serial" -msgstr "" +msgstr "Suivre le numéro de série" #. module: stock #: code:addons/stock/report/report_stock.py:0 @@ -2466,12 +2492,12 @@ msgstr "" #. module: stock #: selection:report.stock.move,month:0 msgid "July" -msgstr "" +msgstr "Juillet" #. module: stock #: view:report.stock.lines.date:0 msgid "Consumable" -msgstr "" +msgstr "Consommable" #. module: stock #: model:ir.actions.act_window,help:stock.action_stock_line_date @@ -2512,7 +2538,7 @@ msgstr "Fournisseur Maxtor" #: code:addons/stock/wizard/stock_change_standard_price.py:0 #, python-format msgid "Active ID is not set in Context" -msgstr "" +msgstr "Active ID n'est pas mis dans le context" #. module: stock #: view:stock.picking:0 @@ -2532,7 +2558,7 @@ msgstr "" #: view:stock.move:0 #, python-format msgid "Receive Products" -msgstr "" +msgstr "Réceptionner les produits" #. module: stock #: code:addons/stock/wizard/stock_partial_move.py:0 @@ -2556,12 +2582,12 @@ msgstr "Bon de transfert interne" #: view:report.stock.move:0 #: field:report.stock.move,month:0 msgid "Month" -msgstr "" +msgstr "Mois" #. module: stock #: help:stock.picking,date_done:0 msgid "Date of Completion" -msgstr "" +msgstr "Date de fin prévue" #. module: stock #: help:stock.tracking,active:0 @@ -2582,7 +2608,7 @@ msgstr "Inventaires" #. module: stock #: view:report.stock.move:0 msgid "Todo" -msgstr "" +msgstr "À faire" #. module: stock #: view:report.stock.inventory:0 @@ -2603,7 +2629,7 @@ msgstr "" #. module: stock #: view:stock.picking:0 msgid "Back Orders" -msgstr "" +msgstr "Retour" #. module: stock #: code:addons/stock/product.py:0 @@ -2611,6 +2637,8 @@ msgstr "" msgid "" "There is no stock input account defined for this product: \"%s\" (id: %d)" msgstr "" +"Il n'y a pas de compte d'entrée de stock définit pour ce produit: \"%s\" " +"(id: %d)" #. module: stock #: code:addons/stock/stock.py:0 @@ -2633,6 +2661,8 @@ msgstr "Remplir l'inventaire" msgid "" "Error: The default UOM and the purchase UOM must be in the same category." msgstr "" +"Erreur : l'unité de mesure par défaut et l'unité d'achat doivent appartenir " +"à la même catégorie." #. module: stock #: help:product.category,property_stock_account_input_categ:0 @@ -2661,7 +2691,7 @@ msgstr "Lot" #. module: stock #: view:stock.move.split:0 msgid "Production Lot Number" -msgstr "" +msgstr "Numéro de lot de production" #. module: stock #: code:addons/stock/stock.py:0 @@ -2678,7 +2708,7 @@ msgstr "Rendre disponible" #. module: stock #: report:stock.picking.list:0 msgid "Contact Address :" -msgstr "" +msgstr "Adresse du contac :" #. module: stock #: field:stock.move,backorder_id:0 @@ -2745,7 +2775,7 @@ msgstr "Préfix du suivi" #. module: stock #: field:stock.inventory,name:0 msgid "Inventory Reference" -msgstr "" +msgstr "Référence de l'inventaire" #. module: stock #: code:addons/stock/stock.py:0 @@ -2756,7 +2786,7 @@ msgstr "Bon de transfert" #. module: stock #: view:stock.location.product:0 msgid "Open Product" -msgstr "" +msgstr "Ouvrir le produit" #. module: stock #: field:stock.location.product,to_date:0 @@ -2767,7 +2797,7 @@ msgstr "Vers" #: view:stock.move:0 #: view:stock.picking:0 msgid "Process" -msgstr "" +msgstr "Processus" #. module: stock #: field:stock.production.lot.revision,name:0 @@ -2797,7 +2827,7 @@ msgstr "Propriété du compte de stock" #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree_out msgid "Customers Packings" -msgstr "" +msgstr "Colisation client" #. module: stock #: selection:report.stock.inventory,state:0 @@ -2816,7 +2846,7 @@ msgstr "Terminé" #: model:ir.model,name:stock.model_stock_change_standard_price #: view:stock.change.standard.price:0 msgid "Change Standard Price" -msgstr "" +msgstr "Modifier le prix standard" #. module: stock #: model:stock.location,name:stock.stock_location_locations_virtual @@ -2850,7 +2880,7 @@ msgstr "Non urgent" #. module: stock #: view:stock.move:0 msgid "To Do" -msgstr "" +msgstr "À faire" #. module: stock #: model:ir.actions.act_window,name:stock.action_warehouse_form @@ -2861,14 +2891,14 @@ msgstr "Entrepôts" #. module: stock #: field:stock.journal,user_id:0 msgid "Responsible" -msgstr "" +msgstr "Responsable" #. module: stock #: model:ir.actions.act_window,name:stock.action_stock_inventory_report #: model:ir.ui.menu,name:stock.menu_action_stock_inventory_report #: view:report.stock.inventory:0 msgid "Inventory Analysis" -msgstr "" +msgstr "Analyse d'inventaire" #. module: stock #: field:stock.invoice.onshipping,journal_id:0 @@ -2911,7 +2941,7 @@ msgstr "Produit" #: code:addons/stock/wizard/stock_return_picking.py:0 #, python-format msgid "Invoicing" -msgstr "" +msgstr "En facturation" #. module: stock #: code:addons/stock/stock.py:0 @@ -2927,19 +2957,19 @@ msgstr "Hauteur (Z)" #. module: stock #: field:stock.ups,weight:0 msgid "Lot weight" -msgstr "" +msgstr "Poids du lot" #. module: stock #: model:ir.model,name:stock.model_stock_move_consume #: view:stock.move.consume:0 msgid "Consume Products" -msgstr "" +msgstr "Produits consommés" #. module: stock #: code:addons/stock/stock.py:0 #, python-format msgid "Insufficient Stock in Lot !" -msgstr "" +msgstr "Stock insuffisant pour ce lot" #. module: stock #: field:stock.location,parent_right:0 @@ -2949,7 +2979,7 @@ msgstr "Parent à droite" #. module: stock #: field:stock.picking,address_id:0 msgid "Address" -msgstr "" +msgstr "Adresse" #. module: stock #: report:lot.stock.overview:0 @@ -2997,7 +3027,7 @@ msgstr "" #. module: stock #: view:stock.move:0 msgid "Order" -msgstr "" +msgstr "Commande" #. module: stock #: field:stock.tracking,name:0 @@ -3025,12 +3055,12 @@ msgstr "Unité de mesure" #. module: stock #: report:stock.picking.list:0 msgid "Total" -msgstr "" +msgstr "Total" #. module: stock #: model:stock.location,name:stock.stock_location_intermediatelocation0 msgid "Internal Shippings" -msgstr "" +msgstr "Livraison interne" #. module: stock #: field:stock.change.standard.price,enable_stock_in_out_acc:0 @@ -3058,7 +3088,7 @@ msgstr "" #. module: stock #: view:stock.move:0 msgid "Destination" -msgstr "" +msgstr "Destination" #. module: stock #: selection:stock.picking,move_type:0 @@ -3077,12 +3107,12 @@ msgstr "" #: code:addons/stock/product.py:0 #, python-format msgid "Future Productions" -msgstr "" +msgstr "Production future" #. module: stock #: view:stock.picking:0 msgid "To Invoice" -msgstr "" +msgstr "À facturer" #. module: stock #: code:addons/stock/wizard/stock_return_picking.py:0 @@ -3131,12 +3161,12 @@ msgstr "Inventaire du Lot" #. module: stock #: view:stock.move:0 msgid "Reason" -msgstr "" +msgstr "Motif" #. module: stock #: report:stock.picking.list:0 msgid "Delivery Order:" -msgstr "" +msgstr "Ordre de livraison:" #. module: stock #: field:stock.location,icon:0 @@ -3180,6 +3210,8 @@ msgid "" "There is no inventory variation account defined on the product category: " "\"%s\" (id: %d)" msgstr "" +"Aucun compte d'écart d'inventaire na été défini dans cette catégorie de " +"produits : \"%s\" (id. : %d)" #. module: stock #: view:stock.inventory.merge:0 @@ -3193,7 +3225,7 @@ msgstr "Voulez vous fusionnez ces inventaires" #: selection:stock.move,state:0 #: selection:stock.picking,state:0 msgid "Cancelled" -msgstr "" +msgstr "Annulée" #. module: stock #: field:stock.location,chained_location_type:0 @@ -3301,7 +3333,7 @@ msgstr "" #. module: stock #: report:stock.picking.list:0 msgid "Reception:" -msgstr "" +msgstr "Réception" #. module: stock #: help:stock.location,scrap_location:0 @@ -3329,7 +3361,7 @@ msgstr "" #: help:stock.move.memory,cost:0 #, python-format msgid "Unit Cost for this product line" -msgstr "" +msgstr "Coût unitaire pour cette ligne de produit" #. module: stock #: model:ir.model,name:stock.model_product_category @@ -3338,13 +3370,13 @@ msgstr "" #: view:report.stock.move:0 #: field:report.stock.move,categ_id:0 msgid "Product Category" -msgstr "" +msgstr "Catégorie de produits" #. module: stock #: code:addons/stock/wizard/stock_change_product_qty.py:0 #, python-format msgid "INV: " -msgstr "" +msgstr "INV: " #. module: stock #: model:ir.ui.menu,name:stock.next_id_61 @@ -3355,12 +3387,12 @@ msgstr "Reporting" #: code:addons/stock/stock.py:0 #, python-format msgid " for the " -msgstr "" +msgstr " pour le " #. module: stock #: view:stock.split.into:0 msgid "Quantity to leave in the current pack" -msgstr "" +msgstr "Quantité à laisser dans le colisage actuel" #. module: stock #: model:ir.actions.act_window,name:stock.action_stock_invoice_onshipping @@ -3385,7 +3417,7 @@ msgstr "Configuration" #: field:stock.inventory.line.split,use_exist:0 #: field:stock.move.split,use_exist:0 msgid "Existing Lots" -msgstr "" +msgstr "Lots existants" #. module: stock #: field:product.product,location_id:0 diff --git a/addons/stock/i18n/lv.po b/addons/stock/i18n/lv.po new file mode 100644 index 00000000000..ea013930abc --- /dev/null +++ b/addons/stock/i18n/lv.po @@ -0,0 +1,3849 @@ +# Latvian translation for openobject-addons +# Copyright (c) 2011 Rosetta Contributors and Canonical Ltd 2011 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2011. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2010-12-21 19:45+0000\n" +"PO-Revision-Date: 2011-01-01 22:37+0000\n" +"Last-Translator: Vladimirs Kuzmins \n" +"Language-Team: Latvian \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2011-01-02 05:00+0000\n" +"X-Generator: Launchpad (build Unknown)\n" + +#. module: stock +#: field:product.product,track_outgoing:0 +msgid "Track Outgoing Lots" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_stock_ups_upload +msgid "Stock ups upload" +msgstr "" + +#. module: stock +#: code:addons/stock/product.py:0 +#, python-format +msgid "Variation Account is not specified for Product Category: %s" +msgstr "" + +#. module: stock +#: field:stock.location,chained_location_id:0 +msgid "Chained Location If Fixed" +msgstr "" + +#. module: stock +#: view:stock.inventory:0 +#: view:stock.move:0 +#: view:stock.picking:0 +msgid "Put in a new pack" +msgstr "" + +#. module: stock +#: field:stock.move.split.lines,action:0 +msgid "Action" +msgstr "Darbība" + +#. module: stock +#: view:stock.production.lot:0 +msgid "Upstream Traceability" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_stock_line_date +#: model:ir.ui.menu,name:stock.menu_report_stock_line_date +msgid "Last Product Inventories" +msgstr "" + +#. module: stock +#: view:stock.move:0 +msgid "Today" +msgstr "Šodien" + +#. module: stock +#: field:stock.production.lot.revision,indice:0 +msgid "Revision Number" +msgstr "" + +#. module: stock +#: view:stock.move.memory:0 +msgid "Product Moves" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,help:stock.action_picking_tree +msgid "" +"This is the list of all delivery orders that must be prepared, according to " +"your different sales orders and your logistics rules." +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_stock_move_report +#: model:ir.ui.menu,name:stock.menu_action_stock_move_report +#: view:report.stock.move:0 +msgid "Moves Analysis" +msgstr "" + +#. module: stock +#: help:stock.production.lot,ref:0 +msgid "" +"Internal reference number in case it differs from the manufacturer's serial " +"number" +msgstr "" + +#. module: stock +#: view:stock.picking:0 +msgid "Picking list" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_partial_picking.py:0 +#: report:lot.stock.overview:0 +#: report:lot.stock.overview_all:0 +#: field:report.stock.inventory,product_qty:0 +#: field:report.stock.move,product_qty:0 +#: field:stock.change.product.qty,new_quantity:0 +#: field:stock.inventory.line,product_qty:0 +#: field:stock.inventory.line.split,qty:0 +#: report:stock.inventory.move:0 +#: field:stock.move,product_qty:0 +#: field:stock.move.consume,product_qty:0 +#: field:stock.move.memory,quantity:0 +#: field:stock.move.scrap,product_qty:0 +#: field:stock.move.split,qty:0 +#: field:stock.move.split.lines,quantity:0 +#: field:stock.move.split.lines.exist,quantity:0 +#: report:stock.picking.list:0 +#: field:stock.report.prodlots,qty:0 +#: field:stock.report.tracklots,name:0 +#: field:stock.split.into,quantity:0 +#, python-format +msgid "Quantity" +msgstr "Daudzums" + +#. module: stock +#: view:report.stock.move:0 +#: field:report.stock.move,day:0 +msgid "Day" +msgstr "Diena" + +#. module: stock +#: view:stock.inventory:0 +#: field:stock.inventory.line.split,product_uom:0 +#: view:stock.move:0 +#: field:stock.move.split,product_uom:0 +#: view:stock.picking:0 +#: view:stock.production.lot:0 +msgid "UoM" +msgstr "mērv." + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_inventory_form +#: model:ir.ui.menu,name:stock.menu_action_inventory_form +msgid "Physical Inventories" +msgstr "" + +#. module: stock +#: field:product.category,property_stock_journal:0 +#: view:report.stock.move:0 +#: field:stock.change.standard.price,stock_journal:0 +msgid "Stock journal" +msgstr "" + +#. module: stock +#: view:report.stock.move:0 +msgid "Incoming" +msgstr "Ienākoša" + +#. module: stock +#: help:product.category,property_stock_account_output_categ:0 +msgid "" +"When doing real-time inventory valuation, counterpart Journal Items for all " +"outgoing stock moves will be posted in this account. This is the default " +"value for all products in this category, it can also directly be set on each " +"product." +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "Missing partial picking data for move #%s" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_partial_move +msgid "Deliver/Receive Products" +msgstr "" + +#. module: stock +#: code:addons/stock/report/report_stock.py:0 +#, python-format +msgid "You cannot delete any record!" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_splitinto.py:0 +#, python-format +msgid "" +"The current move line is already assigned to a pack, please remove it first " +"if you really want to change it ' # 'for " +"this product: \"%s\" (id: %d)" +msgstr "" + +#. module: stock +#: selection:stock.picking,invoice_state:0 +msgid "Not Applicable" +msgstr "" + +#. module: stock +#: help:stock.tracking,serial:0 +msgid "Other reference or serial number" +msgstr "" + +#. module: stock +#: field:stock.move,origin:0 +#: view:stock.picking:0 +#: field:stock.picking,origin:0 +msgid "Origin" +msgstr "Izcelsme" + +#. module: stock +#: view:report.stock.lines.date:0 +msgid "Non Inv" +msgstr "" + +#. module: stock +#: view:stock.tracking:0 +msgid "Pack Identification" +msgstr "" + +#. module: stock +#: view:stock.move:0 +#: field:stock.move,picking_id:0 +#: field:stock.picking,name:0 +#: view:stock.production.lot:0 +msgid "Reference" +msgstr "Atsauce" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "Products to Process" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,help:stock.action_location_form +msgid "" +"Define your locations in order to reflect to your warehouse structure and " +"organization. OpenERP is able to manage physical locations (warehouses, " +"shelves, bin, etc), partners location (customers, suppliers) and virtual " +"locations which are the counter-part of the stock operations like the " +"manufacturing orders consummations, the inventories, etc. Every stock " +"operation in OpenERP moves the products from one location to another one. " +"For instance, if you receive products from a supplier, OpenERP will move " +"products from the Supplier location into the Stock location. Each report can " +"be performed on physicals, partners or virtual locations." +msgstr "" + +#. module: stock +#: constraint:product.category:0 +msgid "Error ! You can not create recursive categories." +msgstr "Kļūda! Jūs nevarat veidot rekursīvas kategorijas." + +#. module: stock +#: help:stock.fill.inventory,set_stock_zero:0 +msgid "" +"If checked, all product quantities will be set to zero to help ensure a real " +"physical inventory is done" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,help:stock.action_inventory_form +msgid "" +"The Periodical Inventories are used when you count your number of products " +"available per location. You can use it, once a year, when you do the general " +"inventory or, once you need it, to correct the current stock level of a " +"product." +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_stock_move_split_lines +msgid "Split lines" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "You cannot cancel picking because stock move is in done state !" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "Warning!" +msgstr "Uzmanību!" + +#. module: stock +#: field:stock.invoice.onshipping,group:0 +msgid "Group by partner" +msgstr "Grupēt pēc partnera" + +#. module: stock +#: help:stock.move,state:0 +msgid "" +"When the stock move is created it is in the 'Draft' state.\n" +" After that it is set to 'Confirmed' state.\n" +" If stock is available state is set to 'Available'.\n" +" When the picking is done the state is 'Done'. " +" \n" +"The state is 'Waiting' if the move is waiting for another one." +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_res_partner +#: view:report.stock.inventory:0 +#: field:report.stock.inventory,partner_id:0 +#: view:report.stock.move:0 +#: field:report.stock.move,partner_id:0 +#: view:stock.move:0 +#: field:stock.move,partner_id:0 +#: view:stock.picking:0 +#: field:stock.picking,partner_id:0 +msgid "Partner" +msgstr "Partneris" + +#. module: stock +#: help:stock.move.memory,currency:0 +msgid "Currency in which Unit cost is expressed" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_return_picking.py:0 +#, python-format +msgid "No invoicing" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_stock_production_lot +#: field:stock.production.lot.revision,lot_id:0 +#: field:stock.report.prodlots,prodlot_id:0 +msgid "Production lot" +msgstr "" + +#. module: stock +#: help:stock.incoterms,code:0 +msgid "Code for Incoterms" +msgstr "" + +#. module: stock +#: field:stock.tracking,move_ids:0 +msgid "Moves for this pack" +msgstr "" + +#. module: stock +#: selection:report.stock.inventory,location_type:0 +#: selection:stock.location,usage:0 +msgid "Internal Location" +msgstr "" + +#. module: stock +#: view:stock.inventory:0 +msgid "Confirm Inventory" +msgstr "" + +#. module: stock +#: view:report.stock.inventory:0 +#: field:report.stock.inventory,state:0 +#: view:report.stock.move:0 +#: field:report.stock.move,state:0 +#: view:stock.inventory:0 +#: field:stock.inventory,state:0 +#: field:stock.inventory.line,state:0 +#: view:stock.move:0 +#: field:stock.move,state:0 +#: view:stock.picking:0 +#: field:stock.picking,state:0 +#: report:stock.picking.list:0 +msgid "State" +msgstr "Stāvoklis" + +#. module: stock +#: field:stock.location,stock_real_value:0 +msgid "Real Stock Value" +msgstr "" + +#. module: stock +#: field:report.stock.move,day_diff2:0 +msgid "Lag (Days)" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_action_traceability +msgid "Action traceability " +msgstr "" + +#. module: stock +#: field:stock.location,posy:0 +msgid "Shelves (Y)" +msgstr "" + +#. module: stock +#: view:stock.move:0 +msgid "UOM" +msgstr "Mērvienība" + +#. module: stock +#: selection:report.stock.inventory,state:0 +#: selection:report.stock.move,state:0 +#: selection:stock.move,state:0 +#: view:stock.picking:0 +#: selection:stock.picking,state:0 +#: view:stock.production.lot:0 +#: field:stock.production.lot,stock_available:0 +msgid "Available" +msgstr "Pieejams" + +#. module: stock +#: view:stock.picking:0 +#: field:stock.picking,min_date:0 +msgid "Expected Date" +msgstr "" + +#. module: stock +#: view:board.board:0 +#: model:ir.actions.act_window,name:stock.action_outgoing_product_board +msgid "Outgoing Product" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,help:stock.action_warehouse_form +msgid "" +"Create and manage your warehouses and assign them a location from here" +msgstr "" + +#. module: stock +#: field:report.stock.move,product_qty_in:0 +msgid "In Qty" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_fill_inventory.py:0 +#, python-format +msgid "No product in this location." +msgstr "" + +#. module: stock +#: field:stock.warehouse,lot_output_id:0 +msgid "Location Output" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.split_into +#: model:ir.model,name:stock.model_stock_split_into +msgid "Split into" +msgstr "" + +#. module: stock +#: field:stock.move,price_currency_id:0 +msgid "Currency for average price" +msgstr "" + +#. module: stock +#: help:product.template,property_stock_account_input:0 +msgid "" +"When doing real-time inventory valuation, counterpart Journal Items for all " +"incoming stock moves will be posted in this account. If not set on the " +"product, the one from the product category is used." +msgstr "" + +#. module: stock +#: field:report.stock.inventory,location_type:0 +#: field:stock.location,usage:0 +msgid "Location Type" +msgstr "" + +#. module: stock +#: help:report.stock.move,type:0 +#: help:stock.picking,type:0 +msgid "Shipping type specify, goods coming in or going out." +msgstr "" + +#. module: stock +#: model:ir.actions.report.xml,name:stock.report_move_labels +msgid "Item Labels" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_report_stock_move +msgid "Moves Statistics" +msgstr "" + +#. module: stock +#: view:stock.production.lot:0 +msgid "Product Lots Filter" +msgstr "" + +#. module: stock +#: report:lot.stock.overview:0 +#: report:lot.stock.overview_all:0 +#: report:stock.inventory.move:0 +#: report:stock.picking.list:0 +msgid "[" +msgstr "[" + +#. module: stock +#: help:stock.production.lot,stock_available:0 +msgid "" +"Current quantity of products with this Production Lot Number available in " +"company warehouses" +msgstr "" + +#. module: stock +#: field:stock.move,move_history_ids:0 +msgid "Move History (child moves)" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_picking_tree6 +#: model:ir.ui.menu,name:stock.menu_action_picking_tree6 +#: field:stock.picking,move_lines:0 +msgid "Internal Moves" +msgstr "" + +#. module: stock +#: field:stock.move,location_dest_id:0 +msgid "Destination Location" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "You can not process picking without stock moves" +msgstr "" + +#. module: stock +#: field:stock.move,product_packaging:0 +msgid "Packaging" +msgstr "Iepakojums" + +#. module: stock +#: report:stock.picking.list:0 +msgid "Order(Origin)" +msgstr "" + +#. module: stock +#: report:lot.stock.overview:0 +#: report:lot.stock.overview_all:0 +msgid "Grand Total:" +msgstr "" + +#. module: stock +#: model:ir.ui.menu,name:stock.menu_stock_inventory_control +msgid "Inventory Control" +msgstr "" + +#. module: stock +#: view:stock.location:0 +#: field:stock.location,comment:0 +msgid "Additional Information" +msgstr "Papildu informācija" + +#. module: stock +#: report:lot.stock.overview:0 +#: report:lot.stock.overview_all:0 +msgid "Location / Product" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "Reception" +msgstr "" + +#. module: stock +#: field:stock.tracking,serial:0 +msgid "Additional Reference" +msgstr "" + +#. module: stock +#: view:stock.production.lot.revision:0 +msgid "Production Lot Revisions" +msgstr "" + +#. module: stock +#: help:product.product,track_outgoing:0 +msgid "" +"Forces to specify a Production Lot for all moves containing this product and " +"going to a Customer Location" +msgstr "" + +#. module: stock +#: field:stock.location,complete_name:0 +#: field:stock.location,name:0 +msgid "Location Name" +msgstr "Noliktavas nosaukums" + +#. module: stock +#: view:stock.inventory:0 +msgid "Posted Inventory" +msgstr "" + +#. module: stock +#: view:stock.move:0 +#: view:stock.picking:0 +msgid "Move Information" +msgstr "" + +#. module: stock +#: view:report.stock.move:0 +msgid "Outgoing" +msgstr "Izejoša" + +#. module: stock +#: selection:report.stock.move,month:0 +msgid "August" +msgstr "Augusts" + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_tracking_form +#: model:ir.model,name:stock.model_stock_tracking +#: model:ir.ui.menu,name:stock.menu_action_tracking_form +#: view:stock.tracking:0 +msgid "Packs" +msgstr "" + +#. module: stock +#: constraint:stock.move:0 +msgid "You try to assign a lot which is not from the same product" +msgstr "" + +#. module: stock +#: view:res.partner:0 +msgid "Sales & Purchases" +msgstr "Tirdzniecība un Iepirkumi" + +#. module: stock +#: selection:report.stock.move,month:0 +msgid "June" +msgstr "Jūnijs" + +#. module: stock +#: model:ir.actions.act_window,help:stock.action_out_picking_move +msgid "" +"The 'Deliver Products' menu lists all products you have to deliver to your " +"customers. You can process the deliveries directly from this list, line by " +"or line or through the Delivery Orders menu." +msgstr "" + +#. module: stock +#: field:product.template,property_stock_procurement:0 +msgid "Procurement Location" +msgstr "Sagādes noliktava" + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_production_lot_form +#: model:ir.ui.menu,name:stock.menu_action_production_lot_form +#: field:stock.inventory.line.split,line_exist_ids:0 +#: field:stock.inventory.line.split,line_ids:0 +#: field:stock.move.split,line_exist_ids:0 +#: field:stock.move.split,line_ids:0 +msgid "Production Lots" +msgstr "" + +#. module: stock +#: report:stock.picking.list:0 +msgid "Recipient" +msgstr "Saņēmējs" + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_location_tree +#: model:ir.ui.menu,name:stock.menu_action_location_tree +msgid "Location Structure" +msgstr "Noliktavas struktūra" + +#. module: stock +#: selection:report.stock.move,month:0 +msgid "October" +msgstr "Oktobris" + +#. module: stock +#: model:ir.model,name:stock.model_stock_inventory_line +msgid "Inventory Line" +msgstr "" + +#. module: stock +#: help:product.category,property_stock_journal:0 +msgid "" +"When doing real-time inventory valuation, this is the Accounting Journal in " +"which entries will be automatically posted when stock moves are processed." +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_partial_picking +msgid "Process Picking" +msgstr "" + +#. module: stock +#: code:addons/stock/product.py:0 +#, python-format +msgid "Future Receptions" +msgstr "" + +#. module: stock +#: help:stock.inventory.line.split,use_exist:0 +#: help:stock.move.split,use_exist:0 +msgid "" +"Check this option to select existing lots in the list below, otherwise you " +"should enter new ones line by line." +msgstr "" + +#. module: stock +#: field:stock.move,move_dest_id:0 +msgid "Destination Move" +msgstr "" + +#. module: stock +#: view:stock.move:0 +#: view:stock.picking:0 +msgid "Process Now" +msgstr "" + +#. module: stock +#: field:stock.location,address_id:0 +msgid "Location Address" +msgstr "Noliktavas adrese" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "is consumed with" +msgstr "" + +#. module: stock +#: help:stock.move,prodlot_id:0 +msgid "Production lot is used to put a serial number on the production" +msgstr "" + +#. module: stock +#: field:stock.warehouse,lot_input_id:0 +msgid "Location Input" +msgstr "" + +#. module: stock +#: help:stock.picking,date:0 +msgid "Date of Order" +msgstr "Pasūtījuma datums" + +#. module: stock +#: selection:product.product,valuation:0 +msgid "Periodical (manual)" +msgstr "" + +#. module: stock +#: model:stock.location,name:stock.location_procurement +msgid "Procurements" +msgstr "Sagādes" + +#. module: stock +#: model:stock.location,name:stock.stock_location_3 +msgid "IT Suppliers" +msgstr "IT piegādātāji" + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_inventory_form_draft +msgid "Draft Physical Inventories" +msgstr "" + +#. module: stock +#: selection:report.stock.inventory,location_type:0 +#: selection:stock.location,usage:0 +msgid "Transit Location for Inter-Companies Transfers" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_view_change_product_quantity +#: model:ir.model,name:stock.model_stock_change_product_qty +#: view:stock.change.product.qty:0 +msgid "Change Product Quantity" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_stock_inventory_merge +msgid "Merge Inventory" +msgstr "" + +#. module: stock +#: code:addons/stock/product.py:0 +#, python-format +msgid "Future P&L" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_picking_tree4 +#: model:ir.ui.menu,name:stock.menu_action_picking_tree4 +#: view:stock.picking:0 +msgid "Incoming Shipments" +msgstr "" + +#. module: stock +#: view:report.stock.inventory:0 +#: view:stock.move:0 +#: view:stock.picking:0 +msgid "Scrap" +msgstr "Brāķis" + +#. module: stock +#: field:stock.location,child_ids:0 +msgid "Contains" +msgstr "Satur" + +#. module: stock +#: view:board.board:0 +msgid "Incoming Products Delay" +msgstr "" + +#. module: stock +#: view:stock.location:0 +msgid "Stock Locations" +msgstr "" + +#. module: stock +#: report:lot.stock.overview:0 +#: report:lot.stock.overview_all:0 +#: field:stock.move,price_unit:0 +msgid "Unit Price" +msgstr "Vienības cena" + +#. module: stock +#: model:ir.model,name:stock.model_stock_move_split_lines_exist +msgid "Exist Split lines" +msgstr "" + +#. module: stock +#: field:stock.move,date_expected:0 +msgid "Scheduled Date" +msgstr "Ieplānotais datums" + +#. module: stock +#: view:stock.tracking:0 +msgid "Pack Search" +msgstr "" + +#. module: stock +#: selection:stock.move,priority:0 +msgid "Urgent" +msgstr "Steidzama" + +#. module: stock +#: view:stock.picking:0 +#: report:stock.picking.list:0 +msgid "Journal" +msgstr "Žurnāls" + +#. module: stock +#: help:stock.picking,location_id:0 +msgid "" +"Keep empty if you produce at the location where the finished products are " +"needed.Set a location if you produce at a fixed location. This can be a " +"partner location if you subcontract the manufacturing operations." +msgstr "" + +#. module: stock +#: view:res.partner:0 +msgid "Inventory Properties" +msgstr "" + +#. module: stock +#: field:report.stock.move,day_diff:0 +msgid "Execution Lead Time (Days)" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.act_stock_product_location_open +msgid "Stock by Location" +msgstr "" + +#. module: stock +#: help:stock.move,address_id:0 +msgid "" +"Optional address where goods are to be delivered, specifically used for " +"allotment" +msgstr "" + +#. module: stock +#: view:report.stock.move:0 +msgid "Month-1" +msgstr "Mēnesis-1" + +#. module: stock +#: help:stock.location,active:0 +msgid "" +"By unchecking the active field, you may hide a location without deleting it." +msgstr "" + +#. module: stock +#: model:ir.actions.report.xml,name:stock.report_picking_list +msgid "Packing list" +msgstr "" + +#. module: stock +#: field:stock.location,stock_virtual:0 +msgid "Virtual Stock" +msgstr "Virtuāla noliktava" + +#. module: stock +#: selection:report.stock.inventory,location_type:0 +#: selection:stock.location,usage:0 +msgid "View" +msgstr "Skatīt" + +#. module: stock +#: field:stock.location,parent_left:0 +msgid "Left Parent" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_partial_move.py:0 +#, python-format +msgid "Delivery Information" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_fill_inventory.py:0 +#, python-format +msgid "Stock Inventory is done" +msgstr "" + +#. module: stock +#: constraint:product.product:0 +msgid "Error: Invalid ean code" +msgstr "Kļūda: nederīgs EAN kods" + +#. module: stock +#: code:addons/stock/product.py:0 +#, python-format +msgid "" +"There is no stock output account defined for this product: \"%s\" (id: %d)" +msgstr "" + +#. module: stock +#: field:product.template,property_stock_production:0 +msgid "Production Location" +msgstr "Ražošanas noliktava" + +#. module: stock +#: help:stock.picking,address_id:0 +msgid "Address of partner" +msgstr "Partnera adrese" + +#. module: stock +#: model:res.company,overdue_msg:stock.res_company_shop0 +#: model:res.company,overdue_msg:stock.res_company_tinyshop0 +msgid "" +"\n" +"Date: %(date)s\n" +"\n" +"Dear %(partner_name)s,\n" +"\n" +"Please find in attachment a reminder of all your unpaid invoices, for a " +"total amount due of:\n" +"\n" +"%(followup_amount).2f %(company_currency)s\n" +"\n" +"Thanks,\n" +"--\n" +"%(user_signature)s\n" +"%(company_name)s\n" +" " +msgstr "" + +#. module: stock +#: help:stock.location,usage:0 +msgid "" +"* Supplier Location: Virtual location representing the source location for " +"products coming from your suppliers\n" +" \n" +"* View: Virtual location used to create a hierarchical structures for your " +"warehouse, aggregating its child locations ; can't directly contain " +"products\n" +" \n" +"* Internal Location: Physical locations inside your own warehouses,\n" +" \n" +"* Customer Location: Virtual location representing the destination location " +"for products sent to your customers\n" +" \n" +"* Inventory: Virtual location serving as counterpart for inventory " +"operations used to correct stock levels (Physical inventories)\n" +" \n" +"* Procurement: Virtual location serving as temporary counterpart for " +"procurement operations when the source (supplier or production) is not known " +"yet. This location should be empty when the procurement scheduler has " +"finished running.\n" +" \n" +"* Production: Virtual counterpart location for production operations: this " +"location consumes the raw material and produces finished products\n" +" " +msgstr "" + +#. module: stock +#: field:stock.production.lot.revision,author_id:0 +msgid "Author" +msgstr "Autors" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "Delivery Order" +msgstr "Piegādes Pasūtījums" + +#. module: stock +#: selection:stock.location,chained_auto_packing:0 +msgid "Manual Operation" +msgstr "" + +#. module: stock +#: view:stock.location:0 +#: view:stock.move:0 +msgid "Supplier" +msgstr "Piegādātājs" + +#. module: stock +#: field:stock.picking,date_done:0 +msgid "Date Done" +msgstr "" + +#. module: stock +#: report:stock.picking.list:0 +msgid "Expected Shipping Date" +msgstr "" + +#. module: stock +#: selection:report.stock.move,month:0 +msgid "March" +msgstr "Marts" + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_view_stock_inventory_line_split +#: model:ir.model,name:stock.model_stock_inventory_line_split +#: view:stock.inventory:0 +#: view:stock.inventory.line:0 +msgid "Split inventory lines" +msgstr "" + +#. module: stock +#: view:stock.inventory:0 +msgid "Physical Inventory" +msgstr "" + +#. module: stock +#: help:stock.location,chained_company_id:0 +msgid "" +"The company the Picking List containing the chained move will belong to " +"(leave empty to use the default company determination rules" +msgstr "" + +#. module: stock +#: help:stock.location,chained_picking_type:0 +msgid "" +"Shipping Type of the Picking List that will contain the chained move (leave " +"empty to automatically detect the type based on the source and destination " +"locations)." +msgstr "" + +#. module: stock +#: view:stock.move.split:0 +msgid "Lot number" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_partial_picking.py:0 +#: field:stock.inventory.line,product_uom:0 +#: field:stock.move.consume,product_uom:0 +#: field:stock.move.scrap,product_uom:0 +#, python-format +msgid "Product UOM" +msgstr "" + +#. module: stock +#: model:stock.location,name:stock.stock_location_locations_partner +msgid "Partner Locations" +msgstr "" + +#. module: stock +#: view:report.stock.inventory:0 +#: view:report.stock.move:0 +msgid "Total quantity" +msgstr "Kopējais daudzums" + +#. module: stock +#: model:ir.actions.act_window,name:stock.move_consume +#: view:stock.move.consume:0 +msgid "Consume Move" +msgstr "" + +#. module: stock +#: model:stock.location,name:stock.stock_location_7 +msgid "European Customers" +msgstr "" + +#. module: stock +#: help:stock.location,chained_delay:0 +msgid "Delay between original move and chained move in days" +msgstr "" + +#. module: stock +#: view:stock.fill.inventory:0 +msgid "Import current product inventory from the following location" +msgstr "" + +#. module: stock +#: help:stock.location,chained_auto_packing:0 +msgid "" +"This is used only if you select a chained location type.\n" +"The 'Automatic Move' value will create a stock move after the current one " +"that will be validated automatically. With 'Manual Operation', the stock " +"move has to be validated by a worker. With 'Automatic No Step Added', the " +"location is replaced in the original move." +msgstr "" + +#. module: stock +#: view:stock.production.lot:0 +msgid "Downstream Traceability" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,help:stock.action_stock_journal_form +msgid "" +"The stock journals system allows you assign each stock operation into a " +"specific journal according to the type of operation to perform or the " +"worker/team that should perform the operation. Examples of stock journals " +"may be: quality control, pick lists, packing, etc." +msgstr "" + +#. module: stock +#: help:product.template,property_stock_production:0 +msgid "" +"For the current product, this stock location will be used, instead of the " +"default one, as the source location for stock moves generated by production " +"orders" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "" +"Can not create Journal Entry, Output Account defined on this product and " +"Variant account on category of this product are same." +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "is in draft state." +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_stock_ups_final +msgid "Stock ups final" +msgstr "" + +#. module: stock +#: field:stock.location,chained_auto_packing:0 +msgid "Chaining Type" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_return_picking.py:0 +#, python-format +msgid "To be refunded/invoiced" +msgstr "" + +#. module: stock +#: model:stock.location,name:stock.stock_location_shop0 +msgid "Shop 1" +msgstr "Veikals 1" + +#. module: stock +#: view:stock.change.product.qty:0 +#: view:stock.change.standard.price:0 +#: view:stock.fill.inventory:0 +#: view:stock.inventory.merge:0 +#: view:stock.invoice.onshipping:0 +#: view:stock.location.product:0 +#: view:stock.move:0 +#: view:stock.move.track:0 +#: view:stock.picking:0 +#: view:stock.split.into:0 +msgid "_Cancel" +msgstr "_Atcelt" + +#. module: stock +#: view:stock.move:0 +msgid "Ready" +msgstr "Pabeigta" + +#. module: stock +#: view:stock.picking:0 +msgid "Calendar View" +msgstr "Kalendāra skats" + +#. module: stock +#: view:stock.picking:0 +msgid "Additional Info" +msgstr "Papildus info" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "Operation forbidden" +msgstr "Operācija aizliegta" + +#. module: stock +#: field:stock.location.product,from_date:0 +msgid "From" +msgstr "No" + +#. module: stock +#: code:addons/stock/wizard/stock_return_picking.py:0 +#, python-format +msgid "You may only return pickings that are Confirmed, Available or Done!" +msgstr "" + +#. module: stock +#: view:stock.picking:0 +#: field:stock.picking,invoice_state:0 +msgid "Invoice Control" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_stock_production_lot_revision +msgid "Production lot revisions" +msgstr "" + +#. module: stock +#: view:stock.picking:0 +msgid "Internal Picking List" +msgstr "" + +#. module: stock +#: selection:report.stock.inventory,state:0 +#: selection:report.stock.move,state:0 +#: selection:stock.move,state:0 +#: selection:stock.picking,state:0 +msgid "Waiting" +msgstr "Gaida" + +#. module: stock +#: view:stock.move:0 +#: selection:stock.move.split.lines,action:0 +#: view:stock.picking:0 +msgid "Split" +msgstr "Sadalīt" + +#. module: stock +#: view:stock.picking:0 +msgid "Search Stock Picking" +msgstr "" + +#. module: stock +#: code:addons/stock/product.py:0 +#, python-format +msgid "Company is not specified in Location" +msgstr "" + +#. module: stock +#: view:report.stock.move:0 +#: field:stock.partial.move,type:0 +msgid "Type" +msgstr "Tips" + +#. module: stock +#: model:stock.location,name:stock.stock_location_5 +msgid "Generic IT Suppliers" +msgstr "" + +#. module: stock +#: report:stock.picking.list:0 +msgid "Picking List:" +msgstr "" + +#. module: stock +#: field:stock.inventory,date:0 +#: field:stock.move,create_date:0 +#: field:stock.production.lot,date:0 +#: field:stock.tracking,date:0 +msgid "Creation Date" +msgstr "Izveidošanas datums" + +#. module: stock +#: field:report.stock.lines.date,id:0 +msgid "Inventory Line Id" +msgstr "" + +#. module: stock +#: help:stock.location,address_id:0 +msgid "Address of customer or supplier." +msgstr "" + +#. module: stock +#: view:report.stock.move:0 +#: field:report.stock.move,picking_id:0 +msgid "Packing" +msgstr "Iepakošana" + +#. module: stock +#: selection:report.stock.inventory,location_type:0 +#: field:res.partner,property_stock_customer:0 +#: selection:stock.location,usage:0 +msgid "Customer Location" +msgstr "Klienta noliktava" + +#. module: stock +#: code:addons/stock/wizard/stock_partial_move.py:0 +#, python-format +msgid "Invalid action !" +msgstr "Nepareiza darbība!" + +#. module: stock +#: code:addons/stock/wizard/stock_partial_move.py:0 +#, python-format +msgid "Receive Information" +msgstr "" + +#. module: stock +#: model:ir.actions.report.xml,name:stock.report_location_overview +#: report:lot.stock.overview:0 +msgid "Location Inventory Overview" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_stock_replacement +msgid "Stock Replacement" +msgstr "" + +#. module: stock +#: view:stock.inventory:0 +msgid "General Informations" +msgstr "" + +#. module: stock +#: selection:stock.location,chained_location_type:0 +msgid "None" +msgstr "Nav" + +#. module: stock +#: view:stock.tracking:0 +msgid "Downstream traceability" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_invoice_onshipping.py:0 +#, python-format +msgid "No Invoices were created" +msgstr "" + +#. module: stock +#: model:stock.location,name:stock.stock_location_company +msgid "OpenERP S.A." +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_partial_move.py:0 +#, python-format +msgid "Receive" +msgstr "" + +#. module: stock +#: help:stock.incoterms,active:0 +msgid "" +"By unchecking the active field, you may hide an INCOTERM without deleting it." +msgstr "" + +#. module: stock +#: view:stock.move:0 +#: view:stock.picking:0 +#: field:stock.picking,date:0 +msgid "Order Date" +msgstr "" + +#. module: stock +#: field:stock.location,location_id:0 +msgid "Parent Location" +msgstr "" + +#. module: stock +#: help:stock.picking,state:0 +msgid "" +"* Draft: not confirmed yet and will not be scheduled until confirmed\n" +"* Confirmed: still waiting for the availability of products\n" +"* Available: products reserved, simply waiting for confirmation.\n" +"* Waiting: waiting for another move to proceed before it becomes " +"automatically available (e.g. in Make-To-Order flows)\n" +"* Done: has been processed, can't be modified or cancelled anymore\n" +"* Cancelled: has been cancelled, can't be confirmed anymore" +msgstr "" + +#. module: stock +#: help:stock.location,company_id:0 +msgid "Let this field empty if this location is shared between all companies" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "Please provide a positive quantity to scrap!" +msgstr "" + +#. module: stock +#: field:stock.location,chained_delay:0 +msgid "Chaining Lead Time" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_partial_move.py:0 +#, python-format +msgid "Cannot deliver products which are already delivered !" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_stock_invoice_onshipping +msgid "Stock Invoice Onshipping" +msgstr "" + +#. module: stock +#: selection:report.stock.inventory,location_type:0 +#: field:res.partner,property_stock_supplier:0 +#: selection:stock.location,usage:0 +msgid "Supplier Location" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "were scrapped" +msgstr "" + +#. module: stock +#: view:stock.move:0 +#: view:stock.picking:0 +msgid "Partial" +msgstr "" + +#. module: stock +#: selection:report.stock.move,month:0 +msgid "September" +msgstr "" + +#. module: stock +#: help:stock.picking,backorder_id:0 +msgid "" +"If this picking was split this field links to the picking that contains the " +"other part that has been processed already." +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_report_stock_inventory +msgid "Stock Statistics" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_partial_picking.py:0 +#: field:stock.move.memory,currency:0 +#, python-format +msgid "Currency" +msgstr "" + +#. module: stock +#: field:product.product,track_production:0 +msgid "Track Manufacturing Lots" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_inventory_merge.py:0 +#, python-format +msgid "" +"Please select multiple physical inventories to merge in the list view." +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.act_product_stock_move_open +#: model:ir.actions.act_window,name:stock.action_move_form2 +#: model:ir.ui.menu,name:stock.menu_action_move_form2 +#: view:stock.inventory:0 +#: view:stock.move:0 +#: view:stock.picking:0 +#: view:stock.production.lot:0 +#: view:stock.tracking:0 +msgid "Stock Moves" +msgstr "" + +#. module: stock +#: selection:report.stock.move,type:0 +#: selection:stock.location,chained_picking_type:0 +#: selection:stock.picking,type:0 +msgid "Sending Goods" +msgstr "" + +#. module: stock +#: view:stock.picking:0 +msgid "Cancel Availability" +msgstr "" + +#. module: stock +#: help:stock.move,date_expected:0 +msgid "Scheduled date for the processing of this move" +msgstr "" + +#. module: stock +#: field:stock.inventory,move_ids:0 +msgid "Created Moves" +msgstr "" + +#. module: stock +#: model:stock.location,name:stock.stock_location_14 +msgid "Shelf 2" +msgstr "" + +#. module: stock +#: field:stock.report.tracklots,tracking_id:0 +msgid "Tracking lot" +msgstr "" + +#. module: stock +#: help:stock.location,posx:0 +#: help:stock.location,posy:0 +#: help:stock.location,posz:0 +msgid "Optional localization details, for information purpose only" +msgstr "" + +#. module: stock +#: view:product.product:0 +#: view:product.template:0 +msgid "Counter-Part Locations Properties" +msgstr "" + +#. module: stock +#: view:stock.location:0 +msgid "Localization" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_stock_report_tracklots +msgid "Stock report by tracking lots" +msgstr "" + +#. module: stock +#: code:addons/stock/product.py:0 +#, python-format +msgid "Delivered Qty" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.track_line +#: view:stock.inventory.line.split:0 +#: view:stock.move.split:0 +msgid "Split in lots" +msgstr "" + +#. module: stock +#: view:stock.move.split:0 +msgid "Production Lot Numbers" +msgstr "" + +#. module: stock +#: view:report.stock.inventory:0 +#: field:report.stock.inventory,date:0 +#: field:report.stock.move,date:0 +#: view:stock.inventory:0 +#: report:stock.inventory.move:0 +#: view:stock.move:0 +#: field:stock.move,date:0 +#: field:stock.partial.move,date:0 +#: field:stock.partial.picking,date:0 +#: view:stock.picking:0 +msgid "Date" +msgstr "" + +#. module: stock +#: view:report.stock.inventory:0 +#: view:report.stock.move:0 +#: view:stock.move:0 +#: view:stock.picking:0 +msgid "Extended Filters..." +msgstr "" + +#. module: stock +#: field:stock.warehouse,lot_stock_id:0 +msgid "Location Stock" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_inventory_merge.py:0 +#, python-format +msgid "Merging is only allowed on draft inventories." +msgstr "" + +#. module: stock +#: model:ir.ui.menu,name:stock.menu_dashboard_stock +msgid "Dashboard" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_stock_move_track +msgid "Track moves" +msgstr "" + +#. module: stock +#: field:stock.incoterms,code:0 +msgid "Code" +msgstr "" + +#. module: stock +#: view:stock.inventory.line.split:0 +msgid "Lots Number" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.open_board_warehouse +#: model:ir.ui.menu,name:stock.menu_board_warehouse +msgid "Warehouse Dashboard" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "You can not remove a lot line !" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_stock_move_scrap +#: view:stock.move:0 +#: view:stock.move.scrap:0 +#: view:stock.picking:0 +msgid "Scrap Products" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "You cannot remove the picking which is in %s state !" +msgstr "" + +#. module: stock +#: view:stock.inventory.line.split:0 +#: view:stock.move.consume:0 +#: view:stock.move.scrap:0 +#: view:stock.move.split:0 +#: view:stock.picking:0 +msgid "Cancel" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.act_stock_return_picking +#: model:ir.model,name:stock.model_stock_return_picking +msgid "Return Picking" +msgstr "" + +#. module: stock +#: view:stock.inventory:0 +#: view:stock.move:0 +#: view:stock.picking:0 +msgid "Split in production lots" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_stock_location +#: view:report.stock.inventory:0 +#: field:report.stock.inventory,location_id:0 +#: field:stock.change.product.qty,location_id:0 +#: field:stock.fill.inventory,location_id:0 +#: field:stock.inventory.line,location_id:0 +#: report:stock.inventory.move:0 +#: view:stock.location:0 +#: view:stock.move:0 +#: field:stock.move.consume,location_id:0 +#: field:stock.move.scrap,location_id:0 +#: field:stock.picking,location_id:0 +#: report:stock.picking.list:0 +#: field:stock.report.prodlots,location_id:0 +#: field:stock.report.tracklots,location_id:0 +msgid "Location" +msgstr "" + +#. module: stock +#: view:product.template:0 +msgid "Information" +msgstr "" + +#. module: stock +#: report:stock.picking.list:0 +msgid "Shipping Address :" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_return_picking.py:0 +#, python-format +msgid "Provide the quantities of the returned products." +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "" +"Can not create Journal Entry, Input Account defined on this product and " +"Variant account on category of this product are same." +msgstr "" + +#. module: stock +#: view:stock.change.standard.price:0 +msgid "Cost Price" +msgstr "" + +#. module: stock +#: view:product.product:0 +#: field:product.product,valuation:0 +msgid "Inventory Valuation" +msgstr "" + +#. module: stock +#: view:stock.picking:0 +msgid "Create Invoice" +msgstr "" + +#. module: stock +#: view:stock.move:0 +#: view:stock.picking:0 +msgid "Process Later" +msgstr "" + +#. module: stock +#: help:res.partner,property_stock_supplier:0 +msgid "" +"This stock location will be used, instead of the default one, as the source " +"location for goods you receive from the current partner" +msgstr "" + +#. module: stock +#: field:stock.warehouse,partner_address_id:0 +msgid "Owner Address" +msgstr "" + +#. module: stock +#: help:stock.move,price_unit:0 +msgid "" +"Technical field used to record the product cost set by the user during a " +"picking confirmation (when average price costing method is used)" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,help:stock.action_stock_move_report +msgid "" +"Moves Analysis allows you to easily check and analyse your company stock " +"moves. Use this report when you want to analyse the different routes taken " +"by your products and inventory management performance." +msgstr "" + +#. module: stock +#: field:report.stock.move,day_diff1:0 +msgid "Planned Lead Time (Days)" +msgstr "" + +#. module: stock +#: field:stock.change.standard.price,new_price:0 +msgid "Price" +msgstr "" + +#. module: stock +#: view:stock.inventory:0 +msgid "Search Inventory" +msgstr "" + +#. module: stock +#: field:stock.move.track,quantity:0 +msgid "Quantity per lot" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "" +"There is no stock input account defined for this product or its category: " +"\"%s\" (id: %d)" +msgstr "" + +#. module: stock +#: code:addons/stock/product.py:0 +#, python-format +msgid "Received Qty" +msgstr "" + +#. module: stock +#: field:stock.production.lot,ref:0 +msgid "Internal Reference" +msgstr "" + +#. module: stock +#: help:stock.production.lot,prefix:0 +msgid "" +"Optional prefix to prepend when displaying this serial number: PREFIX/SERIAL " +"[INT_REF]" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_view_stock_fill_inventory +#: model:ir.model,name:stock.model_stock_fill_inventory +#: view:stock.fill.inventory:0 +msgid "Import Inventory" +msgstr "" + +#. module: stock +#: field:stock.incoterms,name:0 +#: field:stock.move,name:0 +#: field:stock.warehouse,name:0 +msgid "Name" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "is done." +msgstr "" + +#. module: stock +#: view:product.product:0 +msgid "Stocks" +msgstr "" + +#. module: stock +#: model:ir.module.module,description:stock.module_meta_information +msgid "" +"OpenERP Inventory Management module can manage multi-warehouses, multi and " +"structured stock locations.\n" +"Thanks to the double entry management, the inventory controlling is powerful " +"and flexible:\n" +"* Moves history and planning,\n" +"* Different inventory methods (FIFO, LIFO, ...)\n" +"* Stock valuation (standard or average price, ...)\n" +"* Robustness faced with Inventory differences\n" +"* Automatic reordering rules (stock level, JIT, ...)\n" +"* Bar code supported\n" +"* Rapid detection of mistakes through double entry system\n" +"* Traceability (upstream/downstream, production lots, serial number, ...)\n" +"* Dashboard for warehouse that includes:\n" +" * Products to receive in delay (date < = today)\n" +" * Procurement in exception\n" +" * Graph : Number of Receive products vs planned (bar graph on week par " +"day)\n" +" * Graph : Number of Delivery products vs planned (bar graph on week par " +"day)\n" +" " +msgstr "" + +#. module: stock +#: help:product.template,property_stock_inventory:0 +msgid "" +"For the current product, this stock location will be used, instead of the " +"default one, as the source location for stock moves generated when you do an " +"inventory" +msgstr "" + +#. module: stock +#: view:report.stock.lines.date:0 +msgid "Stockable" +msgstr "" + +#. module: stock +#: selection:product.product,valuation:0 +msgid "Real Time (automated)" +msgstr "" + +#. module: stock +#: help:stock.move,tracking_id:0 +msgid "Logistical shipping unit: pallet, box, pack ..." +msgstr "" + +#. module: stock +#: view:stock.change.product.qty:0 +#: view:stock.change.standard.price:0 +msgid "_Apply" +msgstr "" + +#. module: stock +#: report:lot.stock.overview:0 +#: report:lot.stock.overview_all:0 +#: report:stock.inventory.move:0 +#: report:stock.picking.list:0 +msgid "]" +msgstr "" + +#. module: stock +#: field:product.template,property_stock_inventory:0 +msgid "Inventory Location" +msgstr "" + +#. module: stock +#: view:report.stock.inventory:0 +#: view:report.stock.move:0 +msgid "Total value" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,help:stock.action_move_form2 +msgid "" +"This menu gives you the full traceability of inventory operations made on a " +"specific product. You can filter on the product to see all the past or " +"future movements made on the product." +msgstr "" + +#. module: stock +#: help:stock.location,chained_journal_id:0 +msgid "" +"Inventory Journal in which the chained move will be written, if the Chaining " +"Type is not Transparent (no journal is used if left empty)" +msgstr "" + +#. module: stock +#: view:board.board:0 +#: model:ir.actions.act_window,name:stock.action_incoming_product_board +msgid "Incoming Product" +msgstr "" + +#. module: stock +#: view:stock.move:0 +msgid "Creation" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_partial_picking.py:0 +#: field:stock.move.memory,cost:0 +#, python-format +msgid "Cost" +msgstr "" + +#. module: stock +#: field:product.category,property_stock_account_input_categ:0 +#: field:product.template,property_stock_account_input:0 +#: field:stock.change.standard.price,stock_account_input:0 +msgid "Stock Input Account" +msgstr "" + +#. module: stock +#: model:ir.ui.menu,name:stock.menu_stock_warehouse_mgmt +#: model:ir.ui.menu,name:stock.menu_warehouse_config +msgid "Warehouse Management" +msgstr "" + +#. module: stock +#: selection:stock.picking,move_type:0 +msgid "Partial Delivery" +msgstr "" + +#. module: stock +#: selection:stock.location,chained_auto_packing:0 +msgid "Automatic No Step Added" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "Product " +msgstr "" + +#. module: stock +#: view:stock.location.product:0 +msgid "Stock Location Analysis" +msgstr "" + +#. module: stock +#: help:stock.move,date:0 +msgid "" +"Move date: scheduled date until move is done, then date of actual move " +"processing" +msgstr "" + +#. module: stock +#: field:report.stock.lines.date,date:0 +msgid "Latest Inventory Date" +msgstr "" + +#. module: stock +#: view:report.stock.inventory:0 +#: view:report.stock.move:0 +#: view:stock.inventory:0 +#: view:stock.move:0 +#: view:stock.picking:0 +#: view:stock.production.lot:0 +msgid "Group By..." +msgstr "" + +#. module: stock +#: view:stock.location:0 +msgid "Chained Locations" +msgstr "" + +#. module: stock +#: model:stock.location,name:stock.location_inventory +msgid "Inventory loss" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "Document" +msgstr "" + +#. module: stock +#: view:stock.picking:0 +msgid "Input Picking List" +msgstr "" + +#. module: stock +#: field:stock.move,product_uom:0 +#: field:stock.move.memory,product_uom:0 +msgid "Unit of Measure" +msgstr "" + +#. module: stock +#: code:addons/stock/product.py:0 +#, python-format +msgid "Products: " +msgstr "" + +#. module: stock +#: help:product.product,track_production:0 +msgid "" +"Forces to specify a Production Lot for all moves containing this product and " +"generated by a Manufacturing Order" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.track_line_old +#: view:stock.move.track:0 +msgid "Tracking a move" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,help:stock.action_picking_tree6 +msgid "" +"The Internal Moves lists all inventory operations you have to perform in " +"your warehouse. All operations can be categorized into stock journals, so " +"that each worker has it's own list of operations to perform in his own " +"journal. Most operations are prepared automatically by OpenERP according to " +"your pre-configured logistics rules but you can also record manual stock " +"operations." +msgstr "" + +#. module: stock +#: view:product.product:0 +msgid "Update" +msgstr "" + +#. module: stock +#: view:stock.inventory:0 +msgid "Set to Draft" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_stock_journal_form +#: model:ir.ui.menu,name:stock.menu_action_stock_journal_form +msgid "Stock Journals" +msgstr "" + +#. module: stock +#: selection:report.stock.move,type:0 +msgid "Others" +msgstr "" + +#. module: stock +#: code:addons/stock/product.py:0 +#, python-format +msgid "Could not find any difference between standard price and new price!" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_stock_partial_picking +msgid "Partial Picking" +msgstr "" + +#. module: stock +#: model:stock.location,name:stock.stock_location_scrapped +#: field:stock.move,scrapped:0 +msgid "Scrapped" +msgstr "" + +#. module: stock +#: view:stock.inventory:0 +msgid "Products " +msgstr "" + +#. module: stock +#: field:product.product,track_incoming:0 +msgid "Track Incoming Lots" +msgstr "" + +#. module: stock +#: view:board.board:0 +msgid "Warehouse board" +msgstr "" + +#. module: stock +#: code:addons/stock/product.py:0 +#, python-format +msgid "Future Qty" +msgstr "" + +#. module: stock +#: field:product.category,property_stock_variation:0 +msgid "Stock Variation Account" +msgstr "" + +#. module: stock +#: field:stock.move,note:0 +#: view:stock.picking:0 +#: field:stock.picking,note:0 +msgid "Notes" +msgstr "" + +#. module: stock +#: report:lot.stock.overview:0 +#: report:lot.stock.overview_all:0 +msgid "Value" +msgstr "" + +#. module: stock +#: field:report.stock.move,type:0 +#: field:stock.location,chained_picking_type:0 +#: field:stock.picking,type:0 +msgid "Shipping Type" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "You can only delete draft moves." +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_partial_picking.py:0 +#: model:ir.actions.act_window,name:stock.act_product_location_open +#: model:ir.ui.menu,name:stock.menu_stock_products_menu +#: view:stock.inventory:0 +#: view:stock.picking:0 +#, python-format +msgid "Products" +msgstr "" + +#. module: stock +#: view:stock.change.standard.price:0 +msgid "Change Price" +msgstr "" + +#. module: stock +#: field:stock.picking,move_type:0 +msgid "Delivery Method" +msgstr "" + +#. module: stock +#: help:report.stock.move,location_dest_id:0 +#: help:stock.move,location_dest_id:0 +#: help:stock.picking,location_dest_id:0 +msgid "Location where the system will stock the finished products." +msgstr "" + +#. module: stock +#: help:product.category,property_stock_variation:0 +msgid "" +"When real-time inventory valuation is enabled on a product, this account " +"will hold the current value of the products." +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "" +"There is no stock output account defined for this product or its category: " +"\"%s\" (id: %d)" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_stock_move +msgid "Stock Move" +msgstr "" + +#. module: stock +#: view:report.stock.move:0 +msgid "Delay(Days)" +msgstr "" + +#. module: stock +#: field:stock.move.memory,move_id:0 +msgid "Move" +msgstr "" + +#. module: stock +#: help:stock.picking,min_date:0 +msgid "Expected date for the picking to be processed" +msgstr "" + +#. module: stock +#: code:addons/stock/product.py:0 +#, python-format +msgid "P&L Qty" +msgstr "" + +#. module: stock +#: view:stock.production.lot:0 +#: field:stock.production.lot,revisions:0 +msgid "Revisions" +msgstr "" + +#. module: stock +#: view:stock.picking:0 +msgid "This operation will cancel the shipment. Do you want to continue?" +msgstr "" + +#. module: stock +#: help:product.product,valuation:0 +msgid "" +"If real-time valuation is enabled for a product, the system will " +"automatically write journal entries corresponding to stock moves.The " +"inventory variation account set on the product category will represent the " +"current inventory value, and the stock input and stock output account will " +"hold the counterpart moves for incoming and outgoing products." +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,help:stock.action_stock_inventory_report +msgid "" +"Inventory Analysis allows you to easily check and analyse your company stock " +"levels. Sort and group by selection criteria in order to better analyse and " +"manage your company activities." +msgstr "" + +#. module: stock +#: help:report.stock.move,location_id:0 +#: help:stock.move,location_id:0 +msgid "" +"Sets a location if you produce at a fixed location. This can be a partner " +"location if you subcontract the manufacturing operations." +msgstr "" + +#. module: stock +#: view:stock.invoice.onshipping:0 +msgid "Create" +msgstr "" + +#. module: stock +#: view:stock.move:0 +#: view:stock.picking:0 +msgid "Dates" +msgstr "" + +#. module: stock +#: field:stock.move,priority:0 +msgid "Priority" +msgstr "" + +#. module: stock +#: view:stock.move:0 +msgid "Source" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#: model:ir.model,name:stock.model_stock_inventory +#: selection:report.stock.inventory,location_type:0 +#: field:stock.inventory.line,inventory_id:0 +#: report:stock.inventory.move:0 +#: selection:stock.location,usage:0 +#, python-format +msgid "Inventory" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_stock_picking +msgid "Picking List" +msgstr "" + +#. module: stock +#: sql_constraint:stock.production.lot:0 +msgid "" +"The combination of serial number and internal reference must be unique !" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_partial_picking.py:0 +#, python-format +msgid "Currency in which Unit Cost is expressed" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_stock_ups +msgid "Stock ups" +msgstr "" + +#. module: stock +#: view:stock.inventory:0 +msgid "Cancel Inventory" +msgstr "" + +#. module: stock +#: field:stock.move.split.lines,name:0 +#: field:stock.move.split.lines.exist,name:0 +msgid "Tracking serial" +msgstr "" + +#. module: stock +#: code:addons/stock/report/report_stock.py:0 +#: code:addons/stock/stock.py:0 +#, python-format +msgid "Error !" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_stock_replacement_result +msgid "Stock Replacement result" +msgstr "" + +#. module: stock +#: selection:stock.location,chained_location_type:0 +msgid "Fixed Location" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,help:stock.action_production_lot_form +msgid "" +"This is the list of all the production lots (serial numbers) you recorded. " +"After having selected a lot, you can get the up-stream or down-stream " +"traceability of the products contained in lot." +msgstr "" + +#. module: stock +#: selection:report.stock.move,month:0 +msgid "July" +msgstr "" + +#. module: stock +#: view:report.stock.lines.date:0 +msgid "Consumable" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,help:stock.action_stock_line_date +msgid "" +"Display the last inventories done on your products and easily sort them with " +"specific filtering criteria. If you do frequent and partial inventories, you " +"need this report in order to ensure that the stock of each product is " +"controlled at least once a year." +msgstr "" + +#. module: stock +#: model:ir.actions.report.xml,name:stock.report_product_history +msgid "Stock Level Forecast" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_stock_journal +#: field:report.stock.move,stock_journal:0 +#: view:stock.journal:0 +#: field:stock.journal,name:0 +#: field:stock.picking,stock_journal_id:0 +msgid "Stock Journal" +msgstr "" + +#. module: stock +#: selection:report.stock.inventory,location_type:0 +#: selection:stock.location,usage:0 +msgid "Procurement" +msgstr "" + +#. module: stock +#: model:stock.location,name:stock.stock_location_4 +msgid "Maxtor Suppliers" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_change_product_qty.py:0 +#: code:addons/stock/wizard/stock_change_standard_price.py:0 +#, python-format +msgid "Active ID is not set in Context" +msgstr "" + +#. module: stock +#: view:stock.picking:0 +msgid "Force Availability" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.move_scrap +#: view:stock.move.scrap:0 +msgid "Scrap Move" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_partial_move.py:0 +#: model:ir.actions.act_window,name:stock.action_reception_picking_move +#: model:ir.ui.menu,name:stock.menu_action_pdct_in +#: view:stock.move:0 +#, python-format +msgid "Receive Products" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_partial_move.py:0 +#: model:ir.actions.act_window,name:stock.action_out_picking_move +#: model:ir.ui.menu,name:stock.menu_action_pdct_out +#, python-format +msgid "Deliver Products" +msgstr "" + +#. module: stock +#: view:stock.location.product:0 +msgid "View Stock of Products" +msgstr "" + +#. module: stock +#: view:stock.picking:0 +msgid "Internal Picking list" +msgstr "" + +#. module: stock +#: view:report.stock.move:0 +#: field:report.stock.move,month:0 +msgid "Month" +msgstr "" + +#. module: stock +#: help:stock.picking,date_done:0 +msgid "Date of Completion" +msgstr "" + +#. module: stock +#: help:stock.tracking,active:0 +msgid "" +"By unchecking the active field, you may hide a pack without deleting it." +msgstr "" + +#. module: stock +#: view:stock.inventory.merge:0 +msgid "Yes" +msgstr "" + +#. module: stock +#: field:stock.inventory,inventory_line_id:0 +msgid "Inventories" +msgstr "" + +#. module: stock +#: view:report.stock.move:0 +msgid "Todo" +msgstr "" + +#. module: stock +#: view:report.stock.inventory:0 +#: field:report.stock.inventory,company_id:0 +#: view:report.stock.move:0 +#: field:report.stock.move,company_id:0 +#: field:stock.inventory,company_id:0 +#: field:stock.inventory.line,company_id:0 +#: field:stock.location,company_id:0 +#: field:stock.move,company_id:0 +#: field:stock.picking,company_id:0 +#: field:stock.production.lot,company_id:0 +#: field:stock.production.lot.revision,company_id:0 +#: field:stock.warehouse,company_id:0 +msgid "Company" +msgstr "" + +#. module: stock +#: view:stock.picking:0 +msgid "Back Orders" +msgstr "" + +#. module: stock +#: code:addons/stock/product.py:0 +#, python-format +msgid "" +"There is no stock input account defined for this product: \"%s\" (id: %d)" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "Can not consume a move with negative or zero quantity !" +msgstr "" + +#. module: stock +#: field:stock.location,stock_real:0 +msgid "Real Stock" +msgstr "" + +#. module: stock +#: view:stock.fill.inventory:0 +msgid "Fill Inventory" +msgstr "" + +#. module: stock +#: constraint:product.template:0 +msgid "" +"Error: The default UOM and the purchase UOM must be in the same category." +msgstr "" + +#. module: stock +#: help:product.category,property_stock_account_input_categ:0 +msgid "" +"When doing real-time inventory valuation, counterpart Journal Items for all " +"incoming stock moves will be posted in this account. This is the default " +"value for all products in this category, it can also directly be set on each " +"product." +msgstr "" + +#. module: stock +#: field:stock.production.lot.revision,date:0 +msgid "Revision Date" +msgstr "" + +#. module: stock +#: view:report.stock.inventory:0 +#: field:report.stock.inventory,prodlot_id:0 +#: view:stock.move:0 +#: field:stock.move.split.lines,lot_id:0 +#: field:stock.move.split.lines.exist,lot_id:0 +#: report:stock.picking.list:0 +msgid "Lot" +msgstr "" + +#. module: stock +#: view:stock.move.split:0 +msgid "Production Lot Number" +msgstr "" + +#. module: stock +#: field:stock.move,product_uos_qty:0 +msgid "Quantity (UOS)" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "" +"You are moving %.2f %s products but only %.2f %s available in this lot." +msgstr "" + +#. module: stock +#: view:stock.move:0 +msgid "Set Available" +msgstr "" + +#. module: stock +#: report:stock.picking.list:0 +msgid "Contact Address :" +msgstr "" + +#. module: stock +#: field:stock.move,backorder_id:0 +msgid "Back Order" +msgstr "" + +#. module: stock +#: field:stock.incoterms,active:0 +#: field:stock.location,active:0 +#: field:stock.tracking,active:0 +msgid "Active" +msgstr "" + +#. module: stock +#: model:ir.module.module,shortdesc:stock.module_meta_information +msgid "Inventory Management" +msgstr "" + +#. module: stock +#: view:product.template:0 +msgid "Properties" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "Error, no partner !" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_incoterms_tree +#: model:ir.model,name:stock.model_stock_incoterms +#: view:stock.incoterms:0 +msgid "Incoterms" +msgstr "" + +#. module: stock +#: report:lot.stock.overview:0 +#: report:lot.stock.overview_all:0 +#: report:stock.inventory.move:0 +msgid "Total:" +msgstr "" + +#. module: stock +#: help:stock.incoterms,name:0 +msgid "" +"Incoterms are series of sales terms.They are used to divide transaction " +"costs and responsibilities between buyer and seller and reflect state-of-the-" +"art transportation practices." +msgstr "" + +#. module: stock +#: help:stock.fill.inventory,recursive:0 +msgid "" +"If checked, products contained in child locations of selected location will " +"be included as well." +msgstr "" + +#. module: stock +#: field:stock.move.track,tracking_prefix:0 +msgid "Tracking prefix" +msgstr "" + +#. module: stock +#: field:stock.inventory,name:0 +msgid "Inventory Reference" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "Internal picking" +msgstr "" + +#. module: stock +#: view:stock.location.product:0 +msgid "Open Product" +msgstr "" + +#. module: stock +#: field:stock.location.product,to_date:0 +msgid "To" +msgstr "" + +#. module: stock +#: view:stock.move:0 +#: view:stock.picking:0 +msgid "Process" +msgstr "" + +#. module: stock +#: field:stock.production.lot.revision,name:0 +msgid "Revision Name" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_stock_warehouse +#: model:ir.ui.menu,name:stock.menu_stock_root +#: view:stock.warehouse:0 +msgid "Warehouse" +msgstr "" + +#. module: stock +#: view:stock.location.product:0 +msgid "" +"(Keep empty to open the current situation. Adjust HH:MM:SS to 00:00:00 to " +"filter all resources of the day for the 'From' date and 23:59:59 for the " +"'To' date)" +msgstr "" + +#. module: stock +#: view:product.category:0 +msgid "Accounting Stock Properties" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_picking_tree_out +msgid "Customers Packings" +msgstr "" + +#. module: stock +#: selection:report.stock.inventory,state:0 +#: view:report.stock.move:0 +#: selection:report.stock.move,state:0 +#: selection:stock.inventory,state:0 +#: view:stock.move:0 +#: selection:stock.move,state:0 +#: view:stock.picking:0 +#: selection:stock.picking,state:0 +msgid "Done" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_view_change_standard_price +#: model:ir.model,name:stock.model_stock_change_standard_price +#: view:stock.change.standard.price:0 +msgid "Change Standard Price" +msgstr "" + +#. module: stock +#: model:stock.location,name:stock.stock_location_locations_virtual +msgid "Virtual Locations" +msgstr "" + +#. module: stock +#: selection:stock.picking,invoice_state:0 +msgid "To Be Invoiced" +msgstr "" + +#. module: stock +#: field:stock.inventory,date_done:0 +msgid "Date done" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "" +"Please put a partner on the picking list if you want to generate invoice." +msgstr "" + +#. module: stock +#: selection:stock.move,priority:0 +msgid "Not urgent" +msgstr "" + +#. module: stock +#: view:stock.move:0 +msgid "To Do" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_warehouse_form +#: model:ir.ui.menu,name:stock.menu_action_warehouse_form +msgid "Warehouses" +msgstr "" + +#. module: stock +#: field:stock.journal,user_id:0 +msgid "Responsible" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_stock_inventory_report +#: model:ir.ui.menu,name:stock.menu_action_stock_inventory_report +#: view:report.stock.inventory:0 +msgid "Inventory Analysis" +msgstr "" + +#. module: stock +#: field:stock.invoice.onshipping,journal_id:0 +msgid "Destination Journal" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.act_stock_tracking_lot_2_stock_report_tracklots +#: model:stock.location,name:stock.stock_location_stock +msgid "Stock" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_partial_picking.py:0 +#: model:ir.model,name:stock.model_product_product +#: model:ir.ui.menu,name:stock.menu_stock_product +#: view:report.stock.inventory:0 +#: field:report.stock.inventory,product_id:0 +#: field:report.stock.lines.date,product_id:0 +#: view:report.stock.move:0 +#: field:report.stock.move,product_id:0 +#: field:stock.inventory.line,product_id:0 +#: field:stock.inventory.line.split,product_id:0 +#: report:stock.inventory.move:0 +#: view:stock.move:0 +#: field:stock.move,product_id:0 +#: field:stock.move.consume,product_id:0 +#: field:stock.move.memory,product_id:0 +#: field:stock.move.scrap,product_id:0 +#: field:stock.move.split,product_id:0 +#: view:stock.production.lot:0 +#: field:stock.production.lot,product_id:0 +#: field:stock.report.prodlots,product_id:0 +#: field:stock.report.tracklots,product_id:0 +#, python-format +msgid "Product" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_return_picking.py:0 +#, python-format +msgid "Invoicing" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "Please provide Proper Quantity !" +msgstr "" + +#. module: stock +#: field:stock.move,product_uos:0 +msgid "Product UOS" +msgstr "" + +#. module: stock +#: field:stock.location,posz:0 +msgid "Height (Z)" +msgstr "" + +#. module: stock +#: field:stock.ups,weight:0 +msgid "Lot weight" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_stock_move_consume +#: view:stock.move.consume:0 +msgid "Consume Products" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "Insufficient Stock in Lot !" +msgstr "" + +#. module: stock +#: field:stock.location,parent_right:0 +msgid "Right Parent" +msgstr "" + +#. module: stock +#: field:stock.picking,address_id:0 +msgid "Address" +msgstr "" + +#. module: stock +#: report:lot.stock.overview:0 +#: report:lot.stock.overview_all:0 +msgid "Variants" +msgstr "" + +#. module: stock +#: field:stock.location,posx:0 +msgid "Corridor (X)" +msgstr "" + +#. module: stock +#: model:stock.location,name:stock.stock_location_suppliers +msgid "Suppliers" +msgstr "" + +#. module: stock +#: field:report.stock.inventory,value:0 +#: field:report.stock.move,value:0 +msgid "Total Value" +msgstr "" + +#. module: stock +#: field:stock.move.memory,wizard_id:0 +msgid "Wizard" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_view_stock_location_product +#: model:ir.model,name:stock.model_stock_location_product +msgid "Products by Location" +msgstr "" + +#. module: stock +#: field:stock.fill.inventory,recursive:0 +msgid "Include children" +msgstr "" + +#. module: stock +#: model:stock.location,name:stock.stock_location_components +msgid "Shelf 1" +msgstr "" + +#. module: stock +#: view:stock.move:0 +msgid "Order" +msgstr "" + +#. module: stock +#: field:stock.tracking,name:0 +msgid "Pack Reference" +msgstr "" + +#. module: stock +#: view:report.stock.move:0 +#: field:report.stock.move,location_id:0 +#: field:stock.move,location_id:0 +msgid "Source Location" +msgstr "" + +#. module: stock +#: view:product.template:0 +msgid "Accounting Entries" +msgstr "" + +#. module: stock +#: view:stock.move:0 +#: view:stock.picking:0 +msgid "Unit Of Measure" +msgstr "" + +#. module: stock +#: report:stock.picking.list:0 +msgid "Total" +msgstr "" + +#. module: stock +#: model:stock.location,name:stock.stock_location_intermediatelocation0 +msgid "Internal Shippings" +msgstr "" + +#. module: stock +#: field:stock.change.standard.price,enable_stock_in_out_acc:0 +msgid "Enable Related Account" +msgstr "" + +#. module: stock +#: field:stock.location,stock_virtual_value:0 +msgid "Virtual Stock Value" +msgstr "" + +#. module: stock +#: view:product.product:0 +#: view:stock.inventory.line.split:0 +#: view:stock.move.split:0 +msgid "Lots" +msgstr "" + +#. module: stock +#: view:stock.move:0 +#: view:stock.picking:0 +msgid "New pack" +msgstr "" + +#. module: stock +#: view:stock.move:0 +msgid "Destination" +msgstr "" + +#. module: stock +#: selection:stock.picking,move_type:0 +msgid "All at once" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "" +"Quantities, UoMs, Products and Locations cannot be modified on stock moves " +"that have already been processed (except by the Administrator)" +msgstr "" + +#. module: stock +#: code:addons/stock/product.py:0 +#, python-format +msgid "Future Productions" +msgstr "" + +#. module: stock +#: view:stock.picking:0 +msgid "To Invoice" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_return_picking.py:0 +#, python-format +msgid "Return lines" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_report_stock_lines_date +#: view:report.stock.lines.date:0 +msgid "Dates of Inventories" +msgstr "" + +#. module: stock +#: view:report.stock.move:0 +msgid "Total incoming quantity" +msgstr "" + +#. module: stock +#: field:report.stock.move,product_qty_out:0 +msgid "Out Qty" +msgstr "" + +#. module: stock +#: field:stock.production.lot,move_ids:0 +msgid "Moves for this production lot" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_fill_inventory.py:0 +#, python-format +msgid "Message !" +msgstr "" + +#. module: stock +#: view:stock.move:0 +#: view:stock.picking:0 +msgid "Put in current pack" +msgstr "" + +#. module: stock +#: view:stock.inventory:0 +msgid "Lot Inventory" +msgstr "" + +#. module: stock +#: view:stock.move:0 +msgid "Reason" +msgstr "" + +#. module: stock +#: report:stock.picking.list:0 +msgid "Delivery Order:" +msgstr "" + +#. module: stock +#: field:stock.location,icon:0 +msgid "Icon" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "UserError" +msgstr "" + +#. module: stock +#: view:stock.inventory.line.split:0 +#: view:stock.move.consume:0 +#: view:stock.move.scrap:0 +#: view:stock.move.split:0 +#: view:stock.move.track:0 +#: view:stock.split.into:0 +msgid "Ok" +msgstr "" + +#. module: stock +#: model:stock.location,name:stock.stock_location_8 +msgid "Non European Customers" +msgstr "" + +#. module: stock +#: code:addons/stock/product.py:0 +#: code:addons/stock/stock.py:0 +#: code:addons/stock/wizard/stock_fill_inventory.py:0 +#: code:addons/stock/wizard/stock_splitinto.py:0 +#, python-format +msgid "Error!" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "" +"There is no inventory variation account defined on the product category: " +"\"%s\" (id: %d)" +msgstr "" + +#. module: stock +#: view:stock.inventory.merge:0 +msgid "Do you want to merge theses inventories ?" +msgstr "" + +#. module: stock +#: selection:report.stock.inventory,state:0 +#: selection:report.stock.move,state:0 +#: selection:stock.inventory,state:0 +#: selection:stock.move,state:0 +#: selection:stock.picking,state:0 +msgid "Cancelled" +msgstr "" + +#. module: stock +#: field:stock.location,chained_location_type:0 +msgid "Chained Location Type" +msgstr "" + +#. module: stock +#: help:stock.picking,move_type:0 +msgid "It specifies goods to be delivered all at once or by direct delivery" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_invoice_onshipping.py:0 +#, python-format +msgid "This picking list does not require invoicing." +msgstr "" + +#. module: stock +#: selection:report.stock.move,type:0 +#: selection:stock.location,chained_picking_type:0 +#: selection:stock.picking,type:0 +msgid "Getting Goods" +msgstr "" + +#. module: stock +#: help:stock.location,chained_location_type:0 +msgid "" +"Determines whether this location is chained to another location, i.e. any " +"incoming product in this location \n" +"should next go to the chained location. The chained location is determined " +"according to the type :\n" +"* None: No chaining at all\n" +"* Customer: The chained location will be taken from the Customer Location " +"field on the Partner form of the Partner that is specified in the Picking " +"list of the incoming products.\n" +"* Fixed Location: The chained location is taken from the next field: Chained " +"Location if Fixed." +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_inventory_merge.py:0 +#, python-format +msgid "Warning" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,help:stock.action_location_tree +msgid "" +"This is the structure of your company's warehouses and locations. You can " +"click on a location in order to get the list of the products and their stock " +"level in this particular location and all its children." +msgstr "" + +#. module: stock +#: help:res.partner,property_stock_customer:0 +msgid "" +"This stock location will be used, instead of the default one, as the " +"destination location for goods you send to this partner" +msgstr "" + +#. module: stock +#: selection:report.stock.inventory,state:0 +#: selection:report.stock.move,state:0 +#: selection:stock.inventory,state:0 +#: selection:stock.move,state:0 +#: view:stock.picking:0 +#: selection:stock.picking,state:0 +msgid "Confirmed" +msgstr "" + +#. module: stock +#: view:stock.picking:0 +msgid "Confirm" +msgstr "" + +#. module: stock +#: help:stock.location,icon:0 +msgid "Icon show in hierarchical tree view" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_view_stock_merge_inventories +#: view:stock.inventory.merge:0 +msgid "Merge inventories" +msgstr "" + +#. module: stock +#: help:stock.change.product.qty,new_quantity:0 +msgid "This quantity is expressed in the Default UoM of the product." +msgstr "" + +#. module: stock +#: report:stock.picking.list:0 +msgid "Reception:" +msgstr "" + +#. module: stock +#: help:stock.location,scrap_location:0 +msgid "" +"Check this box to allow using this location to put scrapped/damaged goods." +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.act_relate_picking +msgid "Related Picking" +msgstr "" + +#. module: stock +#: view:report.stock.move:0 +msgid "Total outgoing quantity" +msgstr "" + +#. module: stock +#: field:stock.picking,backorder_id:0 +msgid "Back Order of" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_partial_picking.py:0 +#: help:stock.move.memory,cost:0 +#, python-format +msgid "Unit Cost for this product line" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_product_category +#: view:report.stock.inventory:0 +#: field:report.stock.inventory,product_categ_id:0 +#: view:report.stock.move:0 +#: field:report.stock.move,categ_id:0 +msgid "Product Category" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_change_product_qty.py:0 +#, python-format +msgid "INV: " +msgstr "" + +#. module: stock +#: model:ir.ui.menu,name:stock.next_id_61 +msgid "Reporting" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid " for the " +msgstr "" + +#. module: stock +#: view:stock.split.into:0 +msgid "Quantity to leave in the current pack" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_stock_invoice_onshipping +#: view:stock.invoice.onshipping:0 +msgid "Create invoice" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,help:stock.action_tracking_form +msgid "" +"This is the list of all your packs. After having selected a Pack, you can " +"get the up-stream or down-stream traceability of the products contained in " +"the pack." +msgstr "" + +#. module: stock +#: model:ir.ui.menu,name:stock.menu_stock_configuration +msgid "Configuration" +msgstr "" + +#. module: stock +#: field:stock.inventory.line.split,use_exist:0 +#: field:stock.move.split,use_exist:0 +msgid "Existing Lots" +msgstr "" + +#. module: stock +#: field:product.product,location_id:0 +#: view:stock.location:0 +msgid "Stock Location" +msgstr "" + +#. module: stock +#: help:stock.change.standard.price,new_price:0 +msgid "" +"If cost price is increased, stock variation account will be debited and " +"stock output account will be credited with the value = (difference of amount " +"* quantity available).\n" +"If cost price is decreased, stock variation account will be creadited and " +"stock input account will be debited." +msgstr "" + +#. module: stock +#: field:stock.location,chained_journal_id:0 +msgid "Chaining Journal" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "Not enough stock, unable to reserve the products." +msgstr "" + +#. module: stock +#: model:stock.location,name:stock.stock_location_customers +msgid "Customers" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "is cancelled." +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,help:stock.action_reception_picking_move +msgid "" +"You will find here the list of all products you are waiting for, according " +"to your preceding purchase orders. Once you receive an order, you can filter " +"based on the name of the supplier or the purchase order reference. Then you " +"can confirm all products received using the buttons on the right of each " +"line." +msgstr "" + +#. module: stock +#: view:stock.inventory.line:0 +msgid "Stock Inventory Lines" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_partial_picking.py:0 +#, python-format +msgid "Process Document" +msgstr "" + +#. module: stock +#: code:addons/stock/product.py:0 +#, python-format +msgid "Future Deliveries" +msgstr "" + +#. module: stock +#: view:stock.picking:0 +msgid "Additional info" +msgstr "" + +#. module: stock +#: view:stock.move:0 +#: field:stock.move,tracking_id:0 +msgid "Pack" +msgstr "" + +#. module: stock +#: view:stock.move:0 +#: view:stock.picking:0 +msgid "Date Expected" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,help:stock.action_picking_tree4 +msgid "" +"The Incoming Shipments is the list of all orders you will receive from your " +"supplier. An incoming shipment contains a list of products to be received " +"according to the original purchase order. You can validate the shipment " +"totally or partially." +msgstr "" + +#. module: stock +#: field:stock.move,auto_validate:0 +msgid "Auto Validate" +msgstr "" + +#. module: stock +#: report:stock.picking.list:0 +msgid "Weight" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_product_template +msgid "Product Template" +msgstr "" + +#. module: stock +#: selection:report.stock.move,month:0 +msgid "December" +msgstr "" + +#. module: stock +#: selection:stock.location,chained_auto_packing:0 +msgid "Automatic Move" +msgstr "" + +#. module: stock +#: help:stock.production.lot,name:0 +msgid "Unique production lot, will be displayed as: PREFIX/SERIAL [INT_REF]" +msgstr "" + +#. module: stock +#: view:stock.picking:0 +msgid "Return Products" +msgstr "" + +#. module: stock +#: view:stock.inventory:0 +msgid "Validate Inventory" +msgstr "" + +#. module: stock +#: help:stock.move,price_currency_id:0 +msgid "" +"Technical field used to record the currency chosen by the user during a " +"picking confirmation (when average price costing method is used)" +msgstr "" + +#. module: stock +#: model:ir.ui.menu,name:stock.menu_stock_products_moves +msgid "Products Moves" +msgstr "" + +#. module: stock +#: selection:stock.picking,invoice_state:0 +msgid "Invoiced" +msgstr "" + +#. module: stock +#: field:stock.move,address_id:0 +msgid "Destination Address" +msgstr "" + +#. module: stock +#: field:stock.picking,max_date:0 +msgid "Max. Expected Date" +msgstr "" + +#. module: stock +#: field:stock.picking,auto_picking:0 +msgid "Auto-Picking" +msgstr "" + +#. module: stock +#: model:stock.location,name:stock.stock_location_shop1 +msgid "Shop 2" +msgstr "" + +#. module: stock +#: constraint:res.partner:0 +msgid "Error ! You can not create recursive associated members." +msgstr "" + +#. module: stock +#: view:report.stock.inventory:0 +#: view:report.stock.move:0 +#: selection:report.stock.move,type:0 +#: view:stock.location:0 +#: selection:stock.location,chained_picking_type:0 +#: selection:stock.picking,type:0 +msgid "Internal" +msgstr "" + +#. module: stock +#: selection:report.stock.inventory,state:0 +#: selection:report.stock.move,state:0 +#: selection:stock.inventory,state:0 +#: selection:stock.move,state:0 +#: selection:stock.picking,state:0 +msgid "Draft" +msgstr "" + +#. module: stock +#: model:ir.actions.report.xml,name:stock.report_stock_inventory_move +#: report:stock.inventory.move:0 +msgid "Stock Inventory" +msgstr "" + +#. module: stock +#: help:report.stock.inventory,state:0 +msgid "" +"When the stock move is created it is in the 'Draft' state.\n" +" After that it is set to 'Confirmed' state.\n" +" If stock is available state is set to 'Avaiable'.\n" +" When the picking it done the state is 'Done'. \n" +"The state is 'Waiting' if the move is waiting for another one." +msgstr "" + +#. module: stock +#: view:board.board:0 +msgid "Outgoing Products Delay" +msgstr "" + +#. module: stock +#: field:stock.move.split.lines,use_exist:0 +msgid "Existing Lot" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_return_picking.py:0 +#, python-format +msgid "Please specify at least one non-zero quantity!" +msgstr "" + +#. module: stock +#: help:product.template,property_stock_procurement:0 +msgid "" +"For the current product, this stock location will be used, instead of the " +"default one, as the source location for stock moves generated by procurements" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "is ready to process." +msgstr "" + +#. module: stock +#: help:stock.picking,origin:0 +msgid "Reference of the document that produced this picking." +msgstr "" + +#. module: stock +#: field:stock.fill.inventory,set_stock_zero:0 +msgid "Set to zero" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_invoice_onshipping.py:0 +#, python-format +msgid "None of these picking lists require invoicing." +msgstr "" + +#. module: stock +#: selection:report.stock.move,month:0 +msgid "November" +msgstr "" + +#. module: stock +#: code:addons/stock/product.py:0 +#: code:addons/stock/stock.py:0 +#, python-format +msgid "There is no journal defined on the product category: \"%s\" (id: %d)" +msgstr "" + +#. module: stock +#: code:addons/stock/product.py:0 +#, python-format +msgid "Unplanned Qty" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "is scheduled" +msgstr "" + +#. module: stock +#: field:stock.location,chained_company_id:0 +msgid "Chained Company" +msgstr "" + +#. module: stock +#: view:stock.picking:0 +msgid "Check Availability" +msgstr "" + +#. module: stock +#: selection:report.stock.move,month:0 +msgid "January" +msgstr "" + +#. module: stock +#: help:product.product,track_incoming:0 +msgid "" +"Forces to specify a Production Lot for all moves containing this product and " +"coming from a Supplier Location" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.act_product_stock_move_futur_open +msgid "Future Stock Moves" +msgstr "" + +#. module: stock +#: field:stock.move,move_history_ids2:0 +msgid "Move History (parent moves)" +msgstr "" + +#. module: stock +#: code:addons/stock/product.py:0 +#, python-format +msgid "Future Stock" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#: code:addons/stock/wizard/stock_invoice_onshipping.py:0 +#, python-format +msgid "Error" +msgstr "" + +#. module: stock +#: field:stock.ups.final,xmlfile:0 +msgid "XML File" +msgstr "" + +#. module: stock +#: view:stock.change.product.qty:0 +msgid "Select Quantity" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_partial_picking.py:0 +#: model:res.request.link,name:stock.req_link_tracking +#: field:stock.inventory.line,prod_lot_id:0 +#: report:stock.inventory.move:0 +#: field:stock.move,prodlot_id:0 +#: field:stock.move.memory,prodlot_id:0 +#: field:stock.move.split.lines.exist,prodlot_id:0 +#: view:stock.production.lot:0 +#: field:stock.production.lot,name:0 +#, python-format +msgid "Production Lot" +msgstr "" + +#. module: stock +#: model:ir.ui.menu,name:stock.menu_traceability +#: view:stock.move:0 +#: view:stock.picking:0 +#: view:stock.production.lot:0 +#: view:stock.tracking:0 +msgid "Traceability" +msgstr "" + +#. module: stock +#: view:stock.picking:0 +msgid "To invoice" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_location_form +#: model:ir.ui.menu,name:stock.menu_action_location_form +#: view:stock.picking:0 +msgid "Locations" +msgstr "" + +#. module: stock +#: view:stock.picking:0 +msgid "General Information" +msgstr "" + +#. module: stock +#: field:stock.production.lot,prefix:0 +msgid "Prefix" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_splitinto.py:0 +#, python-format +msgid "" +"Total quantity after split exceeds the quantity to split for this product: " +"\"%s\" (id: %d)" +msgstr "" + +#. module: stock +#: view:stock.move:0 +#: field:stock.partial.move,product_moves:0 +msgid "Moves" +msgstr "" + +#. module: stock +#: view:report.stock.move:0 +#: field:report.stock.move,location_dest_id:0 +#: field:stock.picking,location_dest_id:0 +msgid "Dest. Location" +msgstr "" + +#. module: stock +#: help:stock.move,product_packaging:0 +msgid "" +"It specifies attributes of packaging like type, quantity of packaging,etc." +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#, python-format +msgid "quantity." +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_stock_move_memory +msgid "stock.move.memory" +msgstr "" + +#. module: stock +#: constraint:stock.move:0 +msgid "You must assign a production lot for this product" +msgstr "" + +#. module: stock +#: view:stock.move:0 +msgid "Expected" +msgstr "" + +#. module: stock +#: selection:report.stock.inventory,location_type:0 +#: model:stock.location,name:stock.location_production +#: selection:stock.location,usage:0 +msgid "Production" +msgstr "" + +#. module: stock +#: view:stock.split.into:0 +msgid "Split Move" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_return_picking.py:0 +#, python-format +msgid "" +"There are no products to return (only lines in Done state and not fully " +"returned yet can be returned)!" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_stock_move_split +msgid "Split in Production lots" +msgstr "" + +#. module: stock +#: view:report.stock.inventory:0 +msgid "Real" +msgstr "" + +#. module: stock +#: report:stock.picking.list:0 +#: view:stock.production.lot.revision:0 +#: field:stock.production.lot.revision,description:0 +msgid "Description" +msgstr "" + +#. module: stock +#: selection:report.stock.move,month:0 +msgid "May" +msgstr "" + +#. module: stock +#: code:addons/stock/wizard/stock_partial_move.py:0 +#, python-format +msgid "Deliver" +msgstr "" + +#. module: stock +#: help:product.template,property_stock_account_output:0 +msgid "" +"When doing real-time inventory valuation, counterpart Journal Items for all " +"outgoing stock moves will be posted in this account. If not set on the " +"product, the one from the product category is used." +msgstr "" + +#. module: stock +#: view:stock.tracking:0 +msgid "Upstream traceability" +msgstr "" + +#. module: stock +#: model:ir.actions.report.xml,name:stock.report_location_overview_all +#: report:lot.stock.overview_all:0 +msgid "Location Content" +msgstr "" + +#. module: stock +#: code:addons/stock/product.py:0 +#, python-format +msgid "Produced Qty" +msgstr "" + +#. module: stock +#: field:product.category,property_stock_account_output_categ:0 +#: field:product.template,property_stock_account_output:0 +#: field:stock.change.standard.price,stock_account_output:0 +msgid "Stock Output Account" +msgstr "" + +#. module: stock +#: view:stock.move:0 +msgid "Picking" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_stock_report_prodlots +msgid "Stock report by production lots" +msgstr "" + +#. module: stock +#: view:stock.location:0 +#: selection:stock.location,chained_location_type:0 +#: view:stock.move:0 +msgid "Customer" +msgstr "" + +#. module: stock +#: selection:report.stock.move,month:0 +msgid "February" +msgstr "" + +#. module: stock +#: view:stock.production.lot:0 +msgid "Production Lot Identification" +msgstr "" + +#. module: stock +#: field:stock.location,scrap_location:0 +#: view:stock.move.scrap:0 +msgid "Scrap Location" +msgstr "" + +#. module: stock +#: selection:report.stock.move,month:0 +msgid "April" +msgstr "" + +#. module: stock +#: view:report.stock.inventory:0 +#: view:stock.move:0 +msgid "Future" +msgstr "" + +#. module: stock +#: field:stock.invoice.onshipping,invoice_date:0 +msgid "Invoiced date" +msgstr "" + +#. module: stock +#: model:ir.actions.act_window,name:stock.action_picking_tree +#: model:ir.ui.menu,name:stock.menu_action_picking_tree +#: view:stock.picking:0 +msgid "Outgoing Deliveries" +msgstr "" + +#. module: stock +#: code:addons/stock/stock.py:0 +#: code:addons/stock/wizard/stock_invoice_onshipping.py:0 +#: code:addons/stock/wizard/stock_return_picking.py:0 +#, python-format +msgid "Warning !" +msgstr "" + +#. module: stock +#: model:stock.location,name:stock.stock_location_output +msgid "Output" +msgstr "" + +#. module: stock +#: selection:stock.move.split.lines,action:0 +msgid "Keep in one lot" +msgstr "" + +#. module: stock +#: view:product.product:0 +msgid "Cost Price:" +msgstr "" + +#. module: stock +#: help:stock.move,move_dest_id:0 +msgid "Optional: next stock move when chaining them" +msgstr "" + +#. module: stock +#: view:report.stock.move:0 +#: field:report.stock.move,year:0 +msgid "Year" +msgstr "" + +#. module: stock +#: model:stock.location,name:stock.stock_location_locations +msgid "Physical Locations" +msgstr "" + +#. module: stock +#: model:ir.model,name:stock.model_stock_partial_move +msgid "Partial Move" +msgstr "" diff --git a/addons/stock/i18n/pl.po b/addons/stock/i18n/pl.po index db86a3a919f..a1c8aebee30 100644 --- a/addons/stock/i18n/pl.po +++ b/addons/stock/i18n/pl.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 12:00+0000\n" -"Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \n" +"PO-Revision-Date: 2010-12-31 09:02+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:23+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:01+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock diff --git a/addons/stock/i18n/ru.po b/addons/stock/i18n/ru.po index 7728351959e..f5fe210fad9 100644 --- a/addons/stock/i18n/ru.po +++ b/addons/stock/i18n/ru.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-14 22:39+0000\n" +"PO-Revision-Date: 2011-01-01 11:44+0000\n" "Last-Translator: Chertykov Denis \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:00+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:00+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock @@ -442,7 +442,7 @@ msgstr "Исходящая продукция" #: model:ir.actions.act_window,help:stock.action_warehouse_form msgid "" "Create and manage your warehouses and assign them a location from here" -msgstr "" +msgstr "Создайте и управляйте вашими складами, определите им места хранения" #. module: stock #: field:report.stock.move,product_qty_in:0 @@ -799,7 +799,7 @@ msgstr "Место транзита для перемещений между к #: model:ir.model,name:stock.model_stock_change_product_qty #: view:stock.change.product.qty:0 msgid "Change Product Quantity" -msgstr "" +msgstr "Изменение количества ТМЦ" #. module: stock #: model:ir.model,name:stock.model_stock_inventory_merge @@ -1324,7 +1324,7 @@ msgstr "Общие поставщики ИТ" #. module: stock #: report:stock.picking.list:0 msgid "Picking List:" -msgstr "" +msgstr "Комплектовочный лист:" #. module: stock #: field:stock.inventory,date:0 diff --git a/addons/stock_invoice_directly/i18n/de.po b/addons/stock_invoice_directly/i18n/de.po index d3a88dbd467..7c4112248b5 100644 --- a/addons/stock_invoice_directly/i18n/de.po +++ b/addons/stock_invoice_directly/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 14:49+0000\n" +"PO-Revision-Date: 2010-12-31 11:02+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock_invoice_directly diff --git a/addons/stock_location/i18n/de.po b/addons/stock_location/i18n/de.po index cd62298861d..1c84f42d5da 100644 --- a/addons/stock_location/i18n/de.po +++ b/addons/stock_location/i18n/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 16:33+0000\n" +"PO-Revision-Date: 2010-12-31 10:39+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock_location diff --git a/addons/stock_no_autopicking/i18n/de.po b/addons/stock_no_autopicking/i18n/de.po index bc0bfda3bd0..11684f7fa11 100644 --- a/addons/stock_no_autopicking/i18n/de.po +++ b/addons/stock_no_autopicking/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 5.0.4\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 16:44+0000\n" +"PO-Revision-Date: 2010-12-31 10:22+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock_no_autopicking diff --git a/addons/stock_planning/i18n/es.po b/addons/stock_planning/i18n/es.po index c97f5b1e160..a38aeca999e 100644 --- a/addons/stock_planning/i18n/es.po +++ b/addons/stock_planning/i18n/es.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 12:38+0000\n" +"PO-Revision-Date: 2010-12-31 10:24+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock_planning diff --git a/addons/stock_planning/i18n/fr.po b/addons/stock_planning/i18n/fr.po index 61cdc2e48d4..a5ff9966643 100644 --- a/addons/stock_planning/i18n/fr.po +++ b/addons/stock_planning/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 07:41+0000\n" -"Last-Translator: Aline (OpenERP) \n" +"PO-Revision-Date: 2010-12-31 10:19+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock_planning diff --git a/addons/stock_planning/i18n/ru.po b/addons/stock_planning/i18n/ru.po index 56dde5ebcba..63d33603872 100644 --- a/addons/stock_planning/i18n/ru.po +++ b/addons/stock_planning/i18n/ru.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-11-14 08:14+0000\n" +"PO-Revision-Date: 2011-01-01 11:52+0000\n" "Last-Translator: Chertykov Denis \n" "Language-Team: Russian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:56+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: stock_planning @@ -35,7 +35,7 @@ msgstr "" #. module: stock_planning #: field:stock.planning,maximum_op:0 msgid "Maximum Rule" -msgstr "" +msgstr "Правило максимума" #. module: stock_planning #: field:stock.sale.forecast,analyzed_period1_per_company:0 diff --git a/addons/survey/i18n/de.po b/addons/survey/i18n/de.po index 8c0cae82f3e..e3a36dea442 100644 --- a/addons/survey/i18n/de.po +++ b/addons/survey/i18n/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 17:26+0000\n" +"PO-Revision-Date: 2010-12-31 10:57+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: survey diff --git a/addons/survey/i18n/es.po b/addons/survey/i18n/es.po index 96692d17b07..6ee3c507089 100644 --- a/addons/survey/i18n/es.po +++ b/addons/survey/i18n/es.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 13:40+0000\n" +"PO-Revision-Date: 2010-12-31 08:51+0000\n" "Last-Translator: Borja López Soilán \n" "Language-Team: Spanish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: survey diff --git a/addons/thunderbird/i18n/de.po b/addons/thunderbird/i18n/de.po index f18e8997ce1..0b867e7881c 100644 --- a/addons/thunderbird/i18n/de.po +++ b/addons/thunderbird/i18n/de.po @@ -9,14 +9,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 17:37+0000\n" +"PO-Revision-Date: 2010-12-31 10:37+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: thunderbird diff --git a/addons/users_ldap/i18n/de.po b/addons/users_ldap/i18n/de.po index e2531ea757d..d923ff165ca 100644 --- a/addons/users_ldap/i18n/de.po +++ b/addons/users_ldap/i18n/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 17:38+0000\n" +"PO-Revision-Date: 2010-12-31 11:02+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: users_ldap diff --git a/addons/users_ldap/i18n/fr.po b/addons/users_ldap/i18n/fr.po index 910264e0e8e..ada4105da35 100644 --- a/addons/users_ldap/i18n/fr.po +++ b/addons/users_ldap/i18n/fr.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 07:39+0000\n" -"Last-Translator: Aline (OpenERP) \n" +"PO-Revision-Date: 2010-12-31 10:39+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:28+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:05+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: users_ldap diff --git a/addons/users_ldap/i18n/it.po b/addons/users_ldap/i18n/it.po index 8ed4bb9d006..50eb5a819f5 100644 --- a/addons/users_ldap/i18n/it.po +++ b/addons/users_ldap/i18n/it.po @@ -8,24 +8,24 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-11-27 14:26+0000\n" -"Last-Translator: OpenERP Administrators \n" +"PO-Revision-Date: 2011-01-01 22:03+0000\n" +"Last-Translator: Roberto Onnis \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-24 05:59+0000\n" +"X-Launchpad-Export-Date: 2011-01-02 05:02+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: users_ldap #: constraint:res.company:0 msgid "Error! You can not create recursive companies." -msgstr "" +msgstr "Errore! Non è possibile creare aziende ricorsive." #. module: users_ldap #: constraint:res.users:0 msgid "The chosen company is not in the allowed companies for this user" -msgstr "" +msgstr "L'azienda scelta non è fra la aziende permesse per questo utente" #. module: users_ldap #: field:res.company,ldaps:0 @@ -90,7 +90,7 @@ msgstr "res.company.ldap" #. module: users_ldap #: model:ir.module.module,description:users_ldap.module_meta_information msgid "Adds support for authentication by ldap server" -msgstr "" +msgstr "Aggiunge il supporto per l'autenticazione mediante un server ldap" #. module: users_ldap #: field:res.company.ldap,sequence:0 @@ -100,7 +100,7 @@ msgstr "Sequenza" #. module: users_ldap #: sql_constraint:res.users:0 msgid "You can not have two users with the same login !" -msgstr "" +msgstr "Non è possibile avere due utenti con lo stesso login!" #. module: users_ldap #: model:ir.module.module,shortdesc:users_ldap.module_meta_information diff --git a/addons/warning/i18n/de.po b/addons/warning/i18n/de.po index cdd60de1158..087abf5654a 100644 --- a/addons/warning/i18n/de.po +++ b/addons/warning/i18n/de.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 17:40+0000\n" +"PO-Revision-Date: 2010-12-31 10:33+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: warning diff --git a/addons/wiki/i18n/de.po b/addons/wiki/i18n/de.po index 286a245e143..cc0d5747021 100644 --- a/addons/wiki/i18n/de.po +++ b/addons/wiki/i18n/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 17:42+0000\n" +"PO-Revision-Date: 2010-12-31 11:00+0000\n" "Last-Translator: Thorsten Vocks (OpenBig.org) \n" "Language-Team: German \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: wiki diff --git a/addons/wiki/i18n/fr.po b/addons/wiki/i18n/fr.po index 49999a2c6c1..3213a945aab 100644 --- a/addons/wiki/i18n/fr.po +++ b/addons/wiki/i18n/fr.po @@ -7,13 +7,13 @@ msgstr "" "Project-Id-Version: OpenERP Server 6.0dev\n" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2010-12-21 19:45+0000\n" -"PO-Revision-Date: 2010-12-29 07:16+0000\n" -"Last-Translator: Aline (OpenERP) \n" +"PO-Revision-Date: 2010-12-31 10:32+0000\n" +"Last-Translator: OpenERP Administrators \n" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2010-12-31 05:27+0000\n" +"X-Launchpad-Export-Date: 2011-01-01 05:04+0000\n" "X-Generator: Launchpad (build Unknown)\n" #. module: wiki From b7d5d7c00818f308945ed0f45c0c3839f1ff7b13 Mon Sep 17 00:00:00 2001 From: "qdp-launchpad@tinyerp.com" <> Date: Mon, 3 Jan 2011 09:47:15 +0100 Subject: [PATCH 09/18] [FIX] account: removed translate=True on account type in order to fix the translations bzr revid: qdp-launchpad@tinyerp.com-20110103084715-hihr3cz55l1i43wt --- addons/account/account.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/account/account.py b/addons/account/account.py index f79e36c7681..3fed8c45f17 100644 --- a/addons/account/account.py +++ b/addons/account/account.py @@ -131,7 +131,7 @@ class account_account_type(osv.osv): _name = "account.account.type" _description = "Account Type" _columns = { - 'name': fields.char('Acc. Type Name', size=64, required=True, translate=True), + 'name': fields.char('Acc. Type Name', size=64, required=True), 'code': fields.char('Code', size=32, required=True), 'close_method': fields.selection([('none', 'None'), ('balance', 'Balance'), ('detail', 'Detail'), ('unreconciled', 'Unreconciled')], 'Deferral Method', required=True, help="""Set here the method that will be used to generate the end of year journal entries for all the accounts of this type. From 501673e54f3822460751e24e3113a6b8e43a08c9 Mon Sep 17 00:00:00 2001 From: "MTR(OpenERP)" <> Date: Mon, 3 Jan 2011 16:05:06 +0530 Subject: [PATCH 10/18] [FIX] l10n_fr: buildbot fixes for yaml bzr revid: mra@mra-laptop-20110103103506-s1uude440q9d3cil --- addons/l10n_fr/test/l10n_fr_report.yml | 16 +--------------- 1 file changed, 1 insertion(+), 15 deletions(-) diff --git a/addons/l10n_fr/test/l10n_fr_report.yml b/addons/l10n_fr/test/l10n_fr_report.yml index 7cf9b161223..aadd2c97311 100644 --- a/addons/l10n_fr/test/l10n_fr_report.yml +++ b/addons/l10n_fr/test/l10n_fr_report.yml @@ -1,23 +1,9 @@ -- - In order to test Generate Fiscalyear Opening Entries wizard of OpenERP I first create a fiscalyear "Fiscal Year 2011" to which the entries will move -- - !record {model: account.fiscalyear, id: account_fiscalyear_01}: - code: FY2011 - company_id: base.main_company - date_start: '2012-01-01' - date_stop: '2012-12-31' - name: Fiscal Year 2012 -- - I create the fiscal periods -- - !python {model: account.fiscalyear}: - self.create_period(cr, uid, [ref('account_fiscalyear_01'),]) - In order to test the PDF reports defined on a l10n_fr, we will print an Account Move Line Report for l10n_fr - !python {model: account.move.line}: | import netsvc, tools, os, time - (data, format) = netsvc.LocalService('report.l10n.fr.bilan').create(cr, uid, [], {'model':'account.move.line', 'form':{'fiscalyear_id': ref('account_fiscalyear_01')}}, {}) + (data, format) = netsvc.LocalService('report.l10n.fr.bilan').create(cr, uid, [], {'model':'account.move.line', 'form':{'fiscalyear_id': ref('account.data_fiscalyear')}}, {}) if tools.config['test_report_directory']: file(os.path.join(tools.config['test_report_directory'], 'l10n_fr-bilan_report.'+format), 'wb+').write(data) From 328ef4cacb31d3d16f67eca98f846716a8eaa293 Mon Sep 17 00:00:00 2001 From: "UCO(OpenERP)" <> Date: Mon, 3 Jan 2011 16:36:05 +0530 Subject: [PATCH 11/18] [Fix] project_timesheet: pass the journal_id bzr revid: sbh@tinyerp.com-20110103110605-h0g1pnpv8v72814k --- addons/project_timesheet/project_timesheet.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/project_timesheet/project_timesheet.py b/addons/project_timesheet/project_timesheet.py index 42b9c4733ba..b6ec7d069bd 100644 --- a/addons/project_timesheet/project_timesheet.py +++ b/addons/project_timesheet/project_timesheet.py @@ -111,7 +111,7 @@ class project_work(osv.osv): # Compute based on pricetype amount_unit = obj_timesheet.on_change_unit_amount(cr, uid, timeline_id, - prod_id, amount, False, unit, context=context) + prod_id, amount, False, unit, vals_line['journal_id'], context=context) if amount_unit and 'amount' in amount_unit.get('value',{}): updv = { 'amount': amount_unit['value']['amount'] } obj_timesheet.write(cr, uid, [timeline_id], updv, context=context) @@ -158,7 +158,7 @@ class project_work(osv.osv): # Compute based on pricetype amount_unit = timesheet_obj.on_change_unit_amount(cr, uid, line_id.id, prod_id=prod_id, company_id=False, - unit_amount=vals_line['unit_amount'], unit=False, context=context) + unit_amount=vals_line['unit_amount'], unit=False, journal_id=vals_line['journal_id'], context=context) if amount_unit and 'amount' in amount_unit.get('value',{}): vals_line['amount'] = amount_unit['value']['amount'] From 263c058565329fdecd536a25e4df883a49b6be2e Mon Sep 17 00:00:00 2001 From: "Sbh (OpenERP)" Date: Mon, 3 Jan 2011 16:38:32 +0530 Subject: [PATCH 12/18] [IMP] project_timesheet: rename the project to Analytic account/project bzr revid: sbh@tinyerp.com-20110103110832-t013w7l0ncicvqrh --- addons/project_timesheet/project_timesheet_view.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/project_timesheet/project_timesheet_view.xml b/addons/project_timesheet/project_timesheet_view.xml index 4f5e0ce5891..7b84165b102 100644 --- a/addons/project_timesheet/project_timesheet_view.xml +++ b/addons/project_timesheet/project_timesheet_view.xml @@ -50,7 +50,7 @@ - + @@ -72,7 +72,7 @@ - + From 623b5bbfaaeedd4ab4be9d12a6bb48323bfd630e Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Mon, 3 Jan 2011 13:34:12 +0100 Subject: [PATCH 13/18] [IMP] update version number bzr revid: chs@openerp.com-20110103123412-r5jtzfkflunxknvb --- bin/release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/release.py b/bin/release.py index 1683db52ba4..ea830cd2205 100644 --- a/bin/release.py +++ b/bin/release.py @@ -21,7 +21,7 @@ ############################################################################## name = 'openerp-server' -version = '6.0.0-rc1' +version = '6.0.0-rc2' major_version = '6.0' description = 'OpenERP Server' long_desc = '''OpenERP is a complete ERP and CRM. The main features are accounting (analytic From 96b6e91a30d87d8fe9d596da566579e71bb9050c Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Mon, 3 Jan 2011 13:34:56 +0100 Subject: [PATCH 14/18] [FIX] base: rename bad variable name bzr revid: chs@openerp.com-20110103123456-mqxqymhj62d3sw05 --- bin/addons/base/module/wizard/base_module_upgrade.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/bin/addons/base/module/wizard/base_module_upgrade.py b/bin/addons/base/module/wizard/base_module_upgrade.py index fd9bde9a129..ca82cfb20d2 100644 --- a/bin/addons/base/module/wizard/base_module_upgrade.py +++ b/bin/addons/base/module/wizard/base_module_upgrade.py @@ -82,12 +82,10 @@ class base_module_upgrade(osv.osv_memory): return {'module_info': '\n'.join(map(lambda x: x['name']+' : '+x['state'], res))} def upgrade_module(self, cr, uid, ids, context=None): - pool = pooler.get_pool(cr.dbname) mod_obj = self.pool.get('ir.module.module') - data_obj = self.pool.get('ir.model.data') ids = mod_obj.search(cr, uid, [('state', 'in', ['to upgrade', 'to remove', 'to install'])]) unmet_packages = [] - mod_dep_obj = pool.get('ir.module.module.dependency') + mod_dep_obj = self.pool.get('ir.module.module.dependency') for mod in mod_obj.browse(cr, uid, ids): depends_mod_ids = mod_dep_obj.search(cr, uid, [('module_id', '=', mod.id)]) for dep_mod in mod_dep_obj.browse(cr, uid, depends_mod_ids): @@ -97,8 +95,9 @@ class base_module_upgrade(osv.osv_memory): raise osv.except_osv(_('Unmet dependency !'), _('Following modules are not installed or unknown: %s') % ('\n\n' + '\n'.join(unmet_packages))) mod_obj.download(cr, uid, ids, context=context) cr.commit() - _, pool = pooler.restart_pool(cr.dbname, update_module=True) + _db, pool = pooler.restart_pool(cr.dbname, update_module=True) + data_obj = pool.get('ir.model.data') id2 = data_obj._get_id(cr, uid, 'base', 'view_base_module_upgrade_install') if id2: id2 = data_obj.browse(cr, uid, id2, context=context).res_id From 6b487a9e4d977253b104cf52134ee7fb2bead7ee Mon Sep 17 00:00:00 2001 From: "Sbh (OpenERP)" Date: Mon, 3 Jan 2011 18:31:08 +0530 Subject: [PATCH 15/18] [IMP] project_long_term: rename other info tab to Schedule and display info bzr revid: sbh@tinyerp.com-20110103130108-og8g7v3e0i3fe487 --- addons/project_long_term/project_long_term_view.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/project_long_term/project_long_term_view.xml b/addons/project_long_term/project_long_term_view.xml index 7eaed6e120c..61e0a7dd7f9 100644 --- a/addons/project_long_term/project_long_term_view.xml +++ b/addons/project_long_term/project_long_term_view.xml @@ -190,14 +190,14 @@