From ae7fcfb5646051c33ef4876c5c6784169604c5dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Tue, 26 Nov 2013 18:17:52 +0100 Subject: [PATCH 01/30] [IMP] [FIX] mail: mail_thread : - avoid having to browse the record in message_subscribe: refactored message_subscribe to work on ids without browsing, try to lessen the number of queries to do - update _set_followers, method of the function field message_follower_ids, to use message_subscribe and message_unsibscribe - in create: add author as follower in creation values, not after create, allowing create access rules based on followers - updated message_unsubscribe to be the lower method, not calling _set_followers anymore bzr revid: tde@openerp.com-20131126171752-1irizm7mhv2y1wrn --- addons/mail/mail_thread.py | 77 +++++++++++++++++++++----------------- 1 file changed, 43 insertions(+), 34 deletions(-) diff --git a/addons/mail/mail_thread.py b/addons/mail/mail_thread.py index eac8df8ebbf..a8755cd1abd 100644 --- a/addons/mail/mail_thread.py +++ b/addons/mail/mail_thread.py @@ -188,13 +188,10 @@ class mail_thread(osv.AbstractModel): new = set(command[2]) # remove partners that are no longer followers - fol_ids = fol_obj.search(cr, SUPERUSER_ID, - [('res_model', '=', self._name), ('res_id', '=', id), ('partner_id', 'not in', list(new))]) - fol_obj.unlink(cr, SUPERUSER_ID, fol_ids) + self.message_unsubscribe(cr, uid, [id], list(old-new)) # add new followers - for partner_id in new - old: - fol_obj.create(cr, SUPERUSER_ID, {'res_model': self._name, 'res_id': id, 'partner_id': partner_id}) + self.message_subscribe(cr, uid, [id], list(new-old)) def _search_followers(self, cr, uid, obj, name, args, context): fol_obj = self.pool.get('mail.followers') @@ -240,15 +237,22 @@ class mail_thread(osv.AbstractModel): """ if context is None: context = {} + + # subscribe uid unless asked not to + if not context.get('mail_create_nosubscribe'): + pid = self.pool['res.users'].browse(cr, SUPERUSER_ID, uid).partner_id.id + message_follower_ids = values.get('message_follower_ids') + if message_follower_ids is False or message_follower_ids is None: # web client seems to send False as message_follower_ids value + message_follower_ids = [] + message_follower_ids.append([4, pid]) + values['message_follower_ids'] = message_follower_ids + thread_id = super(mail_thread, self).create(cr, uid, values, context=context) # automatic logging unless asked not to (mainly for various testing purpose) if not context.get('mail_create_nolog'): self.message_post(cr, uid, thread_id, body=_('%s created') % (self._description), context=context) - # subscribe uid unless asked not to - if not context.get('mail_create_nosubscribe'): - self.message_subscribe_users(cr, uid, [thread_id], [uid], context=context) # auto_subscribe: take values and defaults into account create_values = dict(values) for key, val in context.iteritems(): @@ -1189,35 +1193,33 @@ class mail_thread(osv.AbstractModel): else: self.check_access_rights(cr, uid, 'write') - for record in self.browse(cr, SUPERUSER_ID, ids, context=context): - existing_pids = set([f.id for f in record.message_follower_ids - if f.id in partner_ids]) + existing_pids_dict = {} + fol_ids = mail_followers_obj.search(cr, SUPERUSER_ID, [('res_model', '=', self._name), ('res_id', 'in', ids)]) + for fol in mail_followers_obj.browse(cr, SUPERUSER_ID, fol_ids, context=context): + existing_pids_dict.setdefault(fol.res_id, set()).add(fol.partner_id.id) + + # subtype_ids specified: update already subscribed partners + if subtype_ids and fol_ids: + mail_followers_obj.write(cr, SUPERUSER_ID, fol_ids, {'subtype_ids': [(6, 0, subtype_ids)]}, context=context) + # subtype_ids not specified: do not update already subscribed partner, fetch default subtypes for new partners + if subtype_ids is None: + subtype_ids = subtype_obj.search( + cr, uid, [ + ('default', '=', True), '|', ('res_model', '=', self._name), ('res_model', '=', False)], context=context) + + for id in ids: + existing_pids = existing_pids_dict.get(id, set()) new_pids = set(partner_ids) - existing_pids - # subtype_ids specified: update already subscribed partners - if subtype_ids and existing_pids: - fol_ids = mail_followers_obj.search(cr, SUPERUSER_ID, [ - ('res_model', '=', self._name), - ('res_id', '=', record.id), - ('partner_id', 'in', list(existing_pids)), - ], context=context) - mail_followers_obj.write(cr, SUPERUSER_ID, fol_ids, {'subtype_ids': [(6, 0, subtype_ids)]}, context=context) - # subtype_ids not specified: do not update already subscribed partner, fetch default subtypes for new partners - elif subtype_ids is None: - subtype_ids = subtype_obj.search(cr, uid, [ - ('default', '=', True), - '|', - ('res_model', '=', self._name), - ('res_model', '=', False) - ], context=context) # subscribe new followers for new_pid in new_pids: - mail_followers_obj.create(cr, SUPERUSER_ID, { - 'res_model': self._name, - 'res_id': record.id, - 'partner_id': new_pid, - 'subtype_ids': [(6, 0, subtype_ids)], - }, context=context) + mail_followers_obj.create( + cr, SUPERUSER_ID, { + 'res_model': self._name, + 'res_id': id, + 'partner_id': new_pid, + 'subtype_ids': [(6, 0, subtype_ids)], + }, context=context) return True @@ -1236,7 +1238,14 @@ class mail_thread(osv.AbstractModel): self.check_access_rights(cr, uid, 'read') else: self.check_access_rights(cr, uid, 'write') - return self.write(cr, SUPERUSER_ID, ids, {'message_follower_ids': [(3, pid) for pid in partner_ids]}, context=context) + fol_obj = self.pool['mail.followers'] + fol_ids = fol_obj.search( + cr, SUPERUSER_ID, [ + ('res_model', '=', self._name), + ('res_id', 'in', ids), + ('partner_id', 'in', partner_ids) + ], context=context) + return fol_obj.unlink(cr, SUPERUSER_ID, fol_ids, context=context) def _message_get_auto_subscribe_fields(self, cr, uid, updated_fields, auto_follow_fields=['user_id'], context=None): """ Returns the list of relational fields linking to res.users that should From da6fee2ac14ece790bf0610c226dee72bf292acb Mon Sep 17 00:00:00 2001 From: Antony Lesuisse Date: Mon, 2 Dec 2013 16:42:06 +0100 Subject: [PATCH 02/30] [FIX] session expired bzr revid: al@openerp.com-20131202154206-6efsbeeg0mq7s67z --- addons/web/static/src/js/chrome.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/web/static/src/js/chrome.js b/addons/web/static/src/js/chrome.js index 3727b011943..7587cf006e3 100644 --- a/addons/web/static/src/js/chrome.js +++ b/addons/web/static/src/js/chrome.js @@ -256,7 +256,7 @@ instance.web.CrashManager = instance.web.Class.extend({ new (handler)(this, error).display(); return; } - if (error.data.name === "openerp.addons.web.session SessionExpiredException") { + if (error.data.name === "openerp.addons.web.http.SessionExpiredException") { this.show_warning({type: "Session Expired", data: { message: _t("Your OpenERP session expired. Please refresh the current web page.") }}); return; } From 767aaeb8cc7845d868cb2e5d9dda20e7454a8c41 Mon Sep 17 00:00:00 2001 From: Cecile Tonglet Date: Tue, 3 Dec 2013 10:24:33 +0100 Subject: [PATCH 03/30] [FIX] Wrong error message when data cannot be loaded at module loading bzr revid: cto@openerp.com-20131203092433-uu1brp5csqvvd8yh --- openerp/tools/convert.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openerp/tools/convert.py b/openerp/tools/convert.py index a64aabf2df6..4598e2e384a 100644 --- a/openerp/tools/convert.py +++ b/openerp/tools/convert.py @@ -927,7 +927,7 @@ def convert_csv_import(cr, module, fname, csvcontent, idref=None, mode='init', result, rows, warning_msg, dummy = pool.get(model).import_data(cr, uid, fields, datas,mode, module, noupdate, filename=fname_partial) if result < 0: # Report failed import and abort module install - raise Exception(_('Module loading failed: file %s/%s could not be processed:\n %s') % (module, fname, warning_msg)) + raise Exception(_('Module loading %s failed: file %s could not be processed:\n %s') % (module, fname, warning_msg)) if config.get('import_partial'): data = pickle.load(file(config.get('import_partial'))) data[fname_partial] = 0 From 64c0ff21d5b6810d42b2fcabf6553147ff0aa55f Mon Sep 17 00:00:00 2001 From: Denis Ledoux Date: Tue, 3 Dec 2013 10:55:44 +0100 Subject: [PATCH 04/30] [FIX]sale_stock: do not raise if not able to find any warehouse (for the get default warehouse), it can prevent the user of doing anything (if he does an upgrade of sale_stock module while having no warehouse set, the user will not be able to sign in in his instance again). bzr revid: dle@openerp.com-20131203095544-i5vmow007dgjbiza --- addons/sale_stock/sale_stock.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/sale_stock/sale_stock.py b/addons/sale_stock/sale_stock.py index 341aaef8ca8..26d9d80f13e 100644 --- a/addons/sale_stock/sale_stock.py +++ b/addons/sale_stock/sale_stock.py @@ -70,7 +70,7 @@ class sale_order(osv.osv): company_id = self.pool.get('res.users')._get_company(cr, uid, context=context) warehouse_ids = self.pool.get('stock.warehouse').search(cr, uid, [('company_id', '=', company_id)], context=context) if not warehouse_ids: - raise osv.except_osv(_('Error!'), _('There is no warehouse defined for current company.')) + return False return warehouse_ids[0] # This is False From 7e8a5f7697dfc63360ecce55ac71f493a5bcd3ac Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Tue, 3 Dec 2013 14:29:37 +0100 Subject: [PATCH 05/30] [FIX] web: openerpframework.js: do not use _.str openerpframework.js can be used as standalone library (im_livechat uses it this way) and do not depend on underscore.string.js bzr revid: chs@openerp.com-20131203132937-ss7hx1gligzai5ch --- addons/web/static/src/js/openerpframework.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/web/static/src/js/openerpframework.js b/addons/web/static/src/js/openerpframework.js index 99d11b58ca9..ca046543861 100644 --- a/addons/web/static/src/js/openerpframework.js +++ b/addons/web/static/src/js/openerpframework.js @@ -1128,7 +1128,7 @@ openerp.Model = openerp.Class.extend({ kwargs = args; args = []; } - var call_kw = _.str.sprintf('/web/dataset/call_kw/%s/%s', this.name, method); + var call_kw = '/web/dataset/call_kw/' + this.name + '/' + method; return this.session().rpc(call_kw, { model: this.name, method: method, From cf052214bdc63abbaf53301610bb54d20c97fea4 Mon Sep 17 00:00:00 2001 From: Denis Ledoux Date: Tue, 3 Dec 2013 15:25:54 +0100 Subject: [PATCH 06/30] [FIX]portal_sale: add the lang to the email templates (sale.order and account.invoice), for the email to be translated in the customer language (as this is the case for regular email templates from sale and account modules- bzr revid: dle@openerp.com-20131203142554-5yrp5o5wl382oyo3 --- addons/portal_sale/portal_sale_data.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/portal_sale/portal_sale_data.xml b/addons/portal_sale/portal_sale_data.xml index df57c724c32..f313e774fe0 100644 --- a/addons/portal_sale/portal_sale_data.xml +++ b/addons/portal_sale/portal_sale_data.xml @@ -13,6 +13,7 @@ ${(object.name or '').replace('/','_')}_${object.state == 'draft' and 'draft' or ''} + ${object.partner_id.lang} @@ -102,6 +103,7 @@ Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' and 'draft' or ''} + ${object.partner_id.lang} From 379dc8bf98eeb3091dad912f685769b83a1cccc1 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Wed, 4 Dec 2013 05:56:42 +0000 Subject: [PATCH 07/30] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20131201054445-5fy8zd7lvnn9mjp2 bzr revid: launchpad_translations_on_behalf_of_openerp-20131202055138-hq05otjnuktjpa48 bzr revid: launchpad_translations_on_behalf_of_openerp-20131204055601-tbzqqhperzffjbjt bzr revid: launchpad_translations_on_behalf_of_openerp-20131204055642-0rwynvhgvs0r14b3 --- addons/account/i18n/ro.po | 12 ++-- addons/base_calendar/i18n/fi.po | 16 ++--- addons/crm/i18n/fi.po | 42 ++++++++--- addons/crm_claim/i18n/fi.po | 21 ++++-- addons/crm_helpdesk/i18n/fi.po | 18 ++--- addons/hr/i18n/fi.po | 18 ++--- addons/idea/i18n/fi.po | 26 +++---- addons/lunch/i18n/fi.po | 16 ++--- addons/product/i18n/fi.po | 56 +++++++-------- addons/product_margin/i18n/fi.po | 10 +-- addons/project_issue/i18n/fi.po | 8 +-- addons/purchase/i18n/fi.po | 22 +++--- addons/resource/i18n/fi.po | 16 ++--- addons/sale/i18n/de.po | 13 ++-- addons/sale/i18n/lv.po | 14 ++-- addons/sale_stock/i18n/nl.po | 10 +-- addons/stock/i18n/fi.po | 28 ++++---- openerp/addons/base/i18n/fi.po | 65 +++++++++++------ openerp/addons/base/i18n/ro.po | 112 +++++++++++++++--------------- openerp/addons/base/i18n/zh_TW.po | 75 +++++++++++--------- 20 files changed, 332 insertions(+), 266 deletions(-) diff --git a/addons/account/i18n/ro.po b/addons/account/i18n/ro.po index a55a33a719e..89853a5d560 100644 --- a/addons/account/i18n/ro.po +++ b/addons/account/i18n/ro.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-14 22:29+0000\n" -"PO-Revision-Date: 2013-11-30 18:02+0000\n" -"Last-Translator: geopop65 \n" +"PO-Revision-Date: 2013-12-03 15:00+0000\n" +"Last-Translator: Dorin \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-12-01 05:45+0000\n" -"X-Generator: Launchpad (build 16856)\n" +"X-Launchpad-Export-Date: 2013-12-04 05:56+0000\n" +"X-Generator: Launchpad (build 16861)\n" #. module: account #: model:email.template,body_html:account.email_template_edi_invoice @@ -944,8 +944,8 @@ msgid "" "Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' " "and 'draft' or ''}" msgstr "" -"Factura_${(obiect.numar sau '').inlocuieste('/','_')}_${obiect.stare == " -"'ciorna' si 'ciorna' sau ''}" +"Invoice_${(object.number or '').replace('/','_')}_${object.state == 'draft' " +"and 'draft' or ''}" #. module: account #: view:account.period:0 diff --git a/addons/base_calendar/i18n/fi.po b/addons/base_calendar/i18n/fi.po index 9db6d451b9c..f1d652bce6e 100644 --- a/addons/base_calendar/i18n/fi.po +++ b/addons/base_calendar/i18n/fi.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-17 22:07+0000\n" +"PO-Revision-Date: 2013-12-03 14:19+0000\n" "Last-Translator: Harri Luuppala \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-04 05:56+0000\n" +"X-Generator: Launchpad (build 16861)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -134,7 +134,7 @@ msgstr "Maaliskuu" #. module: base_calendar #: help:calendar.attendee,cutype:0 msgid "Specify the type of Invitation" -msgstr "Määrittele kutsun tyyppi" +msgstr "Määrittele kutsutyyppi" #. module: base_calendar #: view:crm.meeting:0 @@ -457,7 +457,7 @@ msgstr "Su" #. module: base_calendar #: field:calendar.attendee,cutype:0 msgid "Invite Type" -msgstr "Kutsun tyyppi" +msgstr "Kutsutyypit" #. module: base_calendar #: view:res.alarm:0 @@ -616,7 +616,7 @@ msgstr "Vuosi/vuodet" #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting_type #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_type msgid "Meeting Types" -msgstr "Tapaamisen tyypit" +msgstr "Tapaamistyypit" #. module: base_calendar #: field:calendar.event,create_date:0 @@ -1354,7 +1354,7 @@ msgstr "ir.attachment" #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" -msgstr "Tapaamisen tyyppi" +msgstr "Tapaamistyyppi" #. module: base_calendar #: selection:calendar.attendee,state:0 @@ -1381,7 +1381,7 @@ msgid "" " " msgstr "" "

\n" -" Klikkaa asettaaksesi hälytyksen tyypin.\n" +" Klikkaa asettaaksesi hälytystyypin.\n" "

\n" " Voit määritellä kalenterille muokatun hälytystyypin, joka \n" " voidaan asettaa kalenteritapahtumiin tai tapaamisiin.\n" diff --git a/addons/crm/i18n/fi.po b/addons/crm/i18n/fi.po index 95435a574ab..1c6d40d3920 100644 --- a/addons/crm/i18n/fi.po +++ b/addons/crm/i18n/fi.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-12-02 22:04+0000\n" +"PO-Revision-Date: 2013-12-03 06:48+0000\n" "Last-Translator: Harri Luuppala \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-12-03 06:15+0000\n" -"X-Generator: Launchpad (build 16856)\n" +"X-Launchpad-Export-Date: 2013-12-04 05:56+0000\n" +"X-Generator: Launchpad (build 16861)\n" #. module: crm #: view:crm.lead.report:0 @@ -317,8 +317,8 @@ msgid "" "The partner category that will be added to partners that match the " "segmentation criterions after computation." msgstr "" -"Kumppanikategoria joka lisätään kumppaneille, jotka täsmäävät " -"jaotteluominaisuuksiin laskennan jälkeen." +"Kumppaniryhmä joka lisätään kumppaneille, jotka täsmäävät " +"segmentointikriteereihin laskennan jälkeen." #. module: crm #: model:ir.actions.act_window,help:crm.crm_segmentation_tree-act @@ -333,6 +333,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa luodaksesi uusi asiakasegmentointi.\n" +"

\n" +" Luo erityiset asiakasryhmät, joihin voit kiinnittää " +"asiakaskontaktisi.\n" +" Tämä mahdollistaa paremman asiakkaiden hallinnan ja " +"kommunikaation.\n" +" Segmentointityökalu kykenee yhdistämään asiakasryhmät " +"kontakteihin.\n" +" asettamillasi kriteereillä.\n" +"

\n" +" " #. module: crm #: field:crm.opportunity2phonecall,contact_name:0 @@ -445,7 +457,7 @@ msgstr "" #: field:crm.phonecall.report,categ_id:0 #: field:crm.phonecall2phonecall,categ_id:0 msgid "Category" -msgstr "Kategoria" +msgstr "Ryhmä" #. module: crm #: view:crm.lead.report:0 @@ -583,7 +595,7 @@ msgstr "Yhdistä" #. module: crm #: view:crm.case.categ:0 msgid "Case Category" -msgstr "Asiakategoria" +msgstr "Asiaryhmä" #. module: crm #: field:crm.lead,partner_address_name:0 @@ -649,6 +661,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa luodaksesi uuden ryhmän.\n" +"

\n" +" Luo erityiset puheluryhmät, jotta voit paremmin määritellä " +"erilaiset \n" +" seurattavat soittotyypit.\n" +"

\n" +" " #. module: crm #: help:crm.case.section,reply_to:0 @@ -878,7 +898,7 @@ msgstr "Mahdollisuudet" #. module: crm #: field:crm.segmentation,categ_id:0 msgid "Partner Category" -msgstr "Kumppanin katerogia" +msgstr "Kumppaniryhmä" #. module: crm #: field:crm.lead,probability:0 @@ -2557,6 +2577,10 @@ msgid "" "If checked, remove the category from partners that doesn't match " "segmentation criterions" msgstr "" +"Merkitse onko ryhmä rajattu vain segmentointikriteerit täyttäville " +"kumppaneille. \n" +"Jos on merkitty aktiiviseksi, niin poista ryhmä kumppaneilta, jotka eivät " +"täytä mainittua segmentointikriteereitä." #. module: crm #: model:process.transition,note:crm.process_transition_leadopportunity0 @@ -2778,7 +2802,7 @@ msgstr "Kokous" #. module: crm #: model:ir.model,name:crm.model_crm_case_categ msgid "Category of Case" -msgstr "Tapauksen kategoria" +msgstr "Asiaryhmä" #. module: crm #: view:board.board:0 diff --git a/addons/crm_claim/i18n/fi.po b/addons/crm_claim/i18n/fi.po index bffac4e7b26..0e02c78c516 100644 --- a/addons/crm_claim/i18n/fi.po +++ b/addons/crm_claim/i18n/fi.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-18 05:09+0000\n" +"PO-Revision-Date: 2013-12-03 06:55+0000\n" "Last-Translator: Harri Luuppala \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:05+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-04 05:56+0000\n" +"X-Generator: Launchpad (build 16861)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 @@ -95,6 +95,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa luodaksesi reklamaatioryhmän.\n" +"

\n" +" Luo reklamaatioryhmä hallitaksesi ja luokitellaksesi " +"paremmin reklamaatioitasi.and classify your\n" +" claims. Esimerkkejä reklamaatioryhmistä voi olla: Estävät " +"toimenpiteet, Korjaavat toimenpiteet.\n" +"

\n" +" " #. module: crm_claim #: view:crm.claim.report:0 @@ -331,7 +340,7 @@ msgstr "Reklamaation vaiheet" #. module: crm_claim #: model:ir.ui.menu,name:crm_claim.menu_crm_case_claim-act msgid "Categories" -msgstr "Kategoriat" +msgstr "Ryhmät" #. module: crm_claim #: view:crm.claim:0 @@ -450,7 +459,7 @@ msgstr "" #: view:crm.claim.report:0 #: field:crm.claim.report,categ_id:0 msgid "Category" -msgstr "Kategoria" +msgstr "Ryhmä" #. module: crm_claim #: model:crm.case.categ,name:crm_claim.categ_claim2 @@ -654,7 +663,7 @@ msgstr "Yhteenveto" #. module: crm_claim #: model:ir.actions.act_window,name:crm_claim.crm_claim_categ_action msgid "Claim Categories" -msgstr "Reklamaatiokategoriat" +msgstr "Reklamaatioryhmät" #. module: crm_claim #: field:crm.claim.stage,case_default:0 diff --git a/addons/crm_helpdesk/i18n/fi.po b/addons/crm_helpdesk/i18n/fi.po index 381cbfc0e35..55db9067297 100644 --- a/addons/crm_helpdesk/i18n/fi.po +++ b/addons/crm_helpdesk/i18n/fi.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-12-03 06:54+0000\n" +"Last-Translator: Harri Luuppala \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:06+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-04 05:56+0000\n" +"X-Generator: Launchpad (build 16861)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 @@ -244,12 +244,12 @@ msgstr "Heinäkuu" #. module: crm_helpdesk #: model:ir.actions.act_window,name:crm_helpdesk.crm_helpdesk_categ_action msgid "Helpdesk Categories" -msgstr "Helpdesk kategoriat" +msgstr "Helpdesk-ryhmät" #. module: crm_helpdesk #: model:ir.ui.menu,name:crm_helpdesk.menu_crm_case_helpdesk-act msgid "Categories" -msgstr "Kategoriat" +msgstr "Ryhmät" #. module: crm_helpdesk #: view:crm.helpdesk:0 @@ -339,7 +339,7 @@ msgstr "Viittaus 2" #: field:crm.helpdesk,categ_id:0 #: field:crm.helpdesk.report,categ_id:0 msgid "Category" -msgstr "Kategoria" +msgstr "Ryhmä" #. module: crm_helpdesk #: view:crm.helpdesk:0 @@ -671,8 +671,8 @@ msgid "" "Create and manage helpdesk categories to better manage and classify your " "support requests." msgstr "" -"Luo ja hallitse Helpdesk kategorioita hallitaksesi ja luokitellaksesi " -"paremmin tukipyyntöjä." +"Luo ja hallitse Helpdesk -ryhmiä hallitaksesi ja luokitellaksesi paremmin " +"tukipyyntöjä." #. module: crm_helpdesk #: view:crm.helpdesk:0 diff --git a/addons/hr/i18n/fi.po b/addons/hr/i18n/fi.po index 54b7ea9dd3d..64bd99af394 100644 --- a/addons/hr/i18n/fi.po +++ b/addons/hr/i18n/fi.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-23 07:20+0000\n" +"PO-Revision-Date: 2013-12-03 06:56+0000\n" "Last-Translator: Harri Luuppala \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-24 05:47+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-04 05:56+0000\n" +"X-Generator: Launchpad (build 16861)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 @@ -150,7 +150,7 @@ msgstr "Muu informaatio..." #. module: hr #: constraint:hr.employee.category:0 msgid "Error! You cannot create recursive Categories." -msgstr "Virhe, et voi luoda rekursiivista kategoriaa." +msgstr "Virhe, et voi luoda rekursiivisia ryhmiä." #. module: hr #: help:hr.config.settings,module_hr_recruitment:0 @@ -265,7 +265,7 @@ msgstr "Työpuhelin" #. module: hr #: field:hr.employee.category,child_ids:0 msgid "Child Categories" -msgstr "Alikategoriat" +msgstr "Aliryhmät" #. module: hr #: field:hr.job,description:0 @@ -388,7 +388,7 @@ msgstr "Eronnut" #. module: hr #: field:hr.employee.category,parent_id:0 msgid "Parent Category" -msgstr "Yläkategoria" +msgstr "Ylempi ryhmä" #. module: hr #: view:hr.department:0 @@ -468,7 +468,7 @@ msgstr "Pienikokoinen kuva" #: view:hr.employee.category:0 #: model:ir.model,name:hr.model_hr_employee_category msgid "Employee Category" -msgstr "Työntekijäkategoria" +msgstr "Työntekijäryhmä" #. module: hr #: field:hr.employee,category_ids:0 @@ -493,7 +493,7 @@ msgstr "tai" #. module: hr #: field:hr.employee.category,name:0 msgid "Category" -msgstr "Kategoria" +msgstr "Ryhmä" #. module: hr #: view:hr.job:0 @@ -785,7 +785,7 @@ msgstr "" #. module: hr #: view:hr.employee.category:0 msgid "Employees Categories" -msgstr "Työntekijäkategoriat" +msgstr "Työntekijäryhmät" #. module: hr #: field:hr.employee,address_home_id:0 diff --git a/addons/idea/i18n/fi.po b/addons/idea/i18n/fi.po index 94140c2a465..253663f4432 100644 --- a/addons/idea/i18n/fi.po +++ b/addons/idea/i18n/fi.po @@ -8,20 +8,20 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-12-03 06:58+0000\n" +"Last-Translator: Harri Luuppala \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:14+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-04 05:56+0000\n" +"X-Generator: Launchpad (build 16861)\n" #. module: idea #: view:idea.category:0 #: view:idea.idea:0 msgid "Category" -msgstr "Kategoria" +msgstr "Ryhmä" #. module: idea #: view:idea.idea:0 @@ -36,17 +36,17 @@ msgstr "Tilojen mukaan" #. module: idea #: sql_constraint:idea.category:0 msgid "The name of the category must be unique" -msgstr "Kategorian nimen tulee olla yksilöllinen" +msgstr "Ryhmän nimen tulee olla yksilöllinen" #. module: idea #: view:idea.idea:0 msgid "By Idea Category" -msgstr "Ideoiden kategorioiden mukaan" +msgstr "Idearyhmien mukaan" #. module: idea #: model:ir.model,name:idea.model_idea_category msgid "Idea Category" -msgstr "Ideakategoria" +msgstr "Idearyhmä" #. module: idea #: view:idea.idea:0 @@ -61,7 +61,7 @@ msgstr "Ryhmittele" #. module: idea #: field:idea.category,name:0 msgid "Category Name" -msgstr "" +msgstr "Ryhmän nimi" #. module: idea #: view:idea.idea:0 @@ -125,7 +125,7 @@ msgstr "Hyväksytty" #: model:ir.actions.act_window,name:idea.action_idea_category #: model:ir.ui.menu,name:idea.menu_idea_category msgid "Categories" -msgstr "Kategoriat" +msgstr "Ryhmät" #. module: idea #: view:idea.idea:0 @@ -153,7 +153,7 @@ msgstr "Ideayhteenveto" #. module: idea #: view:idea.category:0 msgid "Category of ideas" -msgstr "Ideakategoriat" +msgstr "Idearyhmät" #. module: idea #: field:idea.idea,message_summary:0 @@ -221,12 +221,12 @@ msgstr "" #. module: idea #: view:idea.category:0 msgid "Category of Ideas" -msgstr "" +msgstr "Idearyhmät" #. module: idea #: view:idea.category:0 msgid "Ideas Categories" -msgstr "Ideakategoriat" +msgstr "Idearyhmät" #. module: idea #: help:idea.idea,description:0 diff --git a/addons/lunch/i18n/fi.po b/addons/lunch/i18n/fi.po index 33c032fadc2..90e94e2f6e3 100644 --- a/addons/lunch/i18n/fi.po +++ b/addons/lunch/i18n/fi.po @@ -8,20 +8,20 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-12-03 06:59+0000\n" +"Last-Translator: Harri Luuppala \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:18+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-04 05:56+0000\n" +"X-Generator: Launchpad (build 16861)\n" #. module: lunch #: field:lunch.product,category_id:0 #: field:lunch.product.category,name:0 msgid "Category" -msgstr "Kategoria" +msgstr "Ryhmä" #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_order_by_supplier_form @@ -421,7 +421,7 @@ msgstr "" #: model:ir.actions.act_window,name:lunch.action_lunch_product_categories #: model:ir.ui.menu,name:lunch.menu_lunch_product_categories msgid "Product Categories" -msgstr "Tuotekategoriat" +msgstr "Tuoteryhmät" #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_control_suppliers @@ -600,7 +600,7 @@ msgstr "" #. module: lunch #: view:lunch.product.category:0 msgid "Product Category: " -msgstr "" +msgstr "Tuoteryhmä: " #. module: lunch #: field:lunch.alert,active_to:0 @@ -865,7 +865,7 @@ msgstr "" #. module: lunch #: model:ir.model,name:lunch.model_lunch_product_category msgid "lunch product category" -msgstr "" +msgstr "lounastuotteiden ryhmä" #. module: lunch #: field:lunch.alert,saturday:0 diff --git a/addons/product/i18n/fi.po b/addons/product/i18n/fi.po index 263ce0c8320..79ce5e164c4 100644 --- a/addons/product/i18n/fi.po +++ b/addons/product/i18n/fi.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-12-01 21:43+0000\n" +"PO-Revision-Date: 2013-12-03 07:06+0000\n" "Last-Translator: Harri Luuppala \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-12-02 05:52+0000\n" -"X-Generator: Launchpad (build 16856)\n" +"X-Launchpad-Export-Date: 2013-12-04 05:56+0000\n" +"X-Generator: Launchpad (build 16861)\n" #. module: product #: field:product.packaging,rows:0 @@ -132,7 +132,7 @@ msgid "" "both belong to different Category!." msgstr "" "Konversio tuotteen yksiköstä %s oletusyksikköön %s ei ole mahdollista koska " -"ne kuuluvat eri kategorioihin." +"ne kuuluvat eri tuoteryhmiin (kategorioihin)." #. module: product #: selection:product.template,cost_method:0 @@ -210,7 +210,7 @@ msgstr "" #. module: product #: field:product.category,parent_id:0 msgid "Parent Category" -msgstr "Yläkategoria" +msgstr "Ylempi ryhmä" #. module: product #: model:product.template,description:product.product_product_33_product_template @@ -284,7 +284,7 @@ msgstr "" #: field:product.template,categ_id:0 #: field:product.uom,category_id:0 msgid "Category" -msgstr "Kategoria" +msgstr "Ryhmä" #. module: product #: model:product.template,name:product.product_product_25_product_template @@ -326,7 +326,7 @@ msgstr "Tila" #. module: product #: help:product.template,categ_id:0 msgid "Select category for the current product" -msgstr "Valitse nykyisen tuotteen kategoria" +msgstr "Valitse nykyiselle tuotteelle ryhmä (kategoria)" #. module: product #: field:product.product,outgoing_qty:0 @@ -541,7 +541,7 @@ msgstr "" msgid "" "Error: The default Unit of Measure and the purchase Unit of Measure must be " "in the same category." -msgstr "Virhe: oletusyksikkö ja ostoksikkö pitää kuulua samaan kategoriaan." +msgstr "Virhe: oletusyksikkö ja ostoksikkö pitää kuulua samaan ryhmään." #. module: product #: model:ir.model,name:product.model_product_uom_categ @@ -596,7 +596,7 @@ msgstr "Pakkauksen leveys" #: code:addons/product/product.py:361 #, python-format msgid "Unit of Measure categories Mismatch!" -msgstr "Yksikkökategoriat eivät ole keskenään yhteensopivia!" +msgstr "Yksikköryhmät eivät ole keskenään yhteensopivia!" #. module: product #: model:product.template,name:product.product_product_36_product_template @@ -799,12 +799,12 @@ msgstr "Hinnastot hallitaan" #. module: product #: field:product.category,child_id:0 msgid "Child Categories" -msgstr "Alakategoriat" +msgstr "Aliryhmät" #. module: product #: field:product.pricelist.version,date_end:0 msgid "End Date" -msgstr "Lopetuspäivämäärä" +msgstr "Loppupäivä" #. module: product #: model:product.uom,name:product.product_uom_litre @@ -921,7 +921,7 @@ msgstr "" #: model:ir.ui.menu,name:product.menu_product_category_action_form #: view:product.category:0 msgid "Product Categories" -msgstr "Tuotteiden kategoriat" +msgstr "Tuoteryhmät" #. module: product #: view:product.template:0 @@ -1192,7 +1192,7 @@ msgstr "Kulut" #: help:product.category,sequence:0 msgid "" "Gives the sequence order when displaying a list of product categories." -msgstr "Antaa järjestyksen näytettäessä tuotekategorialistaa." +msgstr "Antaa järjestyksen näytettäessä tuoteryhmäluettelon." #. module: product #: model:product.uom,name:product.product_uom_dozen @@ -1242,7 +1242,7 @@ msgstr "Lukemattomia viestejä" #: 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 "Unit of Measure Categories" -msgstr "Mittayksiköiden kategoriat" +msgstr "Yksiköiden ryhmät" #. module: product #: help:product.product,seller_id:0 @@ -1533,8 +1533,8 @@ msgid "" "Default Unit of Measure used for purchase orders. It must be in the same " "category than the default unit of measure." msgstr "" -"Oletusmittayksikkö jota käytetään ostotilauksilla. Täytyy olla samaa " -"kategoriaa kuin oletusmittayksikkö." +"Oletusyksikkö jota käytetään ostotilauksilla. Täytyy olla samassa ryhmässä " +"(kategoriassa) kuin oletusyksikkö." #. module: product #: view:product.pricelist:0 @@ -1759,7 +1759,7 @@ msgstr "Variaatiot" #: model:ir.actions.act_window,name:product.product_category_action #: model:ir.ui.menu,name:product.menu_products_category msgid "Products by Category" -msgstr "Tuotteet kategorioittain" +msgstr "Tuotteet ryhmittäin (kategorioittain)" #. module: product #: model:product.template,name:product.product_product_16_product_template @@ -1847,7 +1847,7 @@ msgstr "" #: code:addons/product/product.py:208 #, python-format msgid "Cannot change the category of existing Unit of Measure '%s'." -msgstr "Olemassa olevan yksikön \"%s\" kategoriaa ei voi muuttaa." +msgstr "Olemassa olevan yksikön \"%s\" ryhmää (kategoriaa) ei voi muuttaa." #. module: product #: help:product.packaging,height:0 @@ -2161,8 +2161,8 @@ msgid "" "A category of the view type is a virtual category that can be used as the " "parent of another category to create a hierarchical structure." msgstr "" -"Näytettävän tyypin kategoria on virtuaalinen eli sitä voi käyttää mallina " -"toiselle kategorialle luotaessa hierarkkista rakennetta." +"Näytettävän tyypin ryhmä (kategoria) on virtuaalinen eli sitä voi käyttää " +"mallina toiselle ryhmälle (kategorialle) luotaessa hierarkkista rakennetta." #. module: product #: selection:product.ul,type:0 @@ -2193,7 +2193,7 @@ msgstr "kuva" #. module: product #: view:product.uom.categ:0 msgid "Units of Measure categories" -msgstr "Yksiköiden kategoriat" +msgstr "Yksiköiden ryhmät" #. module: product #: model:product.template,description_sale:product.product_product_4_product_template @@ -2391,7 +2391,7 @@ msgstr "Viiveet" #. module: product #: field:product.category,type:0 msgid "Category Type" -msgstr "Kategorian tyyppi" +msgstr "Ryhmän tyyppi" #. module: product #: model:process.node,note:product.process_node_product0 @@ -2439,7 +2439,7 @@ msgstr "Windows 8.2" #. module: product #: selection:product.uom,uom_type:0 msgid "Reference Unit of Measure for this category" -msgstr "Referenssiyksikkö tälle kategorialle" +msgstr "Referenssiyksikkö tälle ryhmälle" #. module: product #: field:product.supplierinfo,product_uom:0 @@ -2507,7 +2507,7 @@ msgstr "Arvotuskäytäntö" #: model:ir.model,name:product.model_product_category #: field:product.pricelist.item,categ_id:0 msgid "Product Category" -msgstr "Tuotteen kategoria" +msgstr "Tuoteryhmä" #. module: product #: model:product.template,description:product.product_product_19_product_template @@ -2517,7 +2517,7 @@ msgstr "Tarvittaessa kiintolevyn kapasiteetti asiakasvaatimusten mukaan." #. module: product #: selection:product.template,state:0 msgid "End of Lifecycle" -msgstr "Elinkaaren lopussa" +msgstr "Elinkaaren loppu" #. module: product #: model:product.template,name:product.product_product_15_product_template @@ -2563,13 +2563,13 @@ msgid "" "Conversion between Units of Measure can only occur if they belong to the " "same category. The conversion will be made based on the ratios." msgstr "" -"Yksiköiden välinen muunnos onnistuu vain saman kategorian sisällä. Konversio " -"tehdään käyttäen kertoimena suhdetta." +"Yksiköiden välinen muunnos onnistuu vain saman ryhmän (kategorian) sisällä. " +"Konversio tehdään käyttäen kertoimena suhdetta." #. module: product #: constraint:product.category:0 msgid "Error ! You cannot create recursive categories." -msgstr "Virhe! Et voi luoda rekursiivisia kategoroita." +msgstr "Virhe! Et voi luoda rekursiivisia ryhmiä." #. module: product #: help:product.product,image_medium:0 diff --git a/addons/product_margin/i18n/fi.po b/addons/product_margin/i18n/fi.po index 2e8eb3cd9f1..0a431e68e9b 100644 --- a/addons/product_margin/i18n/fi.po +++ b/addons/product_margin/i18n/fi.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-12-03 07:07+0000\n" +"Last-Translator: Harri Luuppala \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:28+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-04 05:56+0000\n" +"X-Generator: Launchpad (build 16861)\n" #. module: product_margin #: view:product.product:0 @@ -219,7 +219,7 @@ msgstr "Odotettu myynti - normaalikulut" #. module: product_margin #: view:product.margin:0 msgid "Properties categories" -msgstr "Ominaisuuksien kategoriat" +msgstr "Ominaisuusryhmät" #. module: product_margin #: help:product.product,total_margin_rate:0 diff --git a/addons/project_issue/i18n/fi.po b/addons/project_issue/i18n/fi.po index 998cd077c32..98ad7513c75 100644 --- a/addons/project_issue/i18n/fi.po +++ b/addons/project_issue/i18n/fi.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-17 22:05+0000\n" +"PO-Revision-Date: 2013-12-03 07:08+0000\n" "Last-Translator: Harri Luuppala \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:29+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-04 05:56+0000\n" +"X-Generator: Launchpad (build 16861)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -588,7 +588,7 @@ msgstr "Normaali" #. module: project_issue #: view:project.issue:0 msgid "Category:" -msgstr "" +msgstr "Ryhmä:" #. module: project_issue #: selection:project.issue.report,month:0 diff --git a/addons/purchase/i18n/fi.po b/addons/purchase/i18n/fi.po index a2a370d3cec..d7f14c94ac8 100644 --- a/addons/purchase/i18n/fi.po +++ b/addons/purchase/i18n/fi.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-12-02 21:02+0000\n" +"PO-Revision-Date: 2013-12-03 07:10+0000\n" "Last-Translator: Harri Luuppala \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-12-03 06:16+0000\n" -"X-Generator: Launchpad (build 16856)\n" +"X-Launchpad-Export-Date: 2013-12-04 05:56+0000\n" +"X-Generator: Launchpad (build 16861)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting @@ -30,7 +30,7 @@ msgstr "account.config.settings" #. module: purchase #: view:board.board:0 msgid "Monthly Purchases by Category" -msgstr "Kuukausittaiset ostot kategorioittain" +msgstr "Kuukausiostot ryhmittäin" #. module: purchase #: help:purchase.config.settings,module_warning:0 @@ -260,7 +260,7 @@ msgstr "Veroton summa" #: view:purchase.report:0 #: field:purchase.report,category_id:0 msgid "Category" -msgstr "Kategoria" +msgstr "Ryhmä" #. module: purchase #: model:process.transition,note:purchase.process_transition_purchaseinvoice0 @@ -625,7 +625,7 @@ msgstr "Keräilylistalta" #: model:ir.actions.act_window,name:purchase.action_purchase_order_monthly_categ_graph #: view:purchase.report:0 msgid "Monthly Purchase by Category" -msgstr "Kuukauden ostot kategorioittain" +msgstr "Kuukausiostot ryhmittäin" #. module: purchase #: field:purchase.order.line,price_subtotal:0 @@ -868,7 +868,7 @@ msgstr "Ostoehdotus on luotu" #. module: purchase #: model:ir.ui.menu,name:purchase.menu_product_category_config_purchase msgid "Product Categories" -msgstr "Tuotekategoriat" +msgstr "Tuoteryhmät" #. module: purchase #: help:purchase.order,invoiced:0 @@ -1072,7 +1072,7 @@ msgstr "Kohdevarasto" msgid "" "Selected Unit of Measure does not belong to the same category as the product " "Unit of Measure." -msgstr "Valittu yksikkö ei kuulu samaan kategoriaan tuotteen yksikön kanssa." +msgstr "Valittu yksikkö ei kuulu samaan ryhmään tuotteen yksikön kanssa." #. module: purchase #: view:purchase.order.line_invoice:0 @@ -1137,7 +1137,7 @@ msgstr "Lukemattomat viestit" #. module: purchase #: model:ir.ui.menu,name:purchase.menu_purchase_uom_categ_form_action msgid "Unit of Measure Categories" -msgstr "Yksiköiden kategoriat" +msgstr "Yksiköiden ryhmät" #. module: purchase #: view:purchase.order:0 @@ -1635,7 +1635,7 @@ msgstr "VAT :" #. module: purchase #: model:ir.ui.menu,name:purchase.menu_product_by_category_purchase_form msgid "Products by Category" -msgstr "Tuotteet kategorioittain" +msgstr "Tuotteet ryhmittäin" #. module: purchase #: help:purchase.order.line,state:0 @@ -2114,7 +2114,7 @@ msgstr "" #. module: purchase #: model:ir.ui.menu,name:purchase.menu_partner_categories_in_form msgid "Partner Categories" -msgstr "Kumppanien kategoriat" +msgstr "Kumppanien ryhmät" #. module: purchase #: field:purchase.report,state:0 diff --git a/addons/resource/i18n/fi.po b/addons/resource/i18n/fi.po index 408d9d07264..c0ce18dc3ee 100644 --- a/addons/resource/i18n/fi.po +++ b/addons/resource/i18n/fi.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-12-03 14:27+0000\n" +"Last-Translator: Harri Luuppala \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:32+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-04 05:56+0000\n" +"X-Generator: Launchpad (build 16861)\n" #. module: resource #: help:resource.calendar.leaves,resource_id:0 @@ -119,7 +119,7 @@ msgstr "Hae työaikaa" #. module: resource #: constraint:resource.calendar.leaves:0 msgid "Error! leave start-date must be lower then leave end-date." -msgstr "Virhe! loman alkupäivän tulee olla aikaisempi kuin loman loppupäivä" +msgstr "Virhe! Poissaolon alkupäivä pitää olla ennen kuin loman loppupäivä." #. module: resource #: model:ir.model,name:resource.model_resource_calendar @@ -174,12 +174,12 @@ msgstr "" #. module: resource #: field:resource.calendar,manager:0 msgid "Workgroup Manager" -msgstr "Työryhmän johtaja" +msgstr "Työryhmän esimies" #. module: resource #: field:resource.calendar.leaves,date_to:0 msgid "End Date" -msgstr "Loppupvm" +msgstr "Loppupäivä" #. module: resource #: model:ir.actions.act_window,name:resource.resource_calendar_closing_days @@ -215,7 +215,7 @@ msgstr "Työaika" #. module: resource #: help:resource.calendar.attendance,hour_from:0 msgid "Start and End time of working." -msgstr "" +msgstr "Alku ja loppupäivä työnteolle." #. module: resource #: view:resource.calendar.leaves:0 diff --git a/addons/sale/i18n/de.po b/addons/sale/i18n/de.po index e9d89063a9c..c850f349148 100644 --- a/addons/sale/i18n/de.po +++ b/addons/sale/i18n/de.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-12-02 16:28+0000\n" -"Last-Translator: Ferdinand-chricar \n" +"PO-Revision-Date: 2013-12-03 09:54+0000\n" +"Last-Translator: Rudolf Schnapka \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: 2013-12-03 06:16+0000\n" -"X-Generator: Launchpad (build 16856)\n" +"X-Launchpad-Export-Date: 2013-12-04 05:56+0000\n" +"X-Generator: Launchpad (build 16861)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings @@ -407,9 +407,8 @@ msgid "" msgstr "" "

\n" " Klicken Sie zur Erstellung eines neuen Angebots, welches in " -"der Folge dann einfach in einen Auftrag\n" -" umgewandelt werden kann. \n" -" order.\n" +"der Folge dann \n" +" einfach in einen Auftrag umgewandelt werden kann.\n" "

\n" " OpenERP hilft Ihnen bei der kompletten Auftragsabwicklung:\n" " Vom Angebot zum Auftrag, über die Auslieferung zur " diff --git a/addons/sale/i18n/lv.po b/addons/sale/i18n/lv.po index 77d64805d3b..3b1a6cdd33c 100644 --- a/addons/sale/i18n/lv.po +++ b/addons/sale/i18n/lv.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-12-03 08:24+0000\n" +"Last-Translator: sraps (Alistek) \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: 2013-11-21 06:33+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-04 05:56+0000\n" +"X-Generator: Launchpad (build 16861)\n" #. module: sale #: model:ir.model,name:sale.model_account_config_settings @@ -669,7 +669,7 @@ msgstr "" #. module: sale #: model:ir.actions.act_window,name:sale.action_order_line_tree3 msgid "Uninvoiced and Delivered Lines" -msgstr "" +msgstr "Rindas, kuras ir piegādātas vai par kurām nav piestādīts rēķins" #. module: sale #: report:sale.order:0 @@ -858,7 +858,7 @@ msgstr "Kļūda" #: model:ir.model,name:sale.model_sale_shop #: view:sale.shop:0 msgid "Sales Shop" -msgstr "Tirdzniecības Kanāls" +msgstr "Veikals" #. module: sale #: help:sale.advance.payment.inv,product_id:0 @@ -881,7 +881,7 @@ msgstr "" #: code:addons/sale/sale.py:955 #, python-format msgid "No valid pricelist line found ! :" -msgstr "" +msgstr "Nav atrasta derīga cenrāža rinda! :" #. module: sale #: field:sale.config.settings,module_sale_margin:0 diff --git a/addons/sale_stock/i18n/nl.po b/addons/sale_stock/i18n/nl.po index 1c4bdcf74d5..a49e11bdf74 100644 --- a/addons/sale_stock/i18n/nl.po +++ b/addons/sale_stock/i18n/nl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-06-08 13:59+0000\n" -"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" +"PO-Revision-Date: 2013-12-03 12:10+0000\n" +"Last-Translator: Stefan Rijnhart (Therp) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:34+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-04 05:56+0000\n" +"X-Generator: Launchpad (build 16861)\n" #. module: sale_stock #: help:sale.config.settings,group_invoice_deli_orders:0 @@ -396,7 +396,7 @@ msgstr "" #. module: sale_stock #: field:sale.order.line,property_ids:0 msgid "Properties" -msgstr "Waarden" +msgstr "Eigenschappen" #. module: sale_stock #: help:res.company,security_lead:0 diff --git a/addons/stock/i18n/fi.po b/addons/stock/i18n/fi.po index 063c460b736..fef68542019 100644 --- a/addons/stock/i18n/fi.po +++ b/addons/stock/i18n/fi.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-12-02 06:01+0000\n" +"PO-Revision-Date: 2013-12-03 07:14+0000\n" "Last-Translator: Harri Luuppala \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-12-03 06:16+0000\n" -"X-Generator: Launchpad (build 16856)\n" +"X-Launchpad-Export-Date: 2013-12-04 05:56+0000\n" +"X-Generator: Launchpad (build 16861)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 @@ -727,7 +727,7 @@ msgstr "Tilaus (Lähde)" #. module: stock #: model:ir.ui.menu,name:stock.menu_stock_uom_categ_form_action msgid "Unit of Measure Categories" -msgstr "Mittayksiköiden kategoriat" +msgstr "Yksiköiden ryhmät" #. module: stock #: report:lot.stock.overview:0 @@ -1083,7 +1083,7 @@ msgstr "Määritä tälle tuotteelle sarjanumero." #: code:addons/stock/stock.py:2255 #, python-format msgid "Please define journal on the product category: \"%s\" (id: %d)" -msgstr "Määrittele päiväkirja tälle tuotekategorialle: \"%s\" (id: %d)" +msgstr "Määrittele päiväkirja tälle tuoteryhmälle: \"%s\" (id: %d)" #. module: stock #: view:stock.move:0 @@ -1259,7 +1259,7 @@ msgstr "Tuotannon paikka" #: code:addons/stock/product.py:121 #, python-format msgid "Please define journal on the product category: \"%s\" (id: %d)." -msgstr "Määritä päiväkirja tuotekategorialle: \"%s\" (id: %d)." +msgstr "Määritä päiväkirja tuoteryhmälle: \"%s\" (id: %d)." #. module: stock #: field:report.stock.lines.date,date:0 @@ -1932,7 +1932,7 @@ msgstr "Lähetetään tavarat" #. module: stock #: model:ir.ui.menu,name:stock.menu_product_category_config_stock msgid "Product Categories" -msgstr "Tuotteiden Kategoriat" +msgstr "Tuoteryhmät" #. module: stock #: view:stock.move:0 @@ -2691,8 +2691,8 @@ msgid "" "Please define stock input account for this product or its category: \"%s\" " "(id: %d)" msgstr "" -"Määrittele tälle tuotteelle tai tuoterkategorialle varastoon saapumiselle " -"tilie:: \"%s\" (id: %d)" +"Määrittele varastoon saapumisen tili tälle tuotteelle tai tuoteryhmälle : " +"\"%s\" (id: %d)" #. module: stock #: view:report.stock.move:0 @@ -3209,7 +3209,7 @@ msgstr "" msgid "" "Allows to configure inventory valuations on products and product categories." msgstr "" -"Sallii varastoarvostusten konfiguroinnin tuotteille ja tuotekategorioille." +"Sallii varastoarvostusten konfiguroinnin tuotteille ja tuoteryhmille." #. module: stock #: help:stock.config.settings,module_stock_location:0 @@ -3534,7 +3534,7 @@ msgstr "Kokonaisarvo" #. module: stock #: model:ir.ui.menu,name:stock.menu_product_by_category_stock_form msgid "Products by Category" -msgstr "Tuotteet Kategorioittain" +msgstr "Tuotteet ryhmittäin" #. module: stock #: selection:stock.picking,state:0 @@ -4081,7 +4081,7 @@ msgstr "Yksikkökustannus tälle tuotelinjalle" #: view:report.stock.move:0 #: field:report.stock.move,categ_id:0 msgid "Product Category" -msgstr "Tuotteen kategoria" +msgstr "Tuoteryhmä" #. module: stock #: view:stock.move:0 @@ -4394,7 +4394,7 @@ msgstr "Hyllyt (Y)" msgid "" "Please define inventory valuation account on the product category: \"%s\" " "(id: %d)" -msgstr "Määrittele varastoarvostustili tuotekategorialle: \"%s\" (id: %d)" +msgstr "Määrittele varastoarvostustili tuoteryhmälle: \"%s\" (id: %d)" #. module: stock #: model:ir.model,name:stock.model_stock_production_lot_revision @@ -4405,7 +4405,7 @@ msgstr "Sarjanumerorevisiot" #: code:addons/stock/product.py:96 #, python-format msgid "Specify valuation Account for Product Category: %s." -msgstr "Määritä varastoarvostustili tuotekategorialle: %s." +msgstr "Määritä varastoarvostustili tuoteryhmälle: %s." #. module: stock #: help:stock.config.settings,module_claim_from_delivery:0 diff --git a/openerp/addons/base/i18n/fi.po b/openerp/addons/base/i18n/fi.po index 7f9ecdc8424..2305ce0e2ec 100644 --- a/openerp/addons/base/i18n/fi.po +++ b/openerp/addons/base/i18n/fi.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:35+0000\n" -"PO-Revision-Date: 2013-11-26 18:48+0000\n" +"PO-Revision-Date: 2013-12-03 06:41+0000\n" "Last-Translator: Harri Luuppala \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-27 05:39+0000\n" -"X-Generator: Launchpad (build 16845)\n" +"X-Launchpad-Export-Date: 2013-12-04 05:56+0000\n" +"X-Generator: Launchpad (build 16861)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -1824,6 +1824,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa luodaksesi pankkitilin.\n" +"

\n" +" Konfiguroi yrityksesi pankkitilit ja valitse tulosteiden " +"alasosassa näytettävät pankkitilt.\n" +" Voit järjestellä pankkitilit haluamaasi järjestykseen " +"luettelonäkymässä.\n" +"

\n" +"

\n" +" Jos käytät OpenERP:in kirjanpitomoduulia, niin päiväkirjat " +"ja tilt luodaan automaattisesti käyttäen näitä tietoja.\n" +"

\n" +" " #. module: base #: model:ir.actions.act_window,name:base.ir_action_report_xml @@ -3393,7 +3406,7 @@ msgstr "Armenia" #. module: base #: model:ir.module.module,summary:base.module_hr_evaluation msgid "Periodical Evaluations, Appraisals, Surveys" -msgstr "Säännöllinen arviointi, kehityskeskustelut, tutkimukset" +msgstr "Säännöllinen arviointi, kehityskeskustelut, kyselyt" #. module: base #: model:ir.actions.act_window,name:base.ir_property_form @@ -3549,7 +3562,7 @@ msgid "" "Mr., Mrs. " msgstr "" "Hallitse yhteyshenkilöiden titteleitä (käytetään kirjeissä yms. jos haluat) " -"esim. Mr. Mrs. " +"esim. Herra, Rouva " #. module: base #: view:ir.model.access:0 @@ -3622,7 +3635,7 @@ msgstr "Syntymäpäivä" #: 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 "Yhteyshenkilöiden arvonimet" +msgstr "Yhteyshenkilöiden tittelit" #. module: base #: model:ir.module.module,shortdesc:base.module_product_manufacturer @@ -3938,7 +3951,7 @@ msgstr "Raportointi" #: field:res.partner,title:0 #: field:res.partner.title,name:0 msgid "Title" -msgstr "Otsikko" +msgstr "Yhtiömuoto" #. module: base #: help:ir.property,res_id:0 @@ -4130,7 +4143,7 @@ msgstr "12. %w = 5" #. module: base #: constraint:res.partner.category:0 msgid "Error ! You can not create recursive categories." -msgstr "Virhe! Et voi luoda rekursiivisia kategorioita." +msgstr "Virhe! Et voi luoda rekursiivisia ryhmiä." #. module: base #: view:res.lang:0 @@ -7035,7 +7048,7 @@ msgstr "Määritellyt raportit" #. module: base #: model:ir.module.module,shortdesc:base.module_project_gtd msgid "Todo Lists" -msgstr "Tehtävälistat" +msgstr "Tehtäväluettelot" #. module: base #: view:ir.actions.report.xml:0 @@ -7126,7 +7139,7 @@ msgstr "Panama kotoistettu tilikartta" #. module: base #: help:res.partner.category,active:0 msgid "The active field allows you to hide the category without removing it." -msgstr "Aktiivinen kenttä sallii kategorian piilottamisen poistamatta sitä." +msgstr "Aktiivinen kenttä sallii ryhmän piilottamisen poistamatta sitä." #. module: base #: report:ir.module.reference:0 @@ -7611,7 +7624,7 @@ msgstr "Ecuador - Kirjanpito" #. module: base #: field:res.partner.category,name:0 msgid "Category Name" -msgstr "Kategorian nimi" +msgstr "Ryhmän nimi" #. module: base #: model:res.country,name:base.mp @@ -7748,7 +7761,7 @@ msgstr "Namibia" #. module: base #: field:res.partner.category,child_ids:0 msgid "Child Categories" -msgstr "Alakategoriat" +msgstr "Aliryhmät" #. module: base #: code:addons/base/ir/ir_actions.py:606 @@ -8528,7 +8541,7 @@ msgstr "Täydet käyttöoikeudet" #. module: base #: field:res.partner.category,parent_id:0 msgid "Parent Category" -msgstr "Yläkategoria" +msgstr "Ylempi ryhmä" #. module: base #: model:res.country,name:base.fi @@ -9304,7 +9317,7 @@ msgstr "" #. module: base #: field:res.partner.title,shortcut:0 msgid "Abbreviation" -msgstr "" +msgstr "Lyhenne" #. module: base #: model:ir.ui.menu,name:base.menu_crm_case_job_req_main @@ -9606,7 +9619,7 @@ msgstr "" #. module: base #: view:ir.module.category:0 msgid "Module Category" -msgstr "Moduulin kategoria" +msgstr "Moduuliryhmä" #. module: base #: model:res.country,name:base.us @@ -10955,8 +10968,8 @@ 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 "" -"Hallitse partneriyritysten yritystyyppejä joita on käytössäsi. Näitä ovat " -"esim OY, KY, A/S, GmBH ..." +"Hallitse kumppaniyritysten yritystyyppejä joita on käytössäsi. Näitä ovat " +"esim. Oyj, Oy, Ky, Tmi, Ay, Ry, A/S, GmBH ..." #. module: base #: view:res.bank:0 @@ -11736,6 +11749,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikkaa luodaksesi uuden kumppaniryhmän.\n" +"

\n" +" Hallitse kumppaniryhmiä luokitellaksesi paremmin kumppanit " +"seurantaa ja analysointeja varten.\n" +" Yksittäinen kumppani voi kuulua useisiin ryhmiin ja ryhmät " +"voivat olla hierarkkisia eli tiettyyn ryhmään\n" +" kuuluva kumppani kuuluu samalla ko. ryhmän yläryhmiin.\n" +"

\n" +" " #. module: base #: field:ir.actions.act_window,filter:0 @@ -12497,7 +12520,7 @@ msgstr "Tuo käännös" #: view:ir.module.module:0 #: field:ir.module.module,category_id:0 msgid "Category" -msgstr "Kategoria" +msgstr "Ryhmä" #. module: base #: view:ir.attachment:0 @@ -12994,7 +13017,7 @@ msgstr "Poistettavissa" #. module: base #: view:res.partner.category:0 msgid "Partner Category" -msgstr "Kumppanin katerogia" +msgstr "Kumppaniryhmä" #. module: base #: view:ir.actions.server:0 @@ -14343,7 +14366,7 @@ msgstr "Useamman dokumentin toiminto" #: model:ir.actions.act_window,name:base.action_partner_title_partner #: model:ir.ui.menu,name:base.menu_partner_title_partner msgid "Titles" -msgstr "Titteli" +msgstr "Tittelit" #. module: base #: model:ir.module.module,description:base.module_anonymization @@ -15682,7 +15705,7 @@ msgstr "Matkapuhelinnumero" #: model:ir.model,name:base.model_res_partner_category #: view:res.partner.category:0 msgid "Partner Categories" -msgstr "Kumppanien kategoriat" +msgstr "Kumppanien ryhmät" #. module: base #: view:base.module.upgrade:0 diff --git a/openerp/addons/base/i18n/ro.po b/openerp/addons/base/i18n/ro.po index d2584c381ea..7a6ff0b31a8 100644 --- a/openerp/addons/base/i18n/ro.po +++ b/openerp/addons/base/i18n/ro.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:35+0000\n" -"PO-Revision-Date: 2013-05-07 16:32+0000\n" +"PO-Revision-Date: 2013-12-01 10:01+0000\n" "Last-Translator: Dorin \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-08 06:14+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-12-02 05:51+0000\n" +"X-Generator: Launchpad (build 16856)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -217,14 +217,14 @@ msgid "" "reports." msgstr "" "\n" -"Genereaza Facturi din Cheltuieli, Inregistrari ale Fiselor de Pontaj.\n" +"Generează Facturi din Cheltuieli, Înregistrări ale Fișelor de Pontaj.\n" "========================================================\n" "\n" "Modul pentru generarea facturilor pe baza costurilor (resurse umane, " "cheltuieli, ...).\n" "\n" -"Puteti defini liste de preturi in contul analitic, puteti face unele raporte " -"teoretice\n" +"Puteți defini liste de preturi în contul analitic, puteți face unele " +"rapoarte teoretice\n" "ale veniturilor." #. module: base @@ -242,8 +242,8 @@ msgid "" "Properties of base fields cannot be altered in this manner! Please modify " "them through Python code, preferably through a custom addon!" msgstr "" -"Proprietatile campurilor principale nu pot fi modificate in acest mod! Va " -"rugam sa le modificati prin codul Python, preferabil printr-un addon " +"Proprietățile câmpurilor principale nu pot fi modificate în acest mod! Vă " +"rugăm sa le modificați prin codul Python, preferabil printr-un addon " "personalizat!" #. module: base @@ -376,12 +376,12 @@ msgstr "" #. module: base #: view:res.partner:0 msgid "Search Partner" -msgstr "Cauta Partener" +msgstr "Caută Partener" #. module: base #: field:ir.module.category,module_nr:0 msgid "Number of Modules" -msgstr "Numar de Module" +msgstr "Număr de module" #. module: base #: help:multi_company.default,company_dest_id:0 @@ -391,7 +391,7 @@ msgstr "Compania unde se pastreaza înregistrarea actuală" #. module: base #: field:res.partner.bank.type.field,size:0 msgid "Max. Size" -msgstr "Dimensiunea maxima" +msgstr "Dimensiunea maximă" #. module: base #: help:ir.actions.act_window,res_id:0 @@ -494,7 +494,7 @@ msgstr "" #: code:addons/orm.py:2649 #, python-format msgid "Invalid group_by" -msgstr "Grup invalid_dupa" +msgstr "Grupare_După invalidă" #. module: base #: field:ir.module.category,child_ids:0 @@ -547,7 +547,7 @@ msgstr "Configurare pași asistent" #. module: base #: model:ir.model,name:base.model_ir_ui_view_sc msgid "ir.ui.view_sc" -msgstr "ir.ui.vizualizare_sc" +msgstr "ir.ui.view_sc" #. module: base #: view:ir.model.access:0 @@ -1324,7 +1324,7 @@ msgstr "Principatul Andorra" #. module: base #: field:ir.rule,perm_read:0 msgid "Apply for Read" -msgstr "Se aplică pentru Citit" +msgstr "Se aplică pentru citire" #. module: base #: model:res.country,name:base.mn @@ -2252,7 +2252,7 @@ msgstr "Destinatie Activitate" #: view:ir.module.module:0 #, python-format msgid "Install" -msgstr "Instalează" +msgstr "Instalați" #. module: base #: field:res.currency,accuracy:0 @@ -2718,7 +2718,7 @@ msgstr "Bahamas" #. module: base #: field:ir.rule,perm_create:0 msgid "Apply for Create" -msgstr "Aplică pentru Creare" +msgstr "Aplică pentru creare" #. module: base #: model:ir.module.category,name:base.module_category_tools @@ -3359,7 +3359,7 @@ msgstr "Raport RML" #. module: base #: model:ir.ui.menu,name:base.menu_translation_export msgid "Import / Export" -msgstr "Import / Export" +msgstr "Importați / Exportați" #. module: base #: model:ir.module.module,description:base.module_sale @@ -3523,7 +3523,7 @@ msgstr "Letonia" #. module: base #: view:ir.actions.server:0 msgid "Field Mappings" -msgstr "Aplicatii Camp" +msgstr "Corespondențe câmp" #. module: base #: view:base.language.export:0 @@ -4613,7 +4613,7 @@ msgstr "Persoane" #. module: base #: view:base.language.import:0 msgid "_Import" -msgstr "_Importă" +msgstr "_Importați" #. module: base #: field:res.users,action_id:0 @@ -6207,7 +6207,7 @@ msgstr "Asistenta IT" #. module: base #: model:ir.module.category,name:base.module_category_specific_industry_applications msgid "Specific Industry Applications" -msgstr "Aplicatii Specifice Industriei" +msgstr "Aplicații Specifice Industriei" #. module: base #: model:ir.module.module,shortdesc:base.module_google_docs @@ -6425,7 +6425,7 @@ msgstr "Nu poate fi cautat" #: view:ir.config_parameter:0 #: field:ir.config_parameter,key:0 msgid "Key" -msgstr "Tastă" +msgstr "Cheie" #. module: base #: field:res.company,rml_header:0 @@ -7135,7 +7135,7 @@ msgstr "ir.actions.act_url" #. module: base #: model:ir.ui.menu,name:base.menu_translation_app msgid "Application Terms" -msgstr "Termeni aplicație" +msgstr "Termenii aplicației" #. module: base #: model:ir.actions.act_window,help:base.open_module_tree @@ -9456,7 +9456,7 @@ msgstr "Burundi" #: view:base.module.configuration:0 #: view:base.module.update:0 msgid "Close" -msgstr "Inchide" +msgstr "Închideți" #. module: base #: selection:base.language.install,lang:0 @@ -9690,7 +9690,7 @@ msgstr "Chineza (CN) / 简体中文" #. module: base #: field:ir.model.fields,selection:0 msgid "Selection Options" -msgstr "Optiuni de selectie" +msgstr "Opțiuni de selecție" #. module: base #: field:res.bank,street:0 @@ -9973,13 +9973,13 @@ msgid "" "

\n" " " msgstr "" -"

\n" -" Faceti click pentru a adauga un contact in agenda " -"dumneavoastra.\n" +"

\n" +" Faceți clic pentru a adaugă un contact în agenda " +"dumneavoastră.\n" "

\n" -" OpenERP va ajuta sa tineti evidenta cu usurinta a tuturor " -"activitatilor legate de\n" -" un client: discutii, istoricul oportunitatilor de afaceri,\n" +" OpenERP vă ajută să țineți evidența cu ușurință a tuturor " +"activităților legate de\n" +" un client: discuții, istoricul oportunităților de afaceri,\n" " documente, etc.\n" "

\n" " " @@ -10799,8 +10799,8 @@ msgid "" "If the selected language is loaded in the system, all documents related to " "this contact will be printed in this language. If not, it will be English." msgstr "" -"Daca limba selectata este incarcata in sistem, toate documentele asociate " -"acestui contact vor fi tiparite in aceasta limba. Daca nu, limba va fi " +"Dacă limba selectata este încărcata în sistem, toate documentele asociate " +"acestui contact vor fi tipărite în aceasta limba. Dacă nu, limba va fi " "engleza." #. module: base @@ -10971,7 +10971,7 @@ msgstr "" #. module: base #: field:ir.actions.report.xml,attachment_use:0 msgid "Reload from Attachment" -msgstr "Reincarcati din Atasament" +msgstr "Reîncarcați din Atașament" #. module: base #: model:res.country,name:base.mx @@ -11125,7 +11125,7 @@ msgstr "ID-ul vizualizarii definita in fisierul xml" #. module: base #: model:ir.model,name:base.model_base_module_import msgid "Import Module" -msgstr "Importati Modulul" +msgstr "Importați Modulul" #. module: base #: model:res.country,name:base.as @@ -11775,7 +11775,7 @@ msgstr "efectuat" #. module: base #: view:ir.actions.act_window:0 msgid "General Settings" -msgstr "Configurari generale" +msgstr "Configurări generale" #. module: base #: model:ir.module.module,description:base.module_l10n_in @@ -13361,7 +13361,7 @@ msgstr "" #: model:ir.actions.act_window,name:base.action_view_base_module_upgrade #, python-format msgid "Apply Schedule Upgrade" -msgstr "Aplica Programeaza Actualizarea" +msgstr "Aplică actualizările planificate" #. module: base #: view:workflow.activity:0 @@ -13715,7 +13715,7 @@ msgstr "Deschideti Modulele" #. module: base #: view:base.module.import:0 msgid "Import module" -msgstr "Importati modulul" +msgstr "Importați modulul" #. module: base #: field:ir.actions.server,loop_action:0 @@ -14015,10 +14015,10 @@ 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 "" -"Creati si gestionati utilizatori care se vor conecta la sistem. Utilizatorii " -"pot fi dezactivati in caz ca exista o perioada de timp in care ei nu se " -"conecteaza la sistem. Le puteti atribui grupuri pentru a le da acces " -"specific la aplicatiile de care ei au nevoie in sistem." +"Creați și gestionați utilizatori care se vor conecta la sistem. Utilizatorii " +"pot fi dezactivați în caz că există o perioada de timp în care ei nu se " +"conectează la sistem. Le puteți atribui grupuri pentru a le da acces " +"specific la aplicațiile de care ei au nevoie în sistem." #. module: base #: selection:res.request,priority:0 @@ -14146,7 +14146,7 @@ msgstr "Declansati Configurarea" #. module: base #: view:base.language.install:0 msgid "Load" -msgstr "Incarca" +msgstr "Încărcați" #. module: base #: model:ir.module.module,description:base.module_warning @@ -14360,7 +14360,7 @@ msgstr "Luna: %(luna)s" #: model:ir.actions.client,name:base.modules_updates_act_cl #: model:ir.ui.menu,name:base.menu_module_updates msgid "Updates" -msgstr "Actualizari" +msgstr "Actualizări" #. module: base #: field:ir.actions.act_window.view,sequence:0 @@ -14997,7 +14997,7 @@ msgstr "" #: 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 "Importati Traducerea" +msgstr "Importați Traducerea" #. module: base #: view:ir.module.module:0 @@ -15554,7 +15554,7 @@ msgstr "Grecia" #. module: base #: view:res.config:0 msgid "Apply" -msgstr "Aplicati" +msgstr "Aplicați" #. module: base #: field:res.request,trigger_date:0 @@ -17599,7 +17599,7 @@ msgstr "Helpdesk (Serviciu de asistenta tehnica)" #. module: base #: field:ir.rule,perm_write:0 msgid "Apply for Write" -msgstr "Aplica pentru Scriere" +msgstr "Aplicați pentru scriere" #. module: base #: field:ir.ui.menu,parent_left:0 @@ -17705,7 +17705,7 @@ msgstr "Vizualizare :" #. module: base #: field:ir.model.fields,view_load:0 msgid "View Auto-Load" -msgstr "Vizualizare Incarcare Automata" +msgstr "Vizualizare încarcare automată" #. module: base #: view:res.country:0 @@ -17759,7 +17759,7 @@ msgstr "Fisier Pictograma Web" #. module: base #: model:ir.ui.menu,name:base.menu_view_base_module_upgrade msgid "Apply Scheduled Upgrades" -msgstr "Aplica Actualizarile Planificate" +msgstr "Aplică actualizările planificate" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_journal @@ -18209,7 +18209,7 @@ msgstr "Index Culori" #: model:ir.ui.menu,name:base.menu_mrp_config #: model:ir.ui.menu,name:base.menu_mrp_root msgid "Manufacturing" -msgstr "Fabricatie" +msgstr "Fabricație" #. module: base #: model:ir.module.module,description:base.module_survey @@ -19044,7 +19044,7 @@ msgid "" "Helps you manage your manufacturing processes and generate reports on those " "processes." msgstr "" -"Va ajuta sa va administrati procesele de fabricatie si sa generati rapoarte " +"Vă ajută să vă administrați procesele de fabricație și să generați rapoarte " "pentru aceste procese." #. module: base @@ -19199,13 +19199,13 @@ msgid "" "

\n" " " msgstr "" -"\n" -" Faceti click pentru a adauga un contact in agenda " -"dumneavoastra.\n" +"

\n" +" Faceți clic pentru a adaugă un contact în agenda " +"dumneavoastră.\n" "

\n" -" OpenERP va ajuta sa tineti evidenta cu usurinta a tuturor " -"activitatilor asociate unui\n" -" client; discutii, istoricul oportunitatilor de afaceri,\n" +" OpenERP vă ajută să țineți evidența cu ușurință a tuturor " +"activităților legate de\n" +" un client: discuții, istoricul oportunităților de afaceri,\n" " documente, etc.\n" "

\n" " " diff --git a/openerp/addons/base/i18n/zh_TW.po b/openerp/addons/base/i18n/zh_TW.po index 27813a9cb75..2a8b1bac99e 100644 --- a/openerp/addons/base/i18n/zh_TW.po +++ b/openerp/addons/base/i18n/zh_TW.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:35+0000\n" -"PO-Revision-Date: 2013-02-01 16:08+0000\n" -"Last-Translator: Charles Hsu \n" +"PO-Revision-Date: 2013-12-01 17:36+0000\n" +"Last-Translator: Andy Cheng \n" "Language-Team: Chinese (Traditional) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-08 06:17+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-12-02 05:51+0000\n" +"X-Generator: Launchpad (build 16856)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -33,7 +33,7 @@ msgstr "" #. module: base #: view:res.partner.bank:0 msgid "e.g. GEBABEBB" -msgstr "" +msgstr "如 GEBABEBB (銀行匯款swift code)" #. module: base #: model:res.country,name:base.sh @@ -56,7 +56,7 @@ msgstr "日期時間" 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 之第二個引數須為 SQL 表格!您用了並非有效 SQL 表格名稱之 %s。" +msgstr "「多對多(many2many)」欄位 %s 之第二個引數須為 SQL 表格!您輸入的 %s 並非有效 SQL 表格名稱。" #. module: base #: field:ir.ui.view,arch:0 @@ -67,7 +67,7 @@ msgstr "檢視架構" #. module: base #: model:ir.module.module,summary:base.module_sale_stock msgid "Quotation, Sale Orders, Delivery & Invoicing Control" -msgstr "報價, 銷售訂單, 交貨及發票管理" +msgstr "報價單, 銷貨單, 發貨及發票管理" #. module: base #: selection:ir.sequence,implementation:0 @@ -94,7 +94,7 @@ msgstr "幫助你管理專案,追蹤任務,生成計劃" #. module: base #: model:ir.module.module,summary:base.module_point_of_sale msgid "Touchscreen Interface for Shops" -msgstr "商店觸控螢幕界面" +msgstr "店面用觸控螢幕界面" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_in_hr_payroll @@ -128,15 +128,15 @@ msgid "" " " msgstr "" "\n" -"在產品表格中加入製造商及屬性之模組\n" +"此模組在產品表單中加入製造商及屬性\n" "====================================================================\n" "\n" -"您可以對一件產品做以下定義:\n" +"您可以對產品定義以下內容:\n" "-----------------------------------------------\n" " * 製造商\n" " * 製造商的產品名稱\n" " * 製造商的產品代碼\n" -" * 產品性質\n" +" * 產品屬性\n" " " #. module: base @@ -151,11 +151,14 @@ msgid "" "The module adds google user in res user.\n" "========================================\n" msgstr "" +"\n" +"此模組將 Google 使用者加到 res user 中。\n" +"========================================\n" #. module: base #: help:res.partner,employee:0 msgid "Check this box if this contact is an Employee." -msgstr "如果聯絡人是員工則請勾選" +msgstr "如果聯絡人是員工則請勾選此項" #. module: base #: help:ir.model.fields,domain:0 @@ -238,7 +241,7 @@ msgstr "ir.ui.view.custom" #: code:addons/base/ir/ir_model.py:374 #, python-format msgid "Renaming sparse field \"%s\" is not allowed" -msgstr "" +msgstr "不允許重新命名稀疏欄位「%s」" #. module: base #: model:res.country,name:base.sz @@ -329,6 +332,12 @@ msgid "" "\n" " " msgstr "" +"\n" +"智利會計科目及稅務在地化。\n" +"==============================================\n" +"Plan contable chileno e impuestos de acuerdo a disposiciones vigentes\n" +"\n" +" " #. module: base #: model:ir.module.module,shortdesc:base.module_sale @@ -367,7 +376,7 @@ msgstr "最大尺寸" msgid "" "Database ID of record to open in form view, when ``view_mode`` is set to " "'form' only" -msgstr "" +msgstr "當「檢視模式」僅設為「表單」時,將開啟的紀錄的資料庫 ID" #. module: base #: help:ir.values,key2:0 @@ -432,7 +441,7 @@ msgstr "" msgid "" "There is already a shared filter set as default for %(model)s, delete or " "change it before setting a new default" -msgstr "" +msgstr "已有一共享的過濾器被設為 %(model)s 的預設過濾器。要設定新的預設過濾器前,請先修改或刪除原有預設過濾器。" #. module: base #: code:addons/orm.py:2649 @@ -513,7 +522,7 @@ msgstr "所指定為無效的日期/時間格式指示。請參照當您編寫 msgid "" "One of the records you are trying to modify has already been deleted " "(Document type: %s)." -msgstr "" +msgstr "您要修改的紀錄已被刪除(文件類型: %s)。" #. module: base #: help:ir.actions.act_window,views:0 @@ -695,7 +704,7 @@ msgstr "銷售及採購" #. module: base #: view:res.partner:0 msgid "Put an internal note..." -msgstr "" +msgstr "寫下內部記錄..." #. module: base #: view:ir.translation:0 @@ -728,7 +737,7 @@ msgstr "自訂欄位名稱開頭必須是 'x_' !" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_mx msgid "Mexico - Accounting" -msgstr "" +msgstr "墨西哥 - 會計" #. module: base #: help:ir.actions.server,action_id:0 @@ -884,7 +893,7 @@ msgstr "自動化動作" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ro msgid "Romania - Accounting" -msgstr "" +msgstr "羅馬尼亞 - 會計" #. module: base #: model:ir.model,name:base.model_res_config_settings @@ -954,7 +963,7 @@ msgstr "覆寫現有名詞" #: code:addons/base/res/res_currency.py:52 #, python-format msgid "No currency rate associated for currency %d for the given period" -msgstr "" +msgstr "該期間內沒有貨幣 %d 的匯率" #. module: base #: model:ir.module.module,description:base.module_hr_holidays @@ -1013,7 +1022,7 @@ msgstr "報表類型,如 pdf, html, raw, sxw, odt, html2html, mako2html, ..." #. module: base #: model:ir.module.module,shortdesc:base.module_document_webdav msgid "Shared Repositories (WebDAV)" -msgstr "" +msgstr "共享的儲存庫(WebDAV)" #. module: base #: view:res.users:0 @@ -1040,7 +1049,7 @@ msgstr "辛巴威" #: help:ir.model.constraint,type:0 msgid "" "Type of the constraint: `f` for a foreign key, `u` for other constraints." -msgstr "" +msgstr "限制條件類型:「f」為 foreign key ,「u」代表其他限制條件。" #. module: base #: view:ir.actions.report.xml:0 @@ -1070,7 +1079,7 @@ msgstr "模組升級" #: view:res.partner.bank:0 #: view:res.users:0 msgid "ZIP" -msgstr "" +msgstr "郵遞區號" #. module: base #: selection:base.language.install,lang:0 @@ -1144,7 +1153,7 @@ msgstr "請求參考類型" #. module: base #: model:ir.module.module,shortdesc:base.module_google_base_account msgid "Google Users" -msgstr "" +msgstr "Google 使用者" #. module: base #: model:ir.module.module,shortdesc:base.module_fleet @@ -1312,6 +1321,8 @@ 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 @@ -1321,7 +1332,7 @@ msgstr "關島(美屬)" #. module: base #: sql_constraint:res.country:0 msgid "The name of the country must be unique !" -msgstr "" +msgstr "國家名稱必須為獨一無二的!" #. module: base #: field:ir.module.module,installed_version:0 @@ -1336,7 +1347,7 @@ msgstr "刪除存取權限" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_be_hr_payroll_account msgid "Belgium - Payroll with Accounting" -msgstr "" +msgstr "比利時 - 薪資(含會計)" #. module: base #: selection:ir.actions.server,state:0 @@ -1457,7 +1468,7 @@ msgid "" "suitable\n" " for uploading to OpenERP's translation " "platform," -msgstr "" +msgstr "TGZ 格式:這是含有 PO 格式檔案的壓縮檔,適用於直接上傳至 OpenERP 的翻譯平台。" #. module: base #: view:res.lang:0 @@ -1481,7 +1492,7 @@ msgstr "測試" #. module: base #: field:ir.actions.report.xml,attachment:0 msgid "Save as Attachment Prefix" -msgstr "" +msgstr "另存附件檔案的前綴字元" #. module: base #: field:ir.ui.view_sc,res_id:0 @@ -1518,7 +1529,7 @@ msgstr "海地" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_fr_hr_payroll msgid "French Payroll" -msgstr "" +msgstr "法國薪資" #. module: base #: view:ir.ui.view:0 @@ -1557,12 +1568,12 @@ msgstr "操作取消" #. module: base #: model:ir.module.module,shortdesc:base.module_document msgid "Document Management System" -msgstr "" +msgstr "文件管理系統" #. module: base #: model:ir.module.module,shortdesc:base.module_crm_claim msgid "Claims Management" -msgstr "" +msgstr "申訴管理" #. module: base #: model:ir.module.module,description:base.module_document_webdav @@ -1823,7 +1834,7 @@ msgstr "" #: code:addons/base/ir/ir_model.py:85 #, python-format msgid "Invalid Search Criteria" -msgstr "" +msgstr "無效的搜尋條件" #. module: base #: field:res.users,login:0 From dea3fdeeed816d8027549e8bad6599080992fc54 Mon Sep 17 00:00:00 2001 From: Denis Ledoux Date: Wed, 4 Dec 2013 13:27:27 +0100 Subject: [PATCH 08/30] [FIX] im_livechat: many2one channel_id of im_session to the right model. In im_session model, field channel_id was a many2one to im_user, or, obviously, this should be a many2one to im_livechat.channel Well, obviously, this is a copy/paste error (or distraction, your choice!). This fix should normally not be pushed on a stable branch (like the current one, saas-2), but considering the severity of the problem, and the few changes in database (alter foreign key only), this is acceptable. Why such a big mistake has not been seen earlier ? Do you even test or read back what you write ? bzr revid: dle@openerp.com-20131204122727-q0ch5j2v8rrli41e --- addons/im_livechat/im_livechat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/im_livechat/im_livechat.py b/addons/im_livechat/im_livechat.py index 81d3d61c6b4..12d5f58d078 100644 --- a/addons/im_livechat/im_livechat.py +++ b/addons/im_livechat/im_livechat.py @@ -210,5 +210,5 @@ class im_session(osv.osv): _inherit = 'im.session' _columns = { - 'channel_id': fields.many2one("im.user", "Channel"), + 'channel_id': fields.many2one("im_livechat.channel", "Channel"), } From 08ec6a3805b93d26bc5e57ef58f1cf64a5c9235e Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Wed, 4 Dec 2013 12:27:34 +0100 Subject: [PATCH 09/30] [FIX] mail: reset alias when copying users bzr revid: chs@openerp.com-20131204112734-2h569udrxgsgw9kr --- addons/mail/res_users.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/addons/mail/res_users.py b/addons/mail/res_users.py index ac1d406c29a..e335929ec2f 100644 --- a/addons/mail/res_users.py +++ b/addons/mail/res_users.py @@ -81,6 +81,12 @@ class res_users(osv.Model): self._create_welcome_message(cr, uid, user, context=context) return user_id + def copy_data(self, *args, **kwargs): + data = super(res_users, self).copy_data(*args, **kwargs) + if data.get('alias_name'): + data['alias_name'] = data['login'] + return data + def _create_welcome_message(self, cr, uid, user, context=None): if not self.has_group(cr, uid, 'base.group_user'): return False From 8fc992910ea5abcd7b4d8070f556b696d03160da Mon Sep 17 00:00:00 2001 From: Christophe Simonis Date: Wed, 4 Dec 2013 13:26:09 +0100 Subject: [PATCH 10/30] [FIX] auth_signup: set an alias for the template user bzr revid: chs@openerp.com-20131204122609-oi2b8g4p8cy13dux --- addons/auth_signup/auth_signup_data.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/auth_signup/auth_signup_data.xml b/addons/auth_signup/auth_signup_data.xml index 65ada8f39db..f153f03237d 100644 --- a/addons/auth_signup/auth_signup_data.xml +++ b/addons/auth_signup/auth_signup_data.xml @@ -11,6 +11,8 @@ + + _usertemplate From c0c971b87ab6b753bb6b3171bbddf1815c8da62b Mon Sep 17 00:00:00 2001 From: Denis Ledoux Date: Wed, 4 Dec 2013 14:36:33 +0100 Subject: [PATCH 11/30] [FIX] sale_crm: wizard crm_make_sale crash if partner_id not sent on the opp. Because defaults get function of partner_id of wizard read the partner_id of the opp and return the first item of the tuple, but if there isnt a partner on the opp, the read return a false for this field, not a tuple. No return the first item of the tuple if the partner_id is set, else False bzr revid: dle@openerp.com-20131204133633-t7wfbnipv3jtss82 --- addons/sale_crm/wizard/crm_make_sale.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/sale_crm/wizard/crm_make_sale.py b/addons/sale_crm/wizard/crm_make_sale.py index 316141b72b8..d44715925d9 100644 --- a/addons/sale_crm/wizard/crm_make_sale.py +++ b/addons/sale_crm/wizard/crm_make_sale.py @@ -47,7 +47,7 @@ class crm_make_sale(osv.osv_memory): return False lead = lead_obj.read(cr, uid, active_id, ['partner_id'], context=context) - return lead['partner_id'][0] + return lead['partner_id'][0] if lead['partner_id'] else False def view_init(self, cr, uid, fields_list, context=None): return super(crm_make_sale, self).view_init(cr, uid, fields_list, context=context) From 0721a21966739a0068f9440c8f2ef85b99bbcb75 Mon Sep 17 00:00:00 2001 From: Denis Ledoux Date: Wed, 4 Dec 2013 15:59:23 +0100 Subject: [PATCH 12/30] [FIX] base: allow all users (including portals) to change their avatar Force readonly="0" on field image in preferences view, otherwise the readonly can be set by access rights. Preferences are written with the UID 1, if the fields are in the WRITEABLE FIELDS list of the object res_users. This is why any users can edit their preferences even if they do not have the rights to write on res.users. Forcing readonly="0" to make fields editable in the form. bzr revid: dle@openerp.com-20131204145923-f7jwoah722q188d7 --- openerp/addons/base/res/res_users_view.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openerp/addons/base/res/res_users_view.xml b/openerp/addons/base/res/res_users_view.xml index 7e83b43179f..81dd5feffa8 100644 --- a/openerp/addons/base/res/res_users_view.xml +++ b/openerp/addons/base/res/res_users_view.xml @@ -246,7 +246,7 @@
- +

() From 3a6953c1d0251108798f876aef7c6dc12c906879 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Thu, 5 Dec 2013 06:10:10 +0000 Subject: [PATCH 13/30] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20131205061010-2jn37v8w04xqksgg --- openerp/addons/base/i18n/nl.po | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/openerp/addons/base/i18n/nl.po b/openerp/addons/base/i18n/nl.po index d65f74d3070..625fa7cb7c4 100644 --- a/openerp/addons/base/i18n/nl.po +++ b/openerp/addons/base/i18n/nl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:35+0000\n" -"PO-Revision-Date: 2013-11-22 11:54+0000\n" -"Last-Translator: Jan Jurkus (GCE CAD-Service) \n" +"PO-Revision-Date: 2013-12-04 13:01+0000\n" +"Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-23 06:25+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-05 06:10+0000\n" +"X-Generator: Launchpad (build 16863)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -11123,7 +11123,7 @@ msgstr "Bankrekeningen gerelateerd aan dit bedrijf" #: model:ir.ui.menu,name:base.menu_sales #: model:ir.ui.menu,name:base.next_id_64 msgid "Sales" -msgstr "Verkoop" +msgstr "Verkopen" #. module: base #: field:ir.actions.server,child_ids:0 From bba98b6a1370fd5dee7c4b4ce9e0aedc1da47279 Mon Sep 17 00:00:00 2001 From: Denis Ledoux Date: Thu, 5 Dec 2013 10:36:15 +0100 Subject: [PATCH 14/30] [FIX] web_kanban_gauge: set auto install True case: web_kanban_gauge has been added in the dependance of sale_crm. This module used to auto install when module sale and crm were installed. With this new dependance, the module sale_crm auto install when sale, crm and web_kanban_gauge are installed. We auto install kanban gauge so sale_crm auto install on installation of crm and sales, as web_kanban_gauge will be already installed bzr revid: dle@openerp.com-20131205093615-1c9z0g5439xokdbt --- addons/web_kanban_gauge/__openerp__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/web_kanban_gauge/__openerp__.py b/addons/web_kanban_gauge/__openerp__.py index fd4c2cfba66..7eb2ba81dad 100644 --- a/addons/web_kanban_gauge/__openerp__.py +++ b/addons/web_kanban_gauge/__openerp__.py @@ -14,5 +14,5 @@ This widget allows to display gauges using justgage library. ], 'qweb': [ ], - 'auto_install': False, + 'auto_install': True, } From 9652fb0013a2345cc0d20c2ed831fb130cb1e754 Mon Sep 17 00:00:00 2001 From: Martin Trigaux Date: Thu, 5 Dec 2013 12:32:54 +0100 Subject: [PATCH 15/30] [IMP] orm: force checking ir.rules on read when accessing only to _classic_write fields (o2m, m2m, function) More consistent behaviour. Was not able to access unauthorized data (retrieving data on x2m field would trigger security rules) but make sure it raises an exception instead of silently retrieve no data. Move construct domain inside if clause as no needed before bzr revid: mat@openerp.com-20131205113254-j3j4bb0p6ed23oht --- openerp/osv/orm.py | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/openerp/osv/orm.py b/openerp/osv/orm.py index 9e6ee64d87f..7ecf4afc6cd 100644 --- a/openerp/osv/orm.py +++ b/openerp/osv/orm.py @@ -3636,11 +3636,6 @@ class BaseModel(object): if fields_to_read is None: fields_to_read = self._columns.keys() - # Construct a clause for the security rules. - # 'tables' hold the list of tables necessary for the SELECT including the ir.rule clauses, - # or will at least contain self._table. - rule_clause, rule_params, tables = self.pool.get('ir.rule').domain_get(cr, user, self._name, 'read', context=context) - # all inherited fields + all non inherited fields for which the attribute whose name is in load is True fields_pre = [f for f in fields_to_read if f == self.CONCURRENCY_CHECK_FIELD @@ -3661,6 +3656,11 @@ class BaseModel(object): return 'length(%s) as "%s"' % (f_qual, f) return f_qual + # Construct a clause for the security rules. + # 'tables' hold the list of tables necessary for the SELECT including the ir.rule clauses, + # or will at least contain self._table. + rule_clause, rule_params, tables = self.pool.get('ir.rule').domain_get(cr, user, self._name, 'read', context=context) + fields_pre2 = map(convert_field, fields_pre) order_by = self._parent_order or self._order select_fields = ','.join(fields_pre2 + ['%s.id' % self._table]) @@ -3675,6 +3675,7 @@ class BaseModel(object): self._check_record_rules_result_count(cr, user, sub_ids, result_ids, 'read', context=context) res.extend(results) else: + self.check_access_rule(cr, user, ids, 'read', context=context) res = map(lambda x: {'id': x}, ids) if context.get('lang'): From cbe553505e0366cb0c6e8b081fd955b0afe5d81f Mon Sep 17 00:00:00 2001 From: Denis Ledoux Date: Thu, 5 Dec 2013 18:09:17 +0100 Subject: [PATCH 16/30] [FIX]sale: on sale order creation, apply on_change if needed (if required value are not set and can be computed from other values (onchange) bzr revid: dle@openerp.com-20131205170917-7cdzghsa5690xvux --- addons/sale/sale.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/addons/sale/sale.py b/addons/sale/sale.py index 7dfffabbcd3..06a227f1cf9 100644 --- a/addons/sale/sale.py +++ b/addons/sale/sale.py @@ -318,6 +318,9 @@ class sale_order(osv.osv): context = {} if vals.get('name', '/') == '/': vals['name'] = self.pool.get('ir.sequence').get(cr, uid, 'sale.order') or '/' + if vals.get('partner_id') and any(f not in vals for f in ['partner_invoice_id', 'partner_shipping_id', 'pricelist_id']): + defaults = self.onchange_partner_id(cr, uid, [], vals['partner_id'], context)['value'] + vals = dict(defaults, **vals) context.update({'mail_create_nolog': True}) new_id = super(sale_order, self).create(cr, uid, vals, context=context) self.message_post(cr, uid, [new_id], body=_("Quotation created"), context=context) @@ -831,6 +834,24 @@ class sale_order_line(osv.osv): pass return {'value': value} + def create(self, cr, uid, values, context=None): + if values.get('order_id') and values.get('product_id') and any(f not in values for f in ['name', 'price_unit', 'type', 'product_uom_qty', 'product_uom']): + order = self.pool['sale.order'].read(cr, uid, values['order_id'], ['pricelist_id', 'partner_id', 'date_order', 'fiscal_position'], context=context) + defaults = self.product_id_change(cr, uid, [], order['pricelist_id'][0], values['product_id'], + qty=values.get('product_uom_qty', False), + uom=values.get('product_uom', False), + qty_uos=values.get('product_uos_qty', False), + uos=values.get('product_uos', False), + name=values.get('name', False), + partner_id=order['partner_id'][0], + date_order=order['date_order'], + fiscal_position=order['fiscal_position'][0] if order['fiscal_position'] else False, + flag=False, # Force name update + context=context + )['value'] + values = dict(defaults, **values) + return super(sale_order_line, self).create(cr, uid, values, context=context) + def copy_data(self, cr, uid, id, default=None, context=None): if not default: default = {} From 03e9e188c3b9724a6f63b76816c63664cf8cb8bd Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Fri, 6 Dec 2013 06:24:20 +0000 Subject: [PATCH 17/30] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20131205061031-0rg3zuhu9bm4ygcx bzr revid: launchpad_translations_on_behalf_of_openerp-20131206062420-e5igkn86w68za9sv --- addons/account/i18n/ro.po | 40 +++++++++++++++---------------- addons/account_voucher/i18n/ro.po | 14 +++++------ addons/hr_payroll/i18n/sl.po | 8 +++---- 3 files changed, 31 insertions(+), 31 deletions(-) diff --git a/addons/account/i18n/ro.po b/addons/account/i18n/ro.po index 89853a5d560..1018487c0cb 100644 --- a/addons/account/i18n/ro.po +++ b/addons/account/i18n/ro.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-14 22:29+0000\n" -"PO-Revision-Date: 2013-12-03 15:00+0000\n" +"PO-Revision-Date: 2013-12-05 19:37+0000\n" "Last-Translator: Dorin \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-12-04 05:56+0000\n" -"X-Generator: Launchpad (build 16861)\n" +"X-Launchpad-Export-Date: 2013-12-06 06:24+0000\n" +"X-Generator: Launchpad (build 16863)\n" #. module: account #: model:email.template,body_html:account.email_template_edi_invoice @@ -363,7 +363,7 @@ msgid "" "

\n" " " msgstr "" -"\n" +"

\n" " Faceti click pentru a adauga o perioada fiscala.\n" "

\n" " O perioada contabila este o luna sau un trimestru. De\n" @@ -496,7 +496,7 @@ msgid "" "

\n" " " msgstr "" -"\n" +"

\n" " Faceti click pentru a crea o rambursare pentru client. \n" "

\n" " O rambursare este un document care atribuie o factura " @@ -1421,7 +1421,7 @@ msgid "" "

\n" " " msgstr "" -"\n" +"

\n" " Faceti click pentru a adauga un cont.\n" "

\n" " Atunci cand efectuati tranzactii cu valute multiple, puteti " @@ -1529,7 +1529,7 @@ msgid "" "

\n" " " msgstr "" -"\n" +"

\n" " Faceti click pentru a crea un registru de numerar nou.\n" "

\n" " O casa de marcat va permite sa gestionati intrarile de " @@ -2097,7 +2097,7 @@ msgid "" "

\n" " " msgstr "" -"\n" +"

\n" " Faceti click pentru a defini un nou tip de cont.\n" "

\n" " Tipul de cont este folosit pentru a determina modul in care " @@ -2425,7 +2425,7 @@ msgid "" "

\n" " " msgstr "" -"\n" +"

\n" " Faceti click pentru a inregistra o noua factura a " "furnizorului.\n" "

\n" @@ -2498,7 +2498,7 @@ msgid "" "

\n" " " msgstr "" -"\n" +"

\n" " Faceti click pentru a inregistra un extras de cont.\n" "

\n" " Un extras de cont este un rezumat al tuturor tranzactiilor " @@ -3370,7 +3370,7 @@ msgid "" "

\n" " " msgstr "" -"\n" +"

\n" " Faceti click pentru a incepe un nou an fiscal.\n" "

\n" " Definiti anul fiscal al companiei dumneavoastra in functie " @@ -4245,7 +4245,7 @@ msgid "" "

\n" " " msgstr "" -"\n" +"

\n" " Faceti click pentru a crea o factura a clientului.\n" "

\n" " Facturarea electronica a lui OpenERP permite usurarea si " @@ -4957,7 +4957,7 @@ msgid "" "

\n" " " msgstr "" -"\n" +"

\n" " Dati click pentru a seta un nou cont bancar. \n" "

\n" " Configurati contul bancar al companiei dumneavoastra si " @@ -6414,7 +6414,7 @@ msgid "" "

\n" " " msgstr "" -"\n" +"

\n" " Faceti click pentru a crea o inregistrare in registru.\n" "

\n" " O inregistrare in registru consta din mai multe elemente ale " @@ -6735,7 +6735,7 @@ msgid "" "

\n" " " msgstr "" -"\n" +"

\n" " Dati click pentru a adauga un cont.\n" "

\n" " Un cont este o parte a unui registru de contabilitate care " @@ -7024,7 +7024,7 @@ msgid "" "

\n" " " msgstr "" -"\n" +"

\n" " Faceti click pentru a inregistra o rambursare primita de la " "un furnizor.\n" "

\n" @@ -9448,7 +9448,7 @@ msgid "" "

\n" " " msgstr "" -"\n" +"

\n" " Dati click pentru a adauga un registru.\n" "

\n" " Un registru este utilizat pentru a inregistra tranzactii cu " @@ -9678,7 +9678,7 @@ msgid "" "

\n" " " msgstr "" -"\n" +"

\n" " Dati click pentru a defini o noua inregistrare recurenta.\n" "

\n" " O inregistrare recurenta are loc pe o baza recurenta dintr-o " @@ -11600,7 +11600,7 @@ msgid "" "

\n" " " msgstr "" -"\n" +"

\n" " Dati click pentru a defini un nou cod fiscal.\n" "

\n" " In functie de tara, un cod fiscal este de obicei o celula " @@ -11638,7 +11638,7 @@ msgid "" "

\n" " " msgstr "" -"\n" +"

\n" " Selectati perioada si registrul pe care doriti sa il " "completati.\n" "

\n" diff --git a/addons/account_voucher/i18n/ro.po b/addons/account_voucher/i18n/ro.po index cc6f0d112eb..c417a485982 100644 --- a/addons/account_voucher/i18n/ro.po +++ b/addons/account_voucher/i18n/ro.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-30 22:59+0000\n" +"PO-Revision-Date: 2013-12-05 19:29+0000\n" "Last-Translator: Dorin \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-12-01 05:45+0000\n" -"X-Generator: Launchpad (build 16856)\n" +"X-Launchpad-Export-Date: 2013-12-06 06:24+0000\n" +"X-Generator: Launchpad (build 16863)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -175,7 +175,7 @@ msgid "" "

\n" " " msgstr "" -"\n" +"

\n" " Faceti click pentru a inregistra o chitanta de cumparare. \n" "

\n" " Atunci cand este confirmata o chitanta de cumparare, puteti " @@ -300,7 +300,7 @@ msgid "" "

\n" " " msgstr "" -"\n" +"

\n" " Faceti click pentru a crea o chitanta de vanzari.\n" "

\n" " Atunci cand o chitanta de vanzari este confirmata, puteti " @@ -500,7 +500,7 @@ msgid "" "

\n" " " msgstr "" -"\n" +"

\n" " Faceti click pentru a crea o noua plata a furnizorului.\n" "

\n" " OpenERP va ajuta sa urmariti cu usurinta platile pe care le " @@ -626,7 +626,7 @@ msgid "" "

\n" " " msgstr "" -"\n" +"

\n" " Faceti click pentru a inregistra o plata noua. \n" "

\n" " Introduceti clientul si metoda de plata, iar apoi sau\n" diff --git a/addons/hr_payroll/i18n/sl.po b/addons/hr_payroll/i18n/sl.po index 86c72c19645..0887fec1a69 100644 --- a/addons/hr_payroll/i18n/sl.po +++ b/addons/hr_payroll/i18n/sl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-20 22:05+0000\n" +"PO-Revision-Date: 2013-12-04 11:06+0000\n" "Last-Translator: Darja Zorman \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:12+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-05 06:10+0000\n" +"X-Generator: Launchpad (build 16863)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -578,7 +578,7 @@ msgstr "" #: report:payslip:0 #: field:payslip.lines.contribution.register,date_to:0 msgid "Date To" -msgstr "" +msgstr "Datum do" #. module: hr_payroll #: selection:hr.payslip.line,condition_select:0 From 8be311d950c015f82c4d0cb66228f256c89de65b Mon Sep 17 00:00:00 2001 From: Martin Trigaux Date: Fri, 6 Dec 2013 11:46:59 +0100 Subject: [PATCH 18/30] [FIX] account: performance improvement on analytic line creation remove analytic lines (to avoid duplicates) only when create new one instead of each validation of the account move don't create new analytic lines at move creation, will do it once the move is balanced (unbalanced move should not create analytic lines yet) bzr revid: mat@openerp.com-20131206104659-vct8a5l9o4nmhwqs --- addons/account/account.py | 5 ----- addons/account/account_move_line.py | 16 ++-------------- 2 files changed, 2 insertions(+), 19 deletions(-) diff --git a/addons/account/account.py b/addons/account/account.py index e37ea0e9b6f..5dce6aae3e7 100644 --- a/addons/account/account.py +++ b/addons/account/account.py @@ -1583,11 +1583,6 @@ class account_move(osv.osv): obj_analytic_line = self.pool.get('account.analytic.line') obj_move_line = self.pool.get('account.move.line') for move in self.browse(cr, uid, ids, context): - # Unlink old analytic lines on move_lines - for obj_line in move.line_id: - for obj in obj_line.analytic_lines: - obj_analytic_line.unlink(cr,uid,obj.id) - journal = move.journal_id amount = 0 line_ids = [] diff --git a/addons/account/account_move_line.py b/addons/account/account_move_line.py index 3282609b109..babd4e97b3f 100644 --- a/addons/account/account_move_line.py +++ b/addons/account/account_move_line.py @@ -193,6 +193,8 @@ class account_move_line(osv.osv): if obj_line.analytic_account_id: if not obj_line.journal_id.analytic_journal_id: raise osv.except_osv(_('No Analytic Journal!'),_("You have to define an analytic journal on the '%s' journal!") % (obj_line.journal_id.name, )) + if obj_line.analytic_lines: + acc_ana_line_obj.unlink(cr,uid,[obj.id for obj in obj_line.analytic_lines]) vals_line = self._prepare_analytic_line(cr, uid, obj_line, context=context) acc_ana_line_obj.create(cr, uid, vals_line) return True @@ -1209,20 +1211,6 @@ class account_move_line(osv.osv): if not ok: raise osv.except_osv(_('Bad Account!'), _('You cannot use this general account in this journal, check the tab \'Entry Controls\' on the related journal.')) - if vals.get('analytic_account_id',False): - if journal.analytic_journal_id: - vals['analytic_lines'] = [(0,0, { - 'name': vals['name'], - 'date': vals.get('date', time.strftime('%Y-%m-%d')), - 'account_id': vals.get('analytic_account_id', False), - 'unit_amount': vals.get('quantity', 1.0), - 'amount': vals.get('debit', 0.0) or vals.get('credit', 0.0), - 'general_account_id': vals.get('account_id', False), - 'journal_id': journal.analytic_journal_id.id, - 'ref': vals.get('ref', False), - 'user_id': uid - })] - result = super(account_move_line, self).create(cr, uid, vals, context=context) # CREATE Taxes if vals.get('account_tax_id', False): From ac0e22bd6c60a262dfacf565af67c8dedf581898 Mon Sep 17 00:00:00 2001 From: Denis Ledoux Date: Fri, 6 Dec 2013 12:13:36 +0100 Subject: [PATCH 19/30] [FIX] sale_stock,stock: change model to stock.picking.out of deliveries to invoice view in sales Deliveries to invoice in sales menu should display delivery order only (no incoming shipment). This was already the case thanks to the domain [('type','=','out')], but since the refactor of the module stock, and the division of stock.picking to stock.picking.in and stock.picking.out, the model of this view should be stock.picking.out instead of stock.picking (for instance, to get the actions binding (ir.values) of stock.picking.out model). + typo fix in action binding bzr revid: dle@openerp.com-20131206111336-dg01y92jvjnxy5oi --- addons/sale_stock/stock_view.xml | 2 +- addons/stock/wizard/stock_invoice_onshipping_view.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/sale_stock/stock_view.xml b/addons/sale_stock/stock_view.xml index d06526902fd..d4bf4fc4629 100644 --- a/addons/sale_stock/stock_view.xml +++ b/addons/sale_stock/stock_view.xml @@ -63,7 +63,7 @@ Deliveries to Invoice - stock.picking + stock.picking.out ir.actions.act_window form tree,form,calendar diff --git a/addons/stock/wizard/stock_invoice_onshipping_view.xml b/addons/stock/wizard/stock_invoice_onshipping_view.xml index a65afb377b3..975c5aa2848 100644 --- a/addons/stock/wizard/stock_invoice_onshipping_view.xml +++ b/addons/stock/wizard/stock_invoice_onshipping_view.xml @@ -21,7 +21,7 @@ - Date: Fri, 6 Dec 2013 12:27:38 +0100 Subject: [PATCH 20/30] [REVERT] revision 9031, dle@openerp.com-20131205170917-7cdzghsa5690xvux Because the xml parser needs to be fixed before this fix can be commited bzr revid: dle@openerp.com-20131206112738-wu35g157v6myipbx --- addons/sale/sale.py | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/addons/sale/sale.py b/addons/sale/sale.py index 06a227f1cf9..7dfffabbcd3 100644 --- a/addons/sale/sale.py +++ b/addons/sale/sale.py @@ -318,9 +318,6 @@ class sale_order(osv.osv): context = {} if vals.get('name', '/') == '/': vals['name'] = self.pool.get('ir.sequence').get(cr, uid, 'sale.order') or '/' - if vals.get('partner_id') and any(f not in vals for f in ['partner_invoice_id', 'partner_shipping_id', 'pricelist_id']): - defaults = self.onchange_partner_id(cr, uid, [], vals['partner_id'], context)['value'] - vals = dict(defaults, **vals) context.update({'mail_create_nolog': True}) new_id = super(sale_order, self).create(cr, uid, vals, context=context) self.message_post(cr, uid, [new_id], body=_("Quotation created"), context=context) @@ -834,24 +831,6 @@ class sale_order_line(osv.osv): pass return {'value': value} - def create(self, cr, uid, values, context=None): - if values.get('order_id') and values.get('product_id') and any(f not in values for f in ['name', 'price_unit', 'type', 'product_uom_qty', 'product_uom']): - order = self.pool['sale.order'].read(cr, uid, values['order_id'], ['pricelist_id', 'partner_id', 'date_order', 'fiscal_position'], context=context) - defaults = self.product_id_change(cr, uid, [], order['pricelist_id'][0], values['product_id'], - qty=values.get('product_uom_qty', False), - uom=values.get('product_uom', False), - qty_uos=values.get('product_uos_qty', False), - uos=values.get('product_uos', False), - name=values.get('name', False), - partner_id=order['partner_id'][0], - date_order=order['date_order'], - fiscal_position=order['fiscal_position'][0] if order['fiscal_position'] else False, - flag=False, # Force name update - context=context - )['value'] - values = dict(defaults, **values) - return super(sale_order_line, self).create(cr, uid, values, context=context) - def copy_data(self, cr, uid, id, default=None, context=None): if not default: default = {} From 847ca65a23bd8c4f5882f2a21983a9d17ac366e9 Mon Sep 17 00:00:00 2001 From: Denis Ledoux Date: Fri, 6 Dec 2013 13:15:52 +0100 Subject: [PATCH 21/30] [FIX] purchase: warning uom category different only if the changed field is product_uom itself. Changing product_id with a different unit category does not trigger the uom category change warning bzr revid: dle@openerp.com-20131206121552-xre6jj34cpfuldoa --- addons/purchase/purchase.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/addons/purchase/purchase.py b/addons/purchase/purchase.py index 4aa59744a12..957253bbf7c 100644 --- a/addons/purchase/purchase.py +++ b/addons/purchase/purchase.py @@ -908,8 +908,11 @@ class purchase_order_line(osv.osv): """ onchange handler of product_uom. """ + if context is None: + context = {} if not uom_id: return {'value': {'price_unit': price_unit or 0.0, 'name': name or '', 'product_uom' : uom_id or False}} + context = dict(context, purchase_uom_check=True) return self.onchange_product_id(cr, uid, ids, pricelist_id, product_id, qty, uom_id, partner_id, date_order=date_order, fiscal_position_id=fiscal_position_id, date_planned=date_planned, name=name, price_unit=price_unit, context=context) @@ -983,7 +986,7 @@ class purchase_order_line(osv.osv): uom_id = product_uom_po_id if product.uom_id.category_id.id != product_uom.browse(cr, uid, uom_id, context=context).category_id.id: - if self._check_product_uom_group(cr, uid, context=context): + if context.get('purchase_uom_check') and self._check_product_uom_group(cr, uid, context=context): res['warning'] = {'title': _('Warning!'), 'message': _('Selected Unit of Measure does not belong to the same category as the product Unit of Measure.')} uom_id = product_uom_po_id From 0be3333f9617b2be86369bc0a21fcf8097ffe393 Mon Sep 17 00:00:00 2001 From: Martin Trigaux Date: Fri, 6 Dec 2013 13:54:03 +0100 Subject: [PATCH 22/30] [FIX] orm: ignore existing link for operation (4, x) in one2many fields bzr revid: mat@openerp.com-20131206125403-r6uemlh7jagw01gh --- openerp/osv/fields.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/openerp/osv/fields.py b/openerp/osv/fields.py index d2f9789c776..c7771bd0327 100644 --- a/openerp/osv/fields.py +++ b/openerp/osv/fields.py @@ -570,8 +570,10 @@ class one2many(_column): else: cr.execute('update '+_table+' set '+self._fields_id+'=null where id=%s', (act[1],)) elif act[0] == 4: - # Must use write() to recompute parent_store structure if needed - obj.write(cr, user, [act[1]], {self._fields_id:id}, context=context or {}) + cr.execute("select 1 from {0} where id=%s and {1}!=%s".format(_table, self._fields_id), (act[1], id)) + if cr.fetchone(): + # Must use write() to recompute parent_store structure if needed and check access rules + obj.write(cr, user, [act[1]], {self._fields_id:id}, context=context or {}) elif act[0] == 5: reverse_rel = obj._all_columns.get(self._fields_id) assert reverse_rel, 'Trying to unlink the content of a o2m but the pointed model does not have a m2o' From 5200639f393db814722818ce821cab4f05c1bca1 Mon Sep 17 00:00:00 2001 From: Denis Ledoux Date: Fri, 6 Dec 2013 14:51:11 +0100 Subject: [PATCH 23/30] [FIX]sale: on sale order creation, apply on_change if needed (if required value are not set and can be computed from other values (onchange) bzr revid: dle@openerp.com-20131206135111-nh31jgspelvwnhat --- addons/sale/sale.py | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/addons/sale/sale.py b/addons/sale/sale.py index 7dfffabbcd3..88cd20bd786 100644 --- a/addons/sale/sale.py +++ b/addons/sale/sale.py @@ -318,6 +318,9 @@ class sale_order(osv.osv): context = {} if vals.get('name', '/') == '/': vals['name'] = self.pool.get('ir.sequence').get(cr, uid, 'sale.order') or '/' + if vals.get('partner_id') and any(f not in vals for f in ['partner_invoice_id', 'partner_shipping_id', 'pricelist_id']): + defaults = self.onchange_partner_id(cr, uid, [], vals['partner_id'], context)['value'] + vals = dict(defaults, **vals) context.update({'mail_create_nolog': True}) new_id = super(sale_order, self).create(cr, uid, vals, context=context) self.message_post(cr, uid, [new_id], body=_("Quotation created"), context=context) @@ -831,6 +834,24 @@ class sale_order_line(osv.osv): pass return {'value': value} + def create(self, cr, uid, values, context=None): + if values.get('order_id') and values.get('product_id') and any(f not in values for f in ['name', 'price_unit', 'type', 'product_uom_qty', 'product_uom']): + order = self.pool['sale.order'].read(cr, uid, values['order_id'], ['pricelist_id', 'partner_id', 'date_order', 'fiscal_position'], context=context) + defaults = self.product_id_change(cr, uid, [], order['pricelist_id'][0], values['product_id'], + qty=float(values.get('product_uom_qty', False)), + uom=values.get('product_uom', False), + qty_uos=float(values.get('product_uos_qty', False)), + uos=values.get('product_uos', False), + name=values.get('name', False), + partner_id=order['partner_id'][0], + date_order=order['date_order'], + fiscal_position=order['fiscal_position'][0] if order['fiscal_position'] else False, + flag=False, # Force name update + context=context + )['value'] + values = dict(defaults, **values) + return super(sale_order_line, self).create(cr, uid, values, context=context) + def copy_data(self, cr, uid, id, default=None, context=None): if not default: default = {} From d2ca43402ef0bad4a1310142d2212674d3655171 Mon Sep 17 00:00:00 2001 From: Martin Trigaux Date: Fri, 6 Dec 2013 15:22:20 +0100 Subject: [PATCH 24/30] [FIX] orm: inverting the condition seems to work (don't ask why) bzr revid: mat@openerp.com-20131206142220-nfqiyeic9fdkejxy --- openerp/osv/fields.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openerp/osv/fields.py b/openerp/osv/fields.py index c7771bd0327..da09fe0e27e 100644 --- a/openerp/osv/fields.py +++ b/openerp/osv/fields.py @@ -570,8 +570,8 @@ class one2many(_column): else: cr.execute('update '+_table+' set '+self._fields_id+'=null where id=%s', (act[1],)) elif act[0] == 4: - cr.execute("select 1 from {0} where id=%s and {1}!=%s".format(_table, self._fields_id), (act[1], id)) - if cr.fetchone(): + cr.execute("select 1 from {0} where id=%s and {1}=%s".format(_table, self._fields_id), (act[1], id)) + if not cr.fetchone(): # Must use write() to recompute parent_store structure if needed and check access rules obj.write(cr, user, [act[1]], {self._fields_id:id}, context=context or {}) elif act[0] == 5: From 4669f05406b07074c38b4d19c0c2ddf4e9407918 Mon Sep 17 00:00:00 2001 From: Denis Ledoux Date: Fri, 6 Dec 2013 17:23:14 +0100 Subject: [PATCH 25/30] [FIX] ir_attachement: search, if the model of the ir_attachement has been removed, the search ignore the attachement. bzr revid: dle@openerp.com-20131206162314-vjpgtag8qhkl1jhk --- openerp/addons/base/ir/ir_attachment.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openerp/addons/base/ir/ir_attachment.py b/openerp/addons/base/ir/ir_attachment.py index 8031ea8f75e..6bf2266b412 100644 --- a/openerp/addons/base/ir/ir_attachment.py +++ b/openerp/addons/base/ir/ir_attachment.py @@ -242,6 +242,8 @@ class ir_attachment(osv.osv): # performed in batch as much as possible. ima = self.pool.get('ir.model.access') for model, targets in model_attachments.iteritems(): + if model not in self.pool: + continue if not ima.check(cr, uid, model, 'read', False): # remove all corresponding attachment ids for attach_id in itertools.chain(*targets.values()): From aa9efd6dabe3190e7b9841b0c2e95e51a6c0bca7 Mon Sep 17 00:00:00 2001 From: Martin Trigaux Date: Fri, 6 Dec 2013 18:00:12 +0100 Subject: [PATCH 26/30] [FIX] account: correct name_search on account to be validated even at negation added test checking every combinaison of name_search bzr revid: mat@openerp.com-20131206170012-991vs7pa1yzxvav8 --- addons/account/account.py | 23 ++++++----- addons/account/tests/__init__.py | 7 +++- addons/account/tests/test_search.py | 60 +++++++++++++++++++++++++++++ 3 files changed, 78 insertions(+), 12 deletions(-) create mode 100644 addons/account/tests/test_search.py diff --git a/addons/account/account.py b/addons/account/account.py index 5dce6aae3e7..4ccdac59ee8 100644 --- a/addons/account/account.py +++ b/addons/account/account.py @@ -28,7 +28,7 @@ import time import openerp from openerp import SUPERUSER_ID from openerp import pooler, tools -from openerp.osv import fields, osv +from openerp.osv import fields, osv, expression from openerp.tools.translate import _ from openerp.tools.float_utils import float_round @@ -582,15 +582,18 @@ class account_account(osv.osv): except: pass if name: - ids = self.search(cr, user, [('code', '=like', name+"%")]+args, limit=limit) - if not ids: - ids = self.search(cr, user, [('shortcut', '=', name)]+ args, limit=limit) - if not ids: - ids = self.search(cr, user, [('name', operator, name)]+ args, limit=limit) - if not ids and len(name.split()) >= 2: - #Separating code and name of account for searching - operand1,operand2 = name.split(' ',1) #name can contain spaces e.g. OpenERP S.A. - ids = self.search(cr, user, [('code', operator, operand1), ('name', operator, operand2)]+ args, limit=limit) + if operator not in expression.NEGATIVE_TERM_OPERATORS: + ids = self.search(cr, user, ['|', ('code', '=like', name+"%"), '|', ('shortcut', '=', name), ('name', operator, name)]+args, limit=limit) + if not ids and len(name.split()) >= 2: + #Separating code and name of account for searching + operand1,operand2 = name.split(' ',1) #name can contain spaces e.g. OpenERP S.A. + ids = self.search(cr, user, [('code', operator, operand1), ('name', operator, operand2)]+ args, limit=limit) + else: + ids = self.search(cr, user, ['&','!', ('code', '=like', name+"%"), ('name', operator, name)]+args, limit=limit) + # as negation want to restric, do if already have results + if ids and len(name.split()) >= 2: + operand1,operand2 = name.split(' ',1) #name can contain spaces e.g. OpenERP S.A. + ids = self.search(cr, user, [('code', operator, operand1), ('name', operator, operand2), ('id', 'in', ids)]+ args, limit=limit) else: ids = self.search(cr, user, args, context=context, limit=limit) return self.name_get(cr, user, ids, context=context) diff --git a/addons/account/tests/__init__.py b/addons/account/tests/__init__.py index 11fe4186db6..02e9677ae03 100644 --- a/addons/account/tests/__init__.py +++ b/addons/account/tests/__init__.py @@ -1,4 +1,7 @@ from . import test_tax +from . import test_search -fast_suite = [test_tax, - ] +fast_suite = [ + test_tax, + test_search, +] diff --git a/addons/account/tests/test_search.py b/addons/account/tests/test_search.py new file mode 100644 index 00000000000..0e93da0c0bc --- /dev/null +++ b/addons/account/tests/test_search.py @@ -0,0 +1,60 @@ +from openerp.tests.common import TransactionCase + +class TestSearch(TransactionCase): + """Tests for search on name_search (account.account) + + The name search on account.account is quite complexe, make sure + we have all the correct results + """ + + def setUp(self): + super(TestSearch, self).setUp() + cr, uid = self.cr, self.uid + self.account_model = self.registry('account.account') + self.account_type_model = self.registry('account.account.type') + ac_ids = self.account_type_model.search(cr, uid, [], limit=1) + self.atax = (int(self.account_model.create(cr, uid, dict( + name="Tax Received", + code="121", + user_type=ac_ids[0], + ))), "121 Tax Received") + + self.apurchase = (int(self.account_model.create(cr, uid, dict( + name="Purchased Stocks", + code="1101", + user_type=ac_ids[0], + ))), "1101 Purchased Stocks") + + self.asale = (int(self.account_model.create(cr, uid, dict( + name="Product Sales", + code="200", + user_type=ac_ids[0], + ))), "200 Product Sales") + + self.all_ids = [self.atax[0], self.apurchase[0], self.asale[0]] + + def test_name_search(self): + cr, uid = self.cr, self.uid + atax_ids = self.account_model.name_search(cr, uid, name="Tax", operator='ilike', args=[('id', 'in', self.all_ids)]) + self.assertEqual(set([self.atax[0]]), set([a[0] for a in atax_ids]), "name_search 'ilike Tax' should have returned Tax Received account only") + + atax_ids = self.account_model.name_search(cr, uid, name="Tax", operator='not ilike', args=[('id', 'in', self.all_ids)]) + self.assertEqual(set([self.apurchase[0], self.asale[0]]), set([a[0] for a in atax_ids]), "name_search 'not ilike Tax' should have returned all but Tax Received account") + + apur_ids = self.account_model.name_search(cr, uid, name='1101', operator='ilike', args=[('id', 'in', self.all_ids)]) + self.assertEqual(set([self.apurchase[0]]), set([a[0] for a in apur_ids]), "name_search 'ilike 1101' should have returned Purchased Stocks account only") + + apur_ids = self.account_model.name_search(cr, uid, name='1101', operator='not ilike', args=[('id', 'in', self.all_ids)]) + self.assertEqual(set([self.atax[0], self.asale[0]]), set([a[0] for a in apur_ids]), "name_search 'not ilike 1101' should have returned all but Purchased Stocks account") + + asale_ids = self.account_model.name_search(cr, uid, name='200 Sales', operator='ilike', args=[('id', 'in', self.all_ids)]) + self.assertEqual(set([self.asale[0]]), set([a[0] for a in asale_ids]), "name_search 'ilike 200 Sales' should have returned Product Sales account only") + + asale_ids = self.account_model.name_search(cr, uid, name='200 Sales', operator='not ilike', args=[('id', 'in', self.all_ids)]) + self.assertEqual(set([self.atax[0], self.apurchase[0]]), set([a[0] for a in asale_ids]), "name_search 'not ilike 200 Sales' should have returned all but Product Sales account") + + asale_ids = self.account_model.name_search(cr, uid, name='Product Sales', operator='ilike', args=[('id', 'in', self.all_ids)]) + self.assertEqual(set([self.asale[0]]), set([a[0] for a in asale_ids]), "name_search 'ilike Product Sales' should have returned Product Sales account only") + + asale_ids = self.account_model.name_search(cr, uid, name='Product Sales', operator='not ilike', args=[('id', 'in', self.all_ids)]) + self.assertEqual(set([self.atax[0], self.apurchase[0]]), set([a[0] for a in asale_ids]), "name_search 'not ilike Product Sales' should have returned all but Product Sales account") From fb90e7d572a3d0d58f7794eb8556c8a60e7653f0 Mon Sep 17 00:00:00 2001 From: Denis Ledoux Date: Fri, 6 Dec 2013 18:36:02 +0100 Subject: [PATCH 27/30] [FIX]ir_attachement: not self.pool.get(model) instead of model not in self.pool bzr revid: dle@openerp.com-20131206173602-no831oxc6m1kf6lu --- openerp/addons/base/ir/ir_attachment.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openerp/addons/base/ir/ir_attachment.py b/openerp/addons/base/ir/ir_attachment.py index 6bf2266b412..43d13126f3b 100644 --- a/openerp/addons/base/ir/ir_attachment.py +++ b/openerp/addons/base/ir/ir_attachment.py @@ -242,7 +242,7 @@ class ir_attachment(osv.osv): # performed in batch as much as possible. ima = self.pool.get('ir.model.access') for model, targets in model_attachments.iteritems(): - if model not in self.pool: + if not self.pool.get(model): continue if not ima.check(cr, uid, model, 'read', False): # remove all corresponding attachment ids From a092227c6e037a5b05fa1ad74934952102f5588b Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Sun, 8 Dec 2013 05:46:53 +0000 Subject: [PATCH 28/30] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20131207063209-2xi8ba5wu6l6ze00 bzr revid: launchpad_translations_on_behalf_of_openerp-20131208054536-mg4w4d6ljq8ji1nj bzr revid: launchpad_translations_on_behalf_of_openerp-20131207063232-l64v1fhf1qcpxm2l bzr revid: launchpad_translations_on_behalf_of_openerp-20131208054646-zixed7abpuze4qt1 bzr revid: launchpad_translations_on_behalf_of_openerp-20131123062625-f7inv72rtg2kel8g bzr revid: launchpad_translations_on_behalf_of_openerp-20131124054801-1ukcpelfukkvwn60 bzr revid: launchpad_translations_on_behalf_of_openerp-20131125060120-nm8tkfbftg8c88v1 bzr revid: launchpad_translations_on_behalf_of_openerp-20131126060753-jnx5ran2accmo0lh bzr revid: launchpad_translations_on_behalf_of_openerp-20131127054000-wtg675pf33f3bkar bzr revid: launchpad_translations_on_behalf_of_openerp-20131129053028-abszdj4y76smnacb bzr revid: launchpad_translations_on_behalf_of_openerp-20131201054555-3u1m1sy1f2og78nn bzr revid: launchpad_translations_on_behalf_of_openerp-20131202055227-mm70khzdfnp4qcj9 bzr revid: launchpad_translations_on_behalf_of_openerp-20131207063237-vza5vb51xmd2ipl6 bzr revid: launchpad_translations_on_behalf_of_openerp-20131208054653-f4zth8j3iczlzcqz --- addons/account/i18n/hr.po | 10 +-- addons/account/i18n/nl.po | 8 +- addons/account/i18n/sl.po | 10 +-- addons/account_asset/i18n/sl.po | 8 +- addons/base_calendar/i18n/sl.po | 12 +-- addons/base_setup/i18n/sl.po | 8 +- addons/board/i18n/ro.po | 40 ++++----- addons/crm_claim/i18n/pl.po | 12 +-- addons/delivery/i18n/hr.po | 52 ++++++++--- addons/email_template/i18n/ro.po | 12 +-- addons/fetchmail/i18n/ro.po | 14 +-- addons/hr_evaluation/i18n/sl.po | 141 +++++++++++++++++------------- addons/hr_holidays/i18n/sl.po | 32 ++++--- addons/hr_payroll/i18n/sl.po | 40 +++++---- addons/hr_timesheet/i18n/sl.po | 21 +++-- addons/mail/i18n/ro.po | 12 +-- addons/mrp/i18n/hr.po | 65 +++++++++++--- addons/portal_crm/i18n/sl.po | 70 +++++++++------ addons/procurement/i18n/ja.po | 42 ++++----- addons/project_issue/i18n/sl.po | 22 ++++- addons/stock/i18n/ja.po | 58 ++++++------ addons/stock_location/i18n/sl.po | 8 +- addons/web/i18n/et.po | 16 ++-- addons/web/i18n/fi.po | 101 +++++++++++---------- addons/web/i18n/ja.po | 20 ++--- addons/web/i18n/ro.po | 32 +++---- addons/web_gantt/i18n/lo.po | 12 +-- addons/web_kanban/i18n/ja.po | 10 +-- addons/web_view_editor/i18n/nl.po | 12 +-- openerp/addons/base/i18n/lv.po | 130 ++++++++++++++------------- openerp/addons/base/i18n/ro.po | 34 +++---- 31 files changed, 606 insertions(+), 458 deletions(-) diff --git a/addons/account/i18n/hr.po b/addons/account/i18n/hr.po index d21e6f39405..c6de0bdb2d3 100644 --- a/addons/account/i18n/hr.po +++ b/addons/account/i18n/hr.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-14 22:29+0000\n" -"PO-Revision-Date: 2013-10-24 07:59+0000\n" -"Last-Translator: Marko Carevic \n" +"PO-Revision-Date: 2013-12-07 13:35+0000\n" +"Last-Translator: Ivica Perić \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 05:53+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-08 05:45+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -10888,7 +10888,7 @@ msgstr "Običan" #: field:account.account.template,type:0 #: field:account.entries.report,type:0 msgid "Internal Type" -msgstr "Vrsta konta" +msgstr "Interni tip" #. module: account #: field:account.subscription.generate,date:0 diff --git a/addons/account/i18n/nl.po b/addons/account/i18n/nl.po index 0ccf9229078..df634adc34f 100644 --- a/addons/account/i18n/nl.po +++ b/addons/account/i18n/nl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-14 22:29+0000\n" -"PO-Revision-Date: 2013-11-28 11:34+0000\n" +"PO-Revision-Date: 2013-12-06 13:55+0000\n" "Last-Translator: Erwin van der Ploeg (BAS Solutions) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-29 05:29+0000\n" -"X-Generator: Launchpad (build 16847)\n" +"X-Launchpad-Export-Date: 2013-12-07 06:32+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -5334,7 +5334,7 @@ msgid "" "You can create one in the menu: \n" "Configuration\\Journals\\Journals." msgstr "" -"Kan geen dagboek van het soort \"%s\" vinden voor dit bedrijf.\n" +"Kan geen dagboek van het soort '%s' vinden voor dit bedrijf.\n" "\n" "U kunt deze aanmaken in het menu:\n" "Instellingen\\Dagboeken\\Dagboeken." diff --git a/addons/account/i18n/sl.po b/addons/account/i18n/sl.po index 22a63e2ef1d..5aa3cf8f9c8 100644 --- a/addons/account/i18n/sl.po +++ b/addons/account/i18n/sl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-14 22:29+0000\n" -"PO-Revision-Date: 2013-11-20 21:52+0000\n" -"Last-Translator: Darja Zorman \n" +"PO-Revision-Date: 2013-12-07 07:36+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 05:53+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-08 05:46+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -10307,7 +10307,7 @@ msgstr "Osnutek računa " #. module: account #: model:ir.ui.menu,name:account.menu_account_general_journal msgid "General Journals" -msgstr "Splošni dnevniki" +msgstr "Dnevniki" #. module: account #: view:account.model:0 diff --git a/addons/account_asset/i18n/sl.po b/addons/account_asset/i18n/sl.po index c799fe374ee..c3a63423d7e 100644 --- a/addons/account_asset/i18n/sl.po +++ b/addons/account_asset/i18n/sl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-21 10:19+0000\n" +"PO-Revision-Date: 2013-12-07 07:39+0000\n" "Last-Translator: Darja Zorman \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-22 06:02+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-08 05:46+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -778,4 +778,4 @@ msgstr "Potrdi osnovno sredstvo" #: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_tree #: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_tree msgid "Asset Hierarchy" -msgstr "Hierarhija osnovnega sredstva" +msgstr "Hierarhija osnovnih sredstev" diff --git a/addons/base_calendar/i18n/sl.po b/addons/base_calendar/i18n/sl.po index 71cf17e5649..17075ff6c20 100644 --- a/addons/base_calendar/i18n/sl.po +++ b/addons/base_calendar/i18n/sl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-10 08:30+0000\n" -"Last-Translator: Darja Zorman \n" +"PO-Revision-Date: 2013-12-07 07:40+0000\n" +"Last-Translator: Dušan Laznik (Mentis) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:02+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-08 05:46+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -560,7 +560,7 @@ msgstr "Zahtevan Odgovor?" #: field:calendar.todo,base_calendar_url:0 #: field:crm.meeting,base_calendar_url:0 msgid "Caldav URL" -msgstr "" +msgstr "Caldav URL" #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_wizard_invite @@ -885,7 +885,7 @@ msgstr "Sestanek s kupcem" msgid "" "Reference to the URIthat points to the directory information corresponding " "to the attendee." -msgstr "" +msgstr "Sklic na URL, ki kaže na ustrezne informacije prisotnega." #. module: base_calendar #: selection:calendar.event,month_list:0 diff --git a/addons/base_setup/i18n/sl.po b/addons/base_setup/i18n/sl.po index 2ccd46a35b0..0ad7d24c177 100644 --- a/addons/base_setup/i18n/sl.po +++ b/addons/base_setup/i18n/sl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-06 14:20+0000\n" +"PO-Revision-Date: 2013-12-07 07:41+0000\n" "Last-Translator: Darja Zorman \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-08 05:46+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -130,7 +130,7 @@ msgstr "Več podjetij" #. module: base_setup #: view:sale.config.settings:0 msgid "On Mail Client" -msgstr "" +msgstr "Poštni odjemalec" #. module: base_setup #: view:base.config.settings:0 diff --git a/addons/board/i18n/ro.po b/addons/board/i18n/ro.po index 7eafc3ed70a..7e9130199e6 100644 --- a/addons/board/i18n/ro.po +++ b/addons/board/i18n/ro.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-01-23 19:52+0000\n" -"Last-Translator: ERPSystems.ro \n" +"PO-Revision-Date: 2013-12-07 07:45+0000\n" +"Last-Translator: Dorin \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:03+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-08 05:46+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create @@ -52,7 +52,7 @@ msgstr "Alegeti formatul tabloului de bord" #: code:addons/board/static/src/xml/board.xml:70 #, python-format msgid "Add" -msgstr "Adauga" +msgstr "Adăugați" #. module: board #. openerp-web @@ -115,19 +115,19 @@ msgid "" " \n" " " msgstr "" -"\n" +"

\n" "

\n" -" Tabloul dumneavoastra de bord este gol.\n" +" Tabloul dumneavoastră de bord este gol.\n" "

\n" -" Pentru a adauga primul raport la acest tablou de bord, " -"mergeti in orice\n" -" meniu, schimbati pe lista sau vizualizare grafic, si " -"faceti click pe 'Adauga la\n" -" Panoul de bord' in optiunile de cautare extinsa.\n" +" Pentru a adaugă primul raport la acest tablou de bord, " +"mergeți în orice\n" +" meniu, schimbați pe lista sau vizualizare grafic, și " +"faceți clic pe 'Adaugă la\n" +" Panoul de bord' în opțiunile de căutare extinsă.\n" "

\n" -" Puteti filtra si grupa datele inainte de a le introduce " -"in\n" -" tabloul de bord folosind optiunile de cautare.\n" +" Puteți filtra și grupa datele înainte de a le introduce " +"în\n" +" tabloul de bord folosind opțiunile de căutare.\n" "

\n" "
\n" " " @@ -137,7 +137,7 @@ msgstr "" #: code:addons/board/static/src/xml/board.xml:6 #, python-format msgid "Reset" -msgstr "Reseteaza" +msgstr "Resetează" #. module: board #: field:board.create,menu_parent_id:0 @@ -149,26 +149,26 @@ msgstr "Meniu principal" #: code:addons/board/static/src/xml/board.xml:8 #, python-format msgid "Change Layout.." -msgstr "Schimba Formatul.." +msgstr "Schimbă formatul.." #. module: board #. openerp-web #: code:addons/board/static/src/js/dashboard.js:93 #, python-format msgid "Edit Layout" -msgstr "Editeaza Formatul" +msgstr "Editează formatul" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:10 #, python-format msgid "Change Layout" -msgstr "Modifica formatul" +msgstr "Modifică formatul" #. module: board #: view:board.create:0 msgid "Cancel" -msgstr "Anuleaza" +msgstr "Renunță" #. module: board #: view:board.create:0 diff --git a/addons/crm_claim/i18n/pl.po b/addons/crm_claim/i18n/pl.po index 2803f949d1e..62de40c0ceb 100644 --- a/addons/crm_claim/i18n/pl.po +++ b/addons/crm_claim/i18n/pl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-12-06 09:42+0000\n" +"Last-Translator: Grzegorz Grzelak (OpenGLOBE.pl) \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: 2013-11-21 06:05+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-07 06:32+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 @@ -144,7 +144,7 @@ msgstr "Wiadomości" #. module: crm_claim #: model:crm.case.categ,name:crm_claim.categ_claim1 msgid "Factual Claims" -msgstr "Reklamacje rzeczowe" +msgstr "Serwis rzeczowy" #. module: crm_claim #: selection:crm.claim,state:0 @@ -687,7 +687,7 @@ msgstr "Wspólne dla wszystkich zespołów" #: view:res.partner:0 #: field:res.partner,claims_ids:0 msgid "Claims" -msgstr "Serwisy" +msgstr "Serwis" #. module: crm_claim #: selection:crm.claim,type_action:0 diff --git a/addons/delivery/i18n/hr.po b/addons/delivery/i18n/hr.po index a410adc9343..6d385985a3b 100644 --- a/addons/delivery/i18n/hr.po +++ b/addons/delivery/i18n/hr.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-16 17:25+0000\n" -"Last-Translator: Ivica Perić \n" +"PO-Revision-Date: 2013-12-07 13:21+0000\n" +"Last-Translator: Krešimir Jeđud \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:07+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-08 05:46+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: delivery #: report:sale.shipping:0 @@ -133,6 +133,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje cjenika dostave za određenu regiju.\n" +"

\n" +" Cjenik dostave omogućava izračun nabavne i prodajne cijene\n" +" dostave sukladno težini proizvoda i ostalim kriterijima.\n" +" Možete definirati nekoliko cjenika za svaku vrstu dostave:\n" +" za državu ili regiju u određenoj državi\n" +"

\n" +" " #. module: delivery #: report:sale.shipping:0 @@ -170,12 +179,12 @@ msgstr "Način Dostave" #: code:addons/delivery/delivery.py:221 #, python-format msgid "No price available!" -msgstr "" +msgstr "Cijena nije dostupna !" #. module: delivery #: model:ir.model,name:delivery.model_stock_move msgid "Stock Move" -msgstr "" +msgstr "Skladišni prijenos" #. module: delivery #: field:stock.picking,carrier_tracking_ref:0 @@ -237,7 +246,7 @@ msgstr "" #. module: delivery #: field:delivery.carrier,partner_id:0 msgid "Transport Company" -msgstr "" +msgstr "Dostavljačka tvrtka" #. module: delivery #: model:ir.model,name:delivery.model_delivery_grid @@ -247,12 +256,12 @@ msgstr "Dostavna Mreža" #. module: delivery #: report:sale.shipping:0 msgid "Invoiced to" -msgstr "" +msgstr "Fakturirano na" #. module: delivery #: model:ir.model,name:delivery.model_stock_picking msgid "Picking List" -msgstr "" +msgstr "Skladišni dokument" #. module: delivery #: field:delivery.grid.line,name:0 @@ -299,12 +308,12 @@ msgstr "Na Pošt. Broj" #: code:addons/delivery/delivery.py:147 #, python-format msgid "Default price" -msgstr "" +msgstr "Predefinirana cijena" #. module: delivery #: field:delivery.carrier,normal_price:0 msgid "Normal Price" -msgstr "" +msgstr "Standardna cijena" #. module: delivery #: report:sale.shipping:0 @@ -379,7 +388,7 @@ msgstr "Aktivno" #. module: delivery #: report:sale.shipping:0 msgid "Shipping Date" -msgstr "" +msgstr "Datum Otpreme" #. module: delivery #: field:delivery.carrier,product_id:0 @@ -427,6 +436,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje novog načina dostave. \n" +"

\n" +" Svaki dostavljač (npr. UPS, Overseas ...) može imati više " +"vrsta dostave (npr.\n" +" Ekspresna dostava, Standardna dostava) sa različitim " +"cijenama.\n" +"

\n" +" Svaka metoda dostave omogućava automatski izračun cijene " +"dostave\n" +" sukladno postavkama; na prodajnom nalogu (baziranom na " +"ponudi) \n" +" ili računu (baziran na otpremnicama).\n" +"

\n" +" " #. module: delivery #: field:delivery.grid.line,max_value:0 @@ -526,7 +550,7 @@ msgstr "" #. module: delivery #: field:delivery.carrier,use_detailed_pricelist:0 msgid "Advanced Pricing per Destination" -msgstr "" +msgstr "Napredna cijene po odredištu" #. module: delivery #: view:delivery.carrier:0 @@ -542,7 +566,7 @@ msgstr "Prijevoznik" #: model:ir.actions.act_window,name:delivery.action_delivery_carrier_form #: model:ir.ui.menu,name:delivery.menu_action_delivery_carrier_form msgid "Delivery Methods" -msgstr "" +msgstr "Načini dostave" #. module: delivery #: code:addons/delivery/sale.py:57 diff --git a/addons/email_template/i18n/ro.po b/addons/email_template/i18n/ro.po index f0db4737c57..04842e77221 100644 --- a/addons/email_template/i18n/ro.po +++ b/addons/email_template/i18n/ro.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-03-13 18:52+0000\n" -"Last-Translator: ERPSystems.ro \n" +"PO-Revision-Date: 2013-12-06 20:25+0000\n" +"Last-Translator: Dorin \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:08+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-07 06:32+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: email_template #: field:email.template,email_from:0 @@ -57,7 +57,7 @@ msgstr "" #: field:email.template,mail_server_id:0 #: field:email_template.preview,mail_server_id:0 msgid "Outgoing Mail Server" -msgstr "Server Iesire E-mail-uri" +msgstr "Server Ieșire E-mail-uri" #. module: email_template #: help:email.template,ref_ir_act_window:0 @@ -73,7 +73,7 @@ msgstr "" #: field:email.template,model_object_field:0 #: field:email_template.preview,model_object_field:0 msgid "Field" -msgstr "Camp" +msgstr "Câmp" #. module: email_template #: view:email.template:0 diff --git a/addons/fetchmail/i18n/ro.po b/addons/fetchmail/i18n/ro.po index 8ec13926af3..225d25fe2c3 100644 --- a/addons/fetchmail/i18n/ro.po +++ b/addons/fetchmail/i18n/ro.po @@ -8,19 +8,19 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-01-23 21:38+0000\n" -"Last-Translator: ERPSystems.ro \n" +"PO-Revision-Date: 2013-12-07 04:16+0000\n" +"Last-Translator: Dorin \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:09+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-08 05:46+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 msgid "Confirmed" -msgstr "Confirmat(a)" +msgstr "Confirmat(ă)" #. module: fetchmail #: field:fetchmail.server,server:0 @@ -50,7 +50,7 @@ msgstr "" #. module: fetchmail #: field:fetchmail.server,attach:0 msgid "Keep Attachments" -msgstr "Pastrati Atasamentele" +msgstr "Pastrați Atașamentele" #. module: fetchmail #: field:fetchmail.server,is_ssl:0 @@ -76,7 +76,7 @@ msgstr "Configureaza gateway intrare email-uri" #. module: fetchmail #: view:fetchmail.server:0 msgid "Fetch Now" -msgstr "Aduceti acum" +msgstr "Aduceți acum" #. module: fetchmail #: model:ir.actions.act_window,name:fetchmail.action_email_server_tree diff --git a/addons/hr_evaluation/i18n/sl.po b/addons/hr_evaluation/i18n/sl.po index 3988c8070ff..b6d276b40ef 100644 --- a/addons/hr_evaluation/i18n/sl.po +++ b/addons/hr_evaluation/i18n/sl.po @@ -8,24 +8,24 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-28 10:26+0000\n" +"PO-Revision-Date: 2013-12-07 09:07+0000\n" "Last-Translator: Darja Zorman \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-29 05:29+0000\n" -"X-Generator: Launchpad (build 16847)\n" +"X-Launchpad-Export-Date: 2013-12-08 05:46+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 msgid "Send an anonymous summary to the manager" -msgstr "" +msgstr "Pošlji anonimni povzetek vodji" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Start Appraisal" -msgstr "" +msgstr "Prični ocenjevanje" #. module: hr_evaluation #: view:hr.evaluation.interview:0 @@ -37,13 +37,13 @@ msgstr "Združeno po..." #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Cancel Appraisal" -msgstr "" +msgstr "Prekliči ocenjevanje" #. module: hr_evaluation #: field:hr.evaluation.interview,request_id:0 #: field:hr.evaluation.report,request_id:0 msgid "Request_id" -msgstr "" +msgstr "Id zahevka" #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -53,7 +53,7 @@ msgstr "Marec" #. module: hr_evaluation #: field:hr.evaluation.report,delay_date:0 msgid "Delay to Start" -msgstr "" +msgstr "Zamuda do pričetka" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -71,7 +71,7 @@ msgstr "Podjetje" #: field:hr.evaluation.interview,evaluation_id:0 #: field:hr_evaluation.plan.phase,survey_id:0 msgid "Appraisal Form" -msgstr "" +msgstr "Obrazec ocenjevanja" #. module: hr_evaluation #: view:hr.evaluation.report:0 @@ -83,7 +83,7 @@ msgstr "Dan" #: view:hr_evaluation.plan:0 #: field:hr_evaluation.plan,phase_ids:0 msgid "Appraisal Phases" -msgstr "" +msgstr "Faze ocenjevanja" #. module: hr_evaluation #: view:hr.evaluation.interview:0 @@ -101,12 +101,12 @@ msgstr "" #: view:hr.employee:0 #: model:ir.ui.menu,name:hr_evaluation.menu_open_view_hr_evaluation_tree msgid "Appraisals" -msgstr "" +msgstr "Ocenjevanja" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid "(eval_name)s:Appraisal Name" -msgstr "" +msgstr "(eval_name)s:ime ocenitve" #. module: hr_evaluation #: field:hr.evaluation.interview,message_ids:0 @@ -117,7 +117,7 @@ msgstr "Sporočila" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid "Mail Body" -msgstr "" +msgstr "Vsebina elektronskega sporočila" #. module: hr_evaluation #: field:hr_evaluation.plan.phase,wait:0 @@ -127,7 +127,7 @@ msgstr "" #. module: hr_evaluation #: model:ir.model,name:hr_evaluation.model_hr_evaluation_evaluation msgid "Employee Appraisal" -msgstr "" +msgstr "Ocenjevanje zaposlenega" #. module: hr_evaluation #: selection:hr.evaluation.report,state:0 @@ -139,14 +139,14 @@ msgstr "Preklicano" #: selection:hr.evaluation.report,rating:0 #: selection:hr_evaluation.evaluation,rating:0 msgid "Did not meet expectations" -msgstr "" +msgstr "Ni zadostil pričakovanj" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 #: model:ir.actions.act_window,name:hr_evaluation.open_view_hr_evaluation_tree #: model:ir.ui.menu,name:hr_evaluation.menu_eval_hr msgid "Appraisal" -msgstr "" +msgstr "Ocenjevanje" #. module: hr_evaluation #: help:hr.evaluation.interview,message_unread:0 @@ -157,7 +157,7 @@ msgstr "Če je izbrano, zahtevajo nova sporočila vašo pozornost." #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid "Send to Managers" -msgstr "" +msgstr "Pošlji vodjem" #. module: hr_evaluation #: field:hr_evaluation.evaluation,date_close:0 @@ -167,12 +167,12 @@ msgstr "Končni datum" #. module: hr_evaluation #: field:hr_evaluation.plan,month_first:0 msgid "First Appraisal in (months)" -msgstr "" +msgstr "Prva ocenitev v (meseci)" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid "Send to Employees" -msgstr "" +msgstr "Pošlji zaposlenim" #. module: hr_evaluation #: code:addons/hr_evaluation/hr_evaluation.py:84 @@ -198,7 +198,7 @@ msgstr "" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Appraisal that are in Plan In Progress state" -msgstr "" +msgstr "Planirana ocenjevanja v obdelavi" #. module: hr_evaluation #: help:hr.evaluation.interview,message_summary:0 @@ -240,23 +240,23 @@ msgstr "survey.request" #. module: hr_evaluation #: view:hr.evaluation.interview:0 msgid "Cancel Survey" -msgstr "" +msgstr "Prekliči anketo" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid "(date)s: Current Date" -msgstr "" +msgstr "(date)s: Trenutni datum" #. module: hr_evaluation #: model:ir.actions.act_window,name:hr_evaluation.act_hr_employee_2_hr__evaluation_interview msgid "Interviews" -msgstr "" +msgstr "Razgovori" #. module: hr_evaluation #: code:addons/hr_evaluation/hr_evaluation.py:83 #, python-format msgid "Regarding " -msgstr "" +msgstr "Glede na " #. module: hr_evaluation #: field:hr.evaluation.interview,message_follower_ids:0 @@ -293,13 +293,14 @@ msgstr "Elektronska pošta" #: selection:hr.evaluation.report,rating:0 #: selection:hr_evaluation.evaluation,rating:0 msgid "Exceeds expectations" -msgstr "" +msgstr "Presega pričakovanja" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,mail_feature:0 msgid "" "Check this box if you want to send mail to employees coming under this phase" msgstr "" +"Kliknite okence, če želite poslati elektronsko sporočilo zaposlenim s te faze" #. module: hr_evaluation #: view:hr.evaluation.report:0 @@ -309,23 +310,23 @@ msgstr "Ustvarjeno dne" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_answer_manager:0 msgid "Send all answers to the manager" -msgstr "" +msgstr "Pošlji vse odgovore vodji" #. module: hr_evaluation #: selection:hr.evaluation.report,state:0 #: selection:hr_evaluation.evaluation,state:0 msgid "Plan In Progress" -msgstr "" +msgstr "Plan v obdelavi" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Public Notes" -msgstr "" +msgstr "Javne beležke" #. module: hr_evaluation #: view:hr.evaluation.interview:0 msgid "Send Reminder Email" -msgstr "" +msgstr "Pošlji opomnik po elektronski pošti" #. module: hr_evaluation #: view:hr.evaluation.report:0 @@ -336,7 +337,7 @@ msgstr "" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Print Interview" -msgstr "" +msgstr "Natisni vprašalnik" #. module: hr_evaluation #: field:hr.evaluation.report,closed:0 @@ -347,13 +348,13 @@ msgstr "zaprto" #: selection:hr.evaluation.report,rating:0 #: selection:hr_evaluation.evaluation,rating:0 msgid "Meet expectations" -msgstr "" +msgstr "Ustreza pričakovanjem" #. module: hr_evaluation #: view:hr.evaluation.report:0 #: field:hr.evaluation.report,nbr:0 msgid "# of Requests" -msgstr "" +msgstr "# zahtevkov" #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -372,7 +373,7 @@ msgstr "Status" #. module: hr_evaluation #: model:ir.actions.act_window,name:hr_evaluation.action_evaluation_plans_installer msgid "Review Appraisal Plans" -msgstr "" +msgstr "Pregled plana ocenjevanja" #. module: hr_evaluation #: model:ir.actions.act_window,help:hr_evaluation.action_evaluation_plans_installer @@ -389,6 +390,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za definiranje novega plana ocenjevanja.\n" +"

\n" +" Plane ocenjevanja lahko določite (npr: prvo ocenjevanje po 6 " +"\n" +" mesecih, potem vsako leto). Potem je lahko vsak zaposleni " +"povezan\n" +" s planom ocenjevanja, tako da OpenERP avtomatično generira\n" +" anketna vprašanja vodje in/ali podrejenim.\n" +"

\n" +" " #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -398,12 +410,12 @@ msgstr "" #. module: hr_evaluation #: field:hr_evaluation.evaluation,note_action:0 msgid "Action Plan" -msgstr "" +msgstr "Načrt aktivnosti" #. module: hr_evaluation #: model:ir.ui.menu,name:hr_evaluation.menu_eval_hr_config msgid "Periodic Appraisal" -msgstr "" +msgstr "Periodično ocenjevanje" #. module: hr_evaluation #: field:hr_evaluation.plan,month_next:0 @@ -414,7 +426,7 @@ msgstr "" #: selection:hr.evaluation.report,rating:0 #: selection:hr_evaluation.evaluation,rating:0 msgid "Significantly exceeds expectations" -msgstr "" +msgstr "Opazno presega pričakovanja" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -424,13 +436,13 @@ msgstr "V teku" #. module: hr_evaluation #: view:hr.evaluation.interview:0 msgid "Interview Request" -msgstr "" +msgstr "Zahteva za razgovor" #. module: hr_evaluation #: field:hr_evaluation.plan.phase,send_answer_employee:0 #: field:hr_evaluation.plan.phase,send_answer_manager:0 msgid "All Answers" -msgstr "" +msgstr "Vsi odgovori" #. module: hr_evaluation #: view:hr.evaluation.interview:0 @@ -462,12 +474,12 @@ msgstr "Grupiraj po..." #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid "Mail Settings" -msgstr "" +msgstr "Nastavitve elektronske pošte" #. module: hr_evaluation #: model:ir.actions.act_window,name:hr_evaluation.evaluation_reminders msgid "Appraisal Reminders" -msgstr "" +msgstr "Opomniki ocenjevanja" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,wait:0 @@ -475,6 +487,8 @@ msgid "" "Check this box if you want to wait that all preceding phases are finished " "before launching this phase." msgstr "" +"Označite okence, če želite počakati, da so vse predhodne faze zaključne " +"preden se prične ta faza." #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -487,6 +501,7 @@ msgid "" "If the evaluation does not meet the expectations, you can proposean action " "plan" msgstr "" +"Če ocenitev ne ustreza pričakovanjem, lahko predvidite akcijski načrt" #. module: hr_evaluation #: selection:hr.evaluation.report,state:0 @@ -497,7 +512,7 @@ msgstr "Osnutek" #: field:hr_evaluation.plan.phase,send_anonymous_employee:0 #: field:hr_evaluation.plan.phase,send_anonymous_manager:0 msgid "Anonymous Summary" -msgstr "" +msgstr "Anonimni povzetek" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -512,12 +527,12 @@ msgstr "Na čakanju" #: field:hr_evaluation.plan.phase,plan_id:0 #: model:ir.model,name:hr_evaluation.model_hr_evaluation_plan msgid "Appraisal Plan" -msgstr "" +msgstr "Načrt ocenjevanja" #. module: hr_evaluation #: view:hr.evaluation.interview:0 msgid "Print Survey" -msgstr "" +msgstr "Tisk ankete" #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -533,12 +548,12 @@ msgstr "Junij" #: selection:hr.evaluation.report,rating:0 #: selection:hr_evaluation.evaluation,rating:0 msgid "Significantly bellow expectations" -msgstr "" +msgstr "Znatno pod pričakovanji" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Validate Appraisal" -msgstr "" +msgstr "Potrditev ocenitve" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -577,7 +592,7 @@ msgstr "Razširjeni filtri..." #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_employee:0 msgid "Send an anonymous summary to the employee" -msgstr "" +msgstr "Pošlji anonimni povzetek zaposlenemu" #. module: hr_evaluation #: model:ir.model,name:hr_evaluation.model_hr_evaluation_plan_phase @@ -592,7 +607,7 @@ msgstr "Januar" #. module: hr_evaluation #: view:hr.employee:0 msgid "Appraisal Interviews" -msgstr "" +msgstr "Ocenjevalni vprašalniki" #. module: hr_evaluation #: field:hr.evaluation.interview,message_summary:0 @@ -619,7 +634,7 @@ msgstr "Dejanje" #: view:hr.evaluation.report:0 #: selection:hr.evaluation.report,state:0 msgid "Final Validation" -msgstr "" +msgstr "Končno ovrednotenje" #. module: hr_evaluation #: selection:hr_evaluation.evaluation,state:0 @@ -631,17 +646,17 @@ msgstr "" #: model:ir.actions.act_window,name:hr_evaluation.action_evaluation_report_all #: model:ir.ui.menu,name:hr_evaluation.menu_evaluation_report_all msgid "Appraisal Analysis" -msgstr "" +msgstr "Analiza ocenitev" #. module: hr_evaluation #: field:hr_evaluation.evaluation,date:0 msgid "Appraisal Deadline" -msgstr "" +msgstr "Končni rok ocenitve" #. module: hr_evaluation #: field:hr.evaluation.report,rating:0 msgid "Overall Rating" -msgstr "" +msgstr "Splošna ocena" #. module: hr_evaluation #: view:hr.evaluation.interview:0 @@ -657,7 +672,7 @@ msgstr "" #. module: hr_evaluation #: view:hr.evaluation.interview:0 msgid "Deadline Date" -msgstr "" +msgstr "Končni rok" #. module: hr_evaluation #: help:hr_evaluation.evaluation,rating:0 @@ -677,7 +692,7 @@ msgstr "Splošno" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_answer_employee:0 msgid "Send all answers to the employee" -msgstr "" +msgstr "Pošlji vse odgovore zaposlenemu" #. module: hr_evaluation #: view:hr.evaluation.interview:0 @@ -693,7 +708,7 @@ msgstr "Končano" #: model:ir.actions.act_window,name:hr_evaluation.open_view_hr_evaluation_plan_tree #: model:ir.ui.menu,name:hr_evaluation.menu_open_view_hr_evaluation_plan_tree msgid "Appraisal Plans" -msgstr "" +msgstr "Plani ocenjevanja" #. module: hr_evaluation #: model:ir.model,name:hr_evaluation.model_hr_evaluation_interview @@ -718,7 +733,7 @@ msgstr "" #. module: hr_evaluation #: field:hr_evaluation.plan.phase,mail_feature:0 msgid "Send mail for this phase" -msgstr "" +msgstr "Pošlji elektronsko sporočilo za to fazo" #. module: hr_evaluation #: field:hr_evaluation.plan.phase,email_subject:0 @@ -740,7 +755,7 @@ msgstr "" #. module: hr_evaluation #: field:hr.evaluation.report,overpass_delay:0 msgid "Overpassed Deadline" -msgstr "" +msgstr "Presežen končni rok" #. module: hr_evaluation #: help:hr_evaluation.plan,month_next:0 @@ -748,6 +763,8 @@ msgid "" "The number of month that depicts the delay between each evaluation of this " "plan (after the first one)." msgstr "" +"Število mesecev, ki prikazuje zamudo med posameznimi ocenitvami tega plana " +"(po prvem)." #. module: hr_evaluation #: selection:hr_evaluation.plan.phase,action:0 @@ -791,7 +808,7 @@ msgstr "Interni zaznamki" #. module: hr_evaluation #: selection:hr_evaluation.plan.phase,action:0 msgid "Final Interview" -msgstr "" +msgstr "Končni razgovor" #. module: hr_evaluation #: field:hr_evaluation.plan.phase,name:0 @@ -817,7 +834,7 @@ msgstr "" #. module: hr_evaluation #: field:survey.request,is_evaluation:0 msgid "Is Appraisal?" -msgstr "" +msgstr "Je ocenjevanje?" #. module: hr_evaluation #: code:addons/hr_evaluation/hr_evaluation.py:320 @@ -828,7 +845,7 @@ msgstr "" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Appraisal Summary..." -msgstr "" +msgstr "Pozvetek ocenitve..." #. module: hr_evaluation #: field:hr.evaluation.interview,user_to_review_id:0 @@ -897,7 +914,7 @@ msgstr "(user_signature)s: Ime uporabnika" #: model:ir.actions.act_window,name:hr_evaluation.action_hr_evaluation_interview_tree #: model:ir.ui.menu,name:hr_evaluation.menu_open_hr_evaluation_interview_requests msgid "Interview Requests" -msgstr "" +msgstr "Zahtevki za razgovor" #. module: hr_evaluation #: field:hr.evaluation.report,create_date:0 @@ -913,7 +930,7 @@ msgstr "Leto" #. module: hr_evaluation #: field:hr_evaluation.evaluation,note_summary:0 msgid "Appraisal Summary" -msgstr "" +msgstr "Povzetek ocenitve" #. module: hr_evaluation #: field:hr.employee,evaluation_date:0 @@ -923,7 +940,7 @@ msgstr "Naslednji datum ocenitve" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Action Plan..." -msgstr "" +msgstr "Plan aktivnosti..." #~ msgid "Cancel" #~ msgstr "Prekliči" diff --git a/addons/hr_holidays/i18n/sl.po b/addons/hr_holidays/i18n/sl.po index 9aac76d7b35..9bbd213e934 100644 --- a/addons/hr_holidays/i18n/sl.po +++ b/addons/hr_holidays/i18n/sl.po @@ -8,29 +8,29 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-22 10:12+0000\n" +"PO-Revision-Date: 2013-12-07 09:01+0000\n" "Last-Translator: Darja Zorman \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-23 06:26+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-08 05:46+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Blue" -msgstr "" +msgstr "Modro" #. module: hr_holidays #: field:hr.holidays,linked_request_ids:0 msgid "Linked Requests" -msgstr "" +msgstr "Povezan zahtevek" #. module: hr_holidays #: selection:hr.employee,current_leave_state:0 msgid "Waiting Second Approval" -msgstr "" +msgstr "Čakanje na drugo potrditev" #. module: hr_holidays #: code:addons/hr_holidays/hr_holidays.py:309 @@ -39,6 +39,8 @@ msgid "" "You cannot modify a leave request that has been approved. Contact a human " "resource manager." msgstr "" +"Ne morete spremeniti zahtevka za odhod, ki je bil potrjen. Kontaktirajte " +"vodjo kadrovske službe." #. module: hr_holidays #: help:hr.holidays.status,remaining_leaves:0 @@ -53,7 +55,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Group By..." -msgstr "" +msgstr "Združi po ..." #. module: hr_holidays #: field:hr.holidays,holiday_type:0 @@ -63,13 +65,13 @@ msgstr "" #. module: hr_holidays #: field:hr.employee,leave_date_from:0 msgid "From Date" -msgstr "" +msgstr "Od datuma" #. module: hr_holidays #: view:hr.holidays:0 #: field:hr.holidays,department_id:0 msgid "Department" -msgstr "" +msgstr "Oddelek" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.request_approve_allocation @@ -80,7 +82,7 @@ msgstr "" #. module: hr_holidays #: help:hr.holidays,category_id:0 msgid "Category of Employee" -msgstr "" +msgstr "Kategorija zaposlenega" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -90,7 +92,7 @@ msgstr "Rjava" #. module: hr_holidays #: view:hr.holidays:0 msgid "Remaining Days" -msgstr "" +msgstr "Preostali dnevi" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -100,7 +102,7 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays,holiday_type:0 msgid "By Employee" -msgstr "" +msgstr "Po zaposlenih" #. module: hr_holidays #: view:hr.holidays:0 @@ -108,11 +110,13 @@ msgid "" "The default duration interval between the start date and the end date is 8 " "hours. Feel free to adapt it to your needs." msgstr "" +"Privzeto trajanje med začetnim in končnim datumom je 8 ur. Prilagodite, če " +"je potrebno." #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_refused msgid "Request refused" -msgstr "" +msgstr "Zahtevek zavrnjen" #. module: hr_holidays #: field:hr.holidays,number_of_days_temp:0 @@ -122,7 +126,7 @@ msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "to" -msgstr "" +msgstr "za" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 diff --git a/addons/hr_payroll/i18n/sl.po b/addons/hr_payroll/i18n/sl.po index 0887fec1a69..5294aaef1fc 100644 --- a/addons/hr_payroll/i18n/sl.po +++ b/addons/hr_payroll/i18n/sl.po @@ -8,20 +8,20 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-12-04 11:06+0000\n" +"PO-Revision-Date: 2013-12-07 07:13+0000\n" "Last-Translator: Darja Zorman \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-12-05 06:10+0000\n" -"X-Generator: Launchpad (build 16863)\n" +"X-Launchpad-Export-Date: 2013-12-08 05:46+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 #: field:hr.salary.rule,condition_select:0 msgid "Condition Based on" -msgstr "" +msgstr "Pogoji temeljijo na" #. module: hr_payroll #: selection:hr.contract,schedule_pay:0 @@ -38,7 +38,7 @@ msgstr "Stopnja (%)" #: model:ir.model,name:hr_payroll.model_hr_salary_rule_category #: report:paylip.details:0 msgid "Salary Rule Category" -msgstr "" +msgstr "Kategorija plačnih pravil" #. module: hr_payroll #: field:hr.payslip.worked_days,number_of_days:0 @@ -51,6 +51,8 @@ msgid "" "Linking a salary category to its parent is used only for the reporting " "purpose." msgstr "" +"Povezava plačne kategorije z nadrejenim se uporablja samo za potrebe " +"poročanja." #. module: hr_payroll #: view:hr.payslip:0 @@ -69,13 +71,13 @@ msgstr "Pokrajine" #: view:hr.salary.rule:0 #: field:hr.salary.rule,input_ids:0 msgid "Inputs" -msgstr "" +msgstr "Vnosi" #. module: hr_payroll #: field:hr.payslip.line,parent_rule_id:0 #: field:hr.salary.rule,parent_rule_id:0 msgid "Parent Salary Rule" -msgstr "" +msgstr "Nadrejeno plačno pravilo" #. module: hr_payroll #: view:hr.employee:0 @@ -185,7 +187,7 @@ msgstr "Vsa podrejena pravila" #: view:hr.payslip:0 #: view:hr.salary.rule:0 msgid "Input Data" -msgstr "" +msgstr "Vhodni podatki" #. module: hr_payroll #: constraint:hr.payslip:0 @@ -272,13 +274,13 @@ msgstr "Sklic" #. module: hr_payroll #: view:hr.payslip:0 msgid "Draft Slip" -msgstr "" +msgstr "Osnutek kuverte" #. module: hr_payroll #: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" -msgstr "" +msgstr "Normalni delovni dan plačan 100%" #. module: hr_payroll #: field:hr.payslip.line,condition_range_max:0 @@ -305,7 +307,7 @@ msgstr "Partner" #. module: hr_payroll #: view:hr.payslip:0 msgid "Total Working Days" -msgstr "" +msgstr "Skupaj delovnih dni" #. module: hr_payroll #: constraint:hr.payroll.structure:0 @@ -473,13 +475,13 @@ msgstr "Zavrnjeno" #: model:ir.actions.act_window,name:hr_payroll.action_salary_rule_form #: model:ir.ui.menu,name:hr_payroll.menu_action_hr_salary_rule_form msgid "Salary Rules" -msgstr "" +msgstr "Plačna pravila" #. module: hr_payroll #: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " -msgstr "" +msgstr "Povračilo: " #. module: hr_payroll #: model:ir.model,name:hr_payroll.model_payslip_lines_contribution_register @@ -505,7 +507,7 @@ msgstr "Se izpiše na plačilni kuverti" #: field:hr.salary.rule,amount_fix:0 #: selection:hr.salary.rule,amount_select:0 msgid "Fixed Amount" -msgstr "" +msgstr "Fiksni znesek" #. module: hr_payroll #: code:addons/hr_payroll/hr_payroll.py:370 @@ -520,6 +522,8 @@ msgid "" "If the active field is set to false, it will allow you to hide the salary " "rule without removing it." msgstr "" +"Če je aktivno polje neoznačeno, bo dovoljeno skriti plačno pravilo, ne da ga " +"brišete." #. module: hr_payroll #: field:hr.payslip,state:0 @@ -535,7 +539,7 @@ msgstr "" #. module: hr_payroll #: field:hr.payslip,details_by_salary_rule_category:0 msgid "Details by Salary Rule Category" -msgstr "" +msgstr "Podrobnosti po kategorijah plačnih pravil" #. module: hr_payroll #: model:ir.actions.act_window,name:hr_payroll.action_payslip_lines_contribution_register @@ -556,7 +560,7 @@ msgstr "Število ur" #. module: hr_payroll #: view:hr.payslip:0 msgid "PaySlip Batch" -msgstr "" +msgstr "Paket plačilnih kuvert" #. module: hr_payroll #: field:hr.payslip.line,condition_range_min:0 @@ -568,7 +572,7 @@ msgstr "" #: field:hr.payslip.line,child_ids:0 #: field:hr.salary.rule,child_ids:0 msgid "Child Salary Rule" -msgstr "" +msgstr "Podrejeno plačno pravilo" #. module: hr_payroll #: report:contribution.register.lines:0 @@ -590,7 +594,7 @@ msgstr "Območje" #: model:ir.actions.act_window,name:hr_payroll.action_view_hr_payroll_structure_tree #: model:ir.ui.menu,name:hr_payroll.menu_hr_payroll_structure_tree msgid "Salary Structures Hierarchy" -msgstr "" +msgstr "Hierarhija plačne strukture" #. module: hr_payroll #: help:hr.employee,total_wage:0 diff --git a/addons/hr_timesheet/i18n/sl.po b/addons/hr_timesheet/i18n/sl.po index c3f79258bb3..b2532396c55 100644 --- a/addons/hr_timesheet/i18n/sl.po +++ b/addons/hr_timesheet/i18n/sl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-11 13:27+0000\n" +"PO-Revision-Date: 2013-12-07 08:06+0000\n" "Last-Translator: Darja Zorman \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:13+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-08 05:46+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -100,7 +100,7 @@ msgstr "Časovnica" #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Please define employee for this user!" -msgstr "" +msgstr "Prosimo, določite zaposlenega za tega uporabnika!" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:44 @@ -163,7 +163,7 @@ msgstr "" #: code:addons/hr_timesheet/wizard/hr_timesheet_sign_in_out.py:132 #, python-format msgid "Please define employee for your user." -msgstr "" +msgstr "Prosimo, določite zaposlenega za vašega uporabnika." #. module: hr_timesheet #: model:ir.actions.act_window,name:hr_timesheet.act_analytic_cost_revenue @@ -241,6 +241,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za beleženje aktivnosti.\n" +"

\n" +" Vaše delovne ure lahko beležite in spremljate po projektu " +"vsak\n" +" dan. Čas, porabljen na projektu bo postal strošek v " +"analitičnem\n" +" knjigovodstvu/pogodbi in je lahko zaračunan (fakturiran)\n" +" kupcu, če se to zahteva.\n" +"

\n" +" " #. module: hr_timesheet #: view:hr.analytical.timesheet.employee:0 diff --git a/addons/mail/i18n/ro.po b/addons/mail/i18n/ro.po index 9a46893d319..c742937f6b0 100644 --- a/addons/mail/i18n/ro.po +++ b/addons/mail/i18n/ro.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-23 21:01+0000\n" +"PO-Revision-Date: 2013-12-07 06:08+0000\n" "Last-Translator: Dorin \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-24 05:47+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-08 05:46+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: mail #: view:mail.followers:0 @@ -954,10 +954,10 @@ msgid "" " " msgstr "" "

\n" -" Bună Treabă! Căsuța dumneavoastră postala este " +" Bună Treabă! Căsuța dumneavoastră poștală este " "goală.\n" "

\n" -" Căsuța dumneavoastră poștala conține mesaje sau email-" +" Căsuța dumneavoastră poștală conține mesaje sau email-" "uri personale care v-au fost trimise dumneavoastră,\n" " precum și informații legate de documentele sau " "persoanele pe care le urmăriți.\n" @@ -1471,7 +1471,7 @@ msgstr "Cc (copie carbon)" #. module: mail #: help:mail.notification,starred:0 msgid "Starred message that goes into the todo mailbox" -msgstr "Mesaj marcat cu asterisc care ajunge în cutia poștala de efectuat" +msgstr "Mesaj marcat cu asterisc care ajunge în cutia poștală de efectuat" #. module: mail #: view:mail.group:0 diff --git a/addons/mrp/i18n/hr.po b/addons/mrp/i18n/hr.po index 78972a61a0c..47ac7263e29 100644 --- a/addons/mrp/i18n/hr.po +++ b/addons/mrp/i18n/hr.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-10-25 10:54+0000\n" +"PO-Revision-Date: 2013-12-07 14:07+0000\n" "Last-Translator: Krešimir Jeđud \n" "Language-Team: Croatian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:21+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-08 05:46+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -198,7 +198,7 @@ msgstr "Za nabavljeni materijal" #. module: mrp #: model:ir.ui.menu,name:mrp.menu_mrp_production_order_action msgid "Order Planning" -msgstr "" +msgstr "Planiranje proizvodnje" #. module: mrp #: field:mrp.config.settings,module_mrp_operations:0 @@ -209,7 +209,7 @@ msgstr "Detaljno planiranje radova za radne naloge" #: code:addons/mrp/mrp.py:633 #, python-format msgid "Cannot cancel manufacturing order!" -msgstr "" +msgstr "Nije moguće otkazati proizvodni nalog!" #. module: mrp #: field:mrp.workcenter,costs_cycle_account_id:0 @@ -739,6 +739,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje nove komponente sastavnice.\n" +"

\n" +" Komponente sastavnice su dijelovi sastavnica koje se koriste " +"za\n" +" kreiranje glavnih sastavnica. Kroz ovaj izbornik možete " +"pronaći\n" +" u kojim se sastavnicama koristi određena komponenta.\n" +"

\n" +" " #. module: mrp #: constraint:mrp.bom:0 @@ -962,7 +972,7 @@ msgstr "" #. module: mrp #: field:mrp.bom,type:0 msgid "BoM Type" -msgstr "BoM Type" +msgstr "Tip sastavnice" #. module: mrp #: code:addons/mrp/procurement.py:57 @@ -1612,6 +1622,26 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje grupe svojstava.\n" +"

\n" +" Definirajte specifične grupe svojstava koje se mogu " +"dodijeliti\n" +" vašim sastavnicama i prodajnim nalozima. Svojstva " +"dozvoljavaju\n" +" OpenERP-u da automatski odabere ispravnu sastavnicu " +"sukladno\n" +" svojstvima odabranim u prodajnim nalozima.\n" +"

\n" +" Na primjer, grupi svojstava \"Garancija\", imate dva " +"svojstva:\n" +" Garancija 1 godinu,i Garancija 3 godine. Ovisno o odabranom " +"svojstvu\n" +" u prodajnom nalogu, OpenERP će zakazati proizvodnju " +"koristeći\n" +" odgovarajuću sastavnicu.\n" +"

\n" +" " #. module: mrp #: field:mrp.workcenter,capacity_per_cycle:0 @@ -1845,7 +1875,7 @@ msgstr "Time for 1 cycle (hour)" #. module: mrp #: view:mrp.production:0 msgid "Cancel Production" -msgstr "" +msgstr "Otkaži proizvodnju" #. module: mrp #: model:ir.actions.report.xml,name:mrp.report_mrp_production_report @@ -1885,7 +1915,7 @@ msgstr "Greška!" #: view:mrp.bom:0 #, python-format msgid "Components" -msgstr "Components" +msgstr "Komponente" #. module: mrp #: report:bom.structure:0 @@ -1901,12 +1931,12 @@ msgstr "" #. module: mrp #: field:mrp.bom,date_stop:0 msgid "Valid Until" -msgstr "Valid Until" +msgstr "Vrijedi do" #. module: mrp #: field:mrp.bom,date_start:0 msgid "Valid From" -msgstr "Valid From" +msgstr "Vrijedi od" #. module: mrp #: selection:mrp.bom,type:0 @@ -1932,7 +1962,7 @@ msgstr "Količina JP" #. module: mrp #: field:mrp.production,move_prod_id:0 msgid "Product Move" -msgstr "" +msgstr "Prijenos" #. module: mrp #: model:ir.actions.act_window,help:mrp.action_report_in_out_picking_tree @@ -2066,6 +2096,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pritisnite za kreiranje nove sastavnice. \n" +"

\n" +" Sastavnice omogućuju definiranje liste potrenih sirovina\n" +" koje se koriste u procesu proizvodnje;\n" +"

\n" +" OpenERP koristi ove sastavnice kako bi automatski predložio " +"proizvodni\n" +" nalog sukladno potrebama nabavke.\n" +"

\n" +" " #. module: mrp #: field:mrp.routing.workcenter,routing_id:0 @@ -2179,7 +2220,7 @@ msgstr "Product type is Stockable or Consumable." #. module: mrp #: selection:mrp.production,state:0 msgid "Production Started" -msgstr "" +msgstr "Započeta proizvodnja" #. module: mrp #: model:process.node,name:mrp.process_node_procureproducts0 diff --git a/addons/portal_crm/i18n/sl.po b/addons/portal_crm/i18n/sl.po index ca04aec799c..5e6eeb1da76 100644 --- a/addons/portal_crm/i18n/sl.po +++ b/addons/portal_crm/i18n/sl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-01-26 12:47+0000\n" -"Last-Translator: Dušan Laznik (Mentis) \n" +"PO-Revision-Date: 2013-12-07 07:35+0000\n" +"Last-Translator: Darja Zorman \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:25+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-08 05:46+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: portal_crm #: selection:portal_crm.crm_contact_us,type:0 @@ -30,7 +30,7 @@ msgstr "Naziv" #. module: portal_crm #: field:portal_crm.crm_contact_us,probability:0 msgid "Success Rate (%)" -msgstr "" +msgstr "Uspešnost (%)" #. module: portal_crm #: view:portal_crm.crm_contact_us:0 @@ -40,7 +40,7 @@ msgstr "Kontakt" #. module: portal_crm #: field:portal_crm.crm_contact_us,date_action:0 msgid "Next Action Date" -msgstr "" +msgstr "Datum naslednje aktivnosti" #. module: portal_crm #: field:portal_crm.crm_contact_us,fax:0 @@ -70,7 +70,7 @@ msgstr "Prodajalec" #. module: portal_crm #: view:portal_crm.crm_contact_us:0 msgid "Thank you for your interest, we'll respond to your request shortly." -msgstr "" +msgstr "Hvala za vaše zanimanje, v kratkem vam bomo odgovorili." #. module: portal_crm #: selection:portal_crm.crm_contact_us,priority:0 @@ -100,7 +100,7 @@ msgstr "Barvvni index" #. module: portal_crm #: field:portal_crm.crm_contact_us,partner_name:0 msgid "Customer Name" -msgstr "" +msgstr "Ime kupca" #. module: portal_crm #: selection:portal_crm.crm_contact_us,state:0 @@ -115,7 +115,7 @@ msgstr "Če je izbrano, zahtevajo nova sporočila vašo pozornost." #. module: portal_crm #: help:portal_crm.crm_contact_us,channel_id:0 msgid "Communication channel (mail, direct, phone, ...)" -msgstr "" +msgstr "Komunikacijski kanal (elektronska pošta, direktno, telefon, ...)" #. module: portal_crm #: field:portal_crm.crm_contact_us,type_id:0 @@ -131,7 +131,7 @@ msgstr "Reference" #: field:portal_crm.crm_contact_us,date_action_next:0 #: field:portal_crm.crm_contact_us,title_action:0 msgid "Next Action" -msgstr "" +msgstr "Naslednja aktivnost" #. module: portal_crm #: help:portal_crm.crm_contact_us,message_summary:0 @@ -139,6 +139,8 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Povzetek klepeta (število sporočil,..). Ta zbir je v html formatu, da se " +"lahko vključi v kanban poglede." #. module: portal_crm #: field:portal_crm.crm_contact_us,partner_id:0 @@ -148,7 +150,7 @@ msgstr "Partner" #. module: portal_crm #: model:ir.actions.act_window,name:portal_crm.action_contact_us msgid "Contact Us" -msgstr "" +msgstr "Kontakt" #. module: portal_crm #: field:portal_crm.crm_contact_us,name:0 @@ -179,6 +181,7 @@ msgstr "Sledilci" #: help:portal_crm.crm_contact_us,partner_id:0 msgid "Linked partner (optional). Usually created when converting the lead." msgstr "" +"Povezan partner (opcijsko). Običajno je kreiran ob spremembi v priložnost." #. module: portal_crm #: field:portal_crm.crm_contact_us,payment_mode:0 @@ -218,7 +221,7 @@ msgstr "Ustvarjeno dne" #. module: portal_crm #: view:portal_crm.crm_contact_us:0 msgid "Content..." -msgstr "" +msgstr "Vsebina..." #. module: portal_crm #: help:portal_crm.crm_contact_us,opt_out:0 @@ -227,11 +230,15 @@ msgid "" "mailing and marketing campaign. Filter 'Available for Mass Mailing' allows " "users to filter the leads when performing mass mailing." msgstr "" +"Če je označeno opt-out, je ta kontakt zavrnil prejemanje masovnih " +"elektronskih sporočil in marketinških kampanj. Filter 'Dostopen za masovno " +"pošiljanje pošte' omogoča uporabniku filtriranje možnosti pri izvajanju " +"masovnega pošiljanja pošte." #. module: portal_crm #: help:portal_crm.crm_contact_us,type:0 msgid "Type is used to separate Leads and Opportunities" -msgstr "" +msgstr "Tip se uporablja za ločevanje možnosti in priložnosti" #. module: portal_crm #: field:portal_crm.crm_contact_us,categ_ids:0 @@ -261,7 +268,7 @@ msgstr "Stik" #. module: portal_crm #: view:portal_crm.crm_contact_us:0 msgid "Your name..." -msgstr "" +msgstr "Vaše ime..." #. module: portal_crm #: field:portal_crm.crm_contact_us,partner_address_email:0 @@ -281,7 +288,7 @@ msgstr "Naloge" #. module: portal_crm #: view:portal_crm.crm_contact_us:0 msgid "Contact form" -msgstr "" +msgstr "Kontaktni obrazec" #. module: portal_crm #: field:portal_crm.crm_contact_us,company_currency:0 @@ -296,12 +303,12 @@ msgstr "Datum posodobitve" #. module: portal_crm #: view:portal_crm.crm_contact_us:0 msgid "Your email..." -msgstr "" +msgstr "Vaš e-mail..." #. module: portal_crm #: field:portal_crm.crm_contact_us,date_deadline:0 msgid "Expected Closing" -msgstr "" +msgstr "Pričakovan zaključek" #. module: portal_crm #: field:portal_crm.crm_contact_us,ref2:0 @@ -311,7 +318,7 @@ msgstr "Sklic 2" #. module: portal_crm #: field:portal_crm.crm_contact_us,user_email:0 msgid "User Email" -msgstr "" +msgstr "Uporabnikov elektronski naslov" #. module: portal_crm #: field:portal_crm.crm_contact_us,date_open:0 @@ -329,6 +336,8 @@ msgid "" "The name of the future partner company that will be created while converting " "the lead into opportunity" msgstr "" +"Ime bodoče partnerjeve firme, ki bo kreirana ob spremembi možnosti v " +"priložnost" #. module: portal_crm #: field:portal_crm.crm_contact_us,planned_cost:0 @@ -338,7 +347,7 @@ msgstr "Načrtovani stroški" #. module: portal_crm #: help:portal_crm.crm_contact_us,date_deadline:0 msgid "Estimate of the date on which the opportunity will be won." -msgstr "" +msgstr "Ocena datuma, ko bo priložnost pridobljena" #. module: portal_crm #: help:portal_crm.crm_contact_us,email_cc:0 @@ -347,6 +356,9 @@ msgid "" "outbound emails for this record before being sent. Separate multiple email " "addresses with a comma" msgstr "" +"Ti poštni naslovi bodo dodani v CC polje vseh vhodnih in izhodnih sporočil " +"za ta zapis, preden bodo razposlana. V primeru večih elektronskih naslovov " +"jih ločite z vejico." #. module: portal_crm #: selection:portal_crm.crm_contact_us,priority:0 @@ -377,7 +389,7 @@ msgstr "Običajno" #. module: portal_crm #: field:portal_crm.crm_contact_us,email_cc:0 msgid "Global CC" -msgstr "" +msgstr "Globalni CC" #. module: portal_crm #: field:portal_crm.crm_contact_us,street2:0 @@ -407,12 +419,12 @@ msgstr "Aktivno" #. module: portal_crm #: field:portal_crm.crm_contact_us,day_open:0 msgid "Days to Open" -msgstr "" +msgstr "Dni do odprtja" #. module: portal_crm #: field:portal_crm.crm_contact_us,day_close:0 msgid "Days to Close" -msgstr "" +msgstr "Dnevi do končanja" #. module: portal_crm #: field:portal_crm.crm_contact_us,company_ids:0 @@ -427,23 +439,24 @@ msgstr "Povzetek" #. module: portal_crm #: view:portal_crm.crm_contact_us:0 msgid "Subject..." -msgstr "" +msgstr "Zadeva..." #. module: portal_crm #: help:portal_crm.crm_contact_us,section_id:0 msgid "" "When sending mails, the default email address is taken from the sales team." msgstr "" +"Pri pošiljanju elektronske pošte je privzeti naslov tisti od prodajne ekipe." #. module: portal_crm #: field:portal_crm.crm_contact_us,partner_address_name:0 msgid "Partner Contact Name" -msgstr "" +msgstr "Ime kontakta" #. module: portal_crm #: view:portal_crm.crm_contact_us:0 msgid "Your phone number..." -msgstr "" +msgstr "Vaša telefonska številka..." #. module: portal_crm #: view:portal_crm.crm_contact_us:0 @@ -503,6 +516,9 @@ msgid "" "set to 'Done'. If the case needs to be reviewed then the Status is set to " "'Pending'." msgstr "" +"Status je nastavljen na 'Osnutek', ko je primer kreiran. Če je primer v " +"napredovanju, je status spremenjen v 'Odprt'. Ko je primer zaključen, je " +"status 'Končan'. Če je treba primer pregledati, je status 'V urejanju'." #. module: portal_crm #: help:portal_crm.crm_contact_us,message_ids:0 @@ -515,6 +531,8 @@ msgid "" "From which campaign (seminar, marketing campaign, mass mailing, ...) did " "this contact come from?" msgstr "" +"Iz katere kampanje (seminar, marketinška kampanja, masovno pošiljanje pošte " +"...) izvira ta kontakt?" #. module: portal_crm #: selection:portal_crm.crm_contact_us,priority:0 @@ -534,7 +552,7 @@ msgstr "Ulica" #. module: portal_crm #: field:portal_crm.crm_contact_us,date_action_last:0 msgid "Last Action" -msgstr "" +msgstr "Zadnja aktivnost" #. module: portal_crm #: model:ir.model,name:portal_crm.model_portal_crm_crm_contact_us diff --git a/addons/procurement/i18n/ja.po b/addons/procurement/i18n/ja.po index cc5ac6abcde..5d7a02f1bef 100644 --- a/addons/procurement/i18n/ja.po +++ b/addons/procurement/i18n/ja.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-11-08 17:17+0000\n" +"PO-Revision-Date: 2013-12-06 23:52+0000\n" "Last-Translator: Yoshi Tashiro \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: 2013-11-21 06:26+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-07 06:32+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: procurement #: model:ir.ui.menu,name:procurement.menu_stock_sched @@ -141,12 +141,12 @@ msgstr "調達計算" #. module: procurement #: field:procurement.order,message:0 msgid "Latest error" -msgstr "最新のエラー" +msgstr "直近のエラー" #. module: procurement #: field:stock.warehouse.orderpoint,product_min_qty:0 msgid "Minimum Quantity" -msgstr "" +msgstr "最小数量" #. module: procurement #: help:mrp.property,composition:0 @@ -156,7 +156,7 @@ msgstr "情報目的のみであるため、計算には使用されません。 #. module: procurement #: field:stock.warehouse.orderpoint,procurement_id:0 msgid "Latest procurement" -msgstr "最新の調達" +msgstr "直近の調達" #. module: procurement #: field:procurement.order,message_ids:0 @@ -166,7 +166,7 @@ msgstr "" #. module: procurement #: view:procurement.order:0 msgid "Cancel Procurement" -msgstr "" +msgstr "調達取消" #. module: procurement #: view:product.product:0 @@ -268,7 +268,7 @@ msgstr "確認" #. module: procurement #: view:stock.warehouse.orderpoint:0 msgid "Quantity Multiple" -msgstr "" +msgstr "倍乗基準数量" #. module: procurement #: help:procurement.order,origin:0 @@ -282,7 +282,7 @@ msgstr "" #. module: procurement #: view:stock.warehouse.orderpoint:0 msgid "Procurement Orders to Process" -msgstr "調達オーダーの処理" +msgstr "未処理調達オーダ" #. module: procurement #: model:ir.model,name:procurement.model_stock_warehouse_orderpoint @@ -303,7 +303,7 @@ msgstr "優先度" #. module: procurement #: view:stock.warehouse.orderpoint:0 msgid "Reordering Rules Search" -msgstr "" +msgstr "再発注規則検索" #. module: procurement #: selection:procurement.order,state:0 @@ -532,7 +532,7 @@ msgstr "製品の在庫が0未満の時は、それは発注点のように動 #: field:procurement.order,product_uom:0 #: field:stock.warehouse.orderpoint,product_uom:0 msgid "Product Unit of Measure" -msgstr "" +msgstr "製品単位" #. module: procurement #: constraint:stock.warehouse.orderpoint:0 @@ -576,7 +576,7 @@ msgstr "ドラフト" #: model:ir.ui.menu,name:procurement.menu_stock_proc_schedulers #: view:procurement.order.compute.all:0 msgid "Run Schedulers" -msgstr "" +msgstr "スケジューラ実行" #. module: procurement #: view:procurement.order.compute:0 @@ -587,7 +587,7 @@ msgstr "ウィザードは調達をスケジュールします。" #: view:procurement.order:0 #: field:procurement.order,state:0 msgid "Status" -msgstr "状態" +msgstr "ステータス" #. module: procurement #: selection:product.template,supply_method:0 @@ -615,7 +615,7 @@ msgstr "" #. module: procurement #: field:stock.warehouse.orderpoint,product_max_qty:0 msgid "Maximum Quantity" -msgstr "" +msgstr "最大数量" #. module: procurement #: field:procurement.order,message_is_follower:0 @@ -631,7 +631,7 @@ msgstr "十分な在庫ではありません。" #. module: procurement #: field:stock.warehouse.orderpoint,active:0 msgid "Active" -msgstr "アクティブ" +msgstr "有効" #. module: procurement #: model:process.node,name:procurement.process_node_procureproducts0 @@ -780,7 +780,7 @@ msgstr "完了" #: view:procurement.order.compute.all:0 #: view:procurement.orderpoint.compute:0 msgid "Cancel" -msgstr "キャンセル" +msgstr "取消" #. module: procurement #: field:stock.warehouse.orderpoint,logic:0 @@ -790,7 +790,7 @@ msgstr "再オーダーのモード" #. module: procurement #: field:procurement.order,origin:0 msgid "Source Document" -msgstr "基となるドキュメント" +msgstr "参照元" #. module: procurement #: selection:procurement.order,priority:0 @@ -804,7 +804,7 @@ msgstr "緊急外" #: model:ir.ui.menu,name:procurement.menu_stock_procurement_action #: view:procurement.order:0 msgid "Procurement Exceptions" -msgstr "調達の例外" +msgstr "調達例外" #. module: procurement #: help:stock.warehouse.orderpoint,product_max_qty:0 @@ -928,7 +928,7 @@ msgstr "一時的な調達例外" #: field:mrp.property,name:0 #: field:stock.warehouse.orderpoint,name:0 msgid "Name" -msgstr "名前" +msgstr "名称" #. module: procurement #: selection:mrp.property,composition:0 @@ -942,7 +942,7 @@ msgstr "最大" #: model:ir.ui.menu,name:procurement.menu_stock_order_points #: view:stock.warehouse.orderpoint:0 msgid "Reordering Rules" -msgstr "" +msgstr "再発注規則" #. module: procurement #: code:addons/procurement/procurement.py:139 @@ -1007,7 +1007,7 @@ msgstr "最小" #: view:procurement.order.compute.all:0 #: view:procurement.orderpoint.compute:0 msgid "or" -msgstr "" +msgstr "または" #. module: procurement #: code:addons/procurement/schedulers.py:134 diff --git a/addons/project_issue/i18n/sl.po b/addons/project_issue/i18n/sl.po index aa0a4e39cf0..26cde33400b 100644 --- a/addons/project_issue/i18n/sl.po +++ b/addons/project_issue/i18n/sl.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-10-21 06:49+0000\n" +"PO-Revision-Date: 2013-12-07 07:10+0000\n" "Last-Translator: Matjaž Mozetič (Matmoz) \n" "Language-Team: Slovenian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-11-21 06:30+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-08 05:46+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -99,6 +99,11 @@ msgid "" " * Ready for next stage indicates the issue is ready to be pulled to the " "next stage" msgstr "" +"Kanban stanje zadev prikazuje dotične situacije:\n" +" * Normalno je privzeta situacija\n" +" * Blokirano pomeni da nekaj preprečuje napredovanje zadeve\n" +" * Pripravljeno na naslednjo stopnjo kaže, da jezadeve pripravljena na " +"prehod v naslednjo stopnjo" #. module: project_issue #: help:project.issue,message_unread:0 @@ -122,6 +127,8 @@ msgid "" "You cannot escalate this issue.\n" "The relevant Project has not configured the Escalation Project!" msgstr "" +"Te zadeve ne morete stopnjevati.\n" +"Dotični projekt nima nastavljenega stopnjevalnega projekta!" #. module: project_issue #: constraint:project.project:0 @@ -900,6 +907,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite za dodajanje novega tipa zadeve.\n" +"

\n" +" Tu določite različne tipe zadev\n" +" na katerih delate.\n" +"

\n" +" " #. module: project_issue #: help:project.issue,section_id:0 @@ -958,7 +972,7 @@ msgstr "project.issue.report" #. module: project_issue #: help:project.issue.report,delay_close:0 msgid "Number of Days to close the project issue" -msgstr "Število dni do zaprtja projektne zadeve" +msgstr "Število dni do zaprtja projektne razprave" #. module: project_issue #: field:project.issue.report,working_hours_close:0 diff --git a/addons/stock/i18n/ja.po b/addons/stock/i18n/ja.po index ce145adfc09..bcc0d69b8e6 100644 --- a/addons/stock/i18n/ja.po +++ b/addons/stock/i18n/ja.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:36+0000\n" -"PO-Revision-Date: 2013-11-10 08:42+0000\n" +"PO-Revision-Date: 2013-12-06 23:47+0000\n" "Last-Translator: Yoshi Tashiro \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: 2013-11-21 06:35+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-07 06:32+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 @@ -210,7 +210,7 @@ msgstr "" #: view:report.stock.move:0 #: field:stock.change.standard.price,stock_journal:0 msgid "Stock journal" -msgstr "在庫仕訳帳" +msgstr "在庫記録簿" #. module: stock #: view:report.stock.move:0 @@ -245,12 +245,12 @@ msgstr "あなたはどのレコードも削除できません。" #. module: stock #: view:stock.picking:0 msgid "Delivery orders to invoice" -msgstr "未請求配送オーダ" +msgstr "未請求配送" #. module: stock #: view:stock.picking:0 msgid "Assigned Delivery Orders" -msgstr "割当済配送オーダ" +msgstr "割当済配送" #. module: stock #: code:addons/stock/wizard/stock_change_standard_price.py:107 @@ -470,7 +470,7 @@ msgstr "遅れ(日数)" #. module: stock #: selection:stock.picking.out,state:0 msgid "Ready to Deliver" -msgstr "" +msgstr "配送待ち" #. module: stock #: code:addons/stock/stock.py:2481 @@ -646,7 +646,7 @@ msgstr "" #. module: stock #: model:ir.ui.menu,name:stock.menu_stock_products_moves msgid "Receive/Deliver Products" -msgstr "" +msgstr "製品入荷/配送" #. module: stock #: field:stock.move,move_history_ids:0 @@ -698,7 +698,7 @@ msgstr "オーダー(基点)" #. module: stock #: model:ir.ui.menu,name:stock.menu_stock_uom_categ_form_action msgid "Unit of Measure Categories" -msgstr "" +msgstr "単位カテゴリ" #. module: stock #: report:lot.stock.overview:0 @@ -910,7 +910,7 @@ msgstr "緊急" #. module: stock #: selection:stock.picking.out,state:0 msgid "Delivered" -msgstr "" +msgstr "配送済" #. module: stock #: field:stock.move,move_dest_id:0 @@ -1047,7 +1047,7 @@ msgstr "" #. module: stock #: view:stock.move:0 msgid "Details" -msgstr "" +msgstr "詳細" #. module: stock #: selection:stock.picking,state:0 @@ -1129,7 +1129,7 @@ msgstr "場所別の在庫" #. module: stock #: model:ir.ui.menu,name:stock.menu_stock_warehouse_mgmt msgid "Receive/Deliver By Orders" -msgstr "" +msgstr "オーダ入荷/配送" #. module: stock #: view:stock.production.lot:0 @@ -1301,7 +1301,7 @@ msgstr "手動操作" #: view:report.stock.move:0 #: field:report.stock.move,picking_id:0 msgid "Shipment" -msgstr "" +msgstr "出荷" #. module: stock #: view:stock.location:0 @@ -1546,7 +1546,7 @@ msgstr "顧客リードタイム" #. module: stock #: view:stock.picking:0 msgid "Additional Info" -msgstr "付加情報" +msgstr "追加情報" #. module: stock #: code:addons/stock/stock.py:2653 @@ -1604,7 +1604,7 @@ msgstr "分割" #. module: stock #: model:ir.actions.report.xml,name:stock.report_picking_list_out msgid "Delivery Slip" -msgstr "" +msgstr "配送伝票" #. module: stock #: model:ir.actions.act_window,name:stock.open_board_warehouse @@ -1869,7 +1869,7 @@ msgstr "送付商品" #. module: stock #: model:ir.ui.menu,name:stock.menu_product_category_config_stock msgid "Product Categories" -msgstr "製品分類" +msgstr "製品カテゴリ" #. module: stock #: view:stock.move:0 @@ -2251,7 +2251,7 @@ msgstr "在庫のインポート" #: field:stock.incoterms,name:0 #: field:stock.warehouse,name:0 msgid "Name" -msgstr "名前" +msgstr "名称" #. module: stock #: report:stock.picking.list:0 @@ -2474,7 +2474,7 @@ msgstr "ドラフトに設定" #: 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 "在庫仕訳帳" +msgstr "在庫記録簿" #. module: stock #: view:product.product:0 @@ -2860,7 +2860,7 @@ msgstr "在庫レベルの予測" #: field:stock.picking.in,stock_journal_id:0 #: field:stock.picking.out,stock_journal_id:0 msgid "Stock Journal" -msgstr "在庫仕訳帳" +msgstr "在庫記録簿" #. module: stock #: code:addons/stock/wizard/stock_return_picking.py:174 @@ -2914,7 +2914,7 @@ msgstr "調達" #: model:ir.ui.menu,name:stock.menu_action_pdct_out #, python-format msgid "Deliver Products" -msgstr "製品を配送" +msgstr "製品配送" #. module: stock #: view:stock.location.product:0 @@ -3062,7 +3062,7 @@ msgstr "" #: field:stock.location,active:0 #: field:stock.tracking,active:0 msgid "Active" -msgstr "アクティブ" +msgstr "有効" #. module: stock #: view:product.template:0 @@ -3461,7 +3461,7 @@ msgstr "合計価値" #. module: stock #: model:ir.ui.menu,name:stock.menu_product_by_category_stock_form msgid "Products by Category" -msgstr "分類別製品" +msgstr "カテゴリ別製品" #. module: stock #: selection:stock.picking,state:0 @@ -3839,7 +3839,7 @@ msgstr "キャンセル済" #. module: stock #: view:stock.picking:0 msgid "Confirmed Delivery Orders" -msgstr "確認済配送オーダ" +msgstr "確認済配送" #. module: stock #: view:stock.move:0 @@ -3916,12 +3916,12 @@ msgstr "シリアル番号改訂" #: model:ir.ui.menu,name:stock.menu_action_picking_tree #: view:stock.picking.out:0 msgid "Delivery Orders" -msgstr "配送オーダ" +msgstr "配送" #. module: stock #: view:stock.picking:0 msgid "Delivery orders already processed" -msgstr "処理済配送オーダ" +msgstr "処理済配送" #. module: stock #: field:product.template,loc_case:0 @@ -3993,7 +3993,7 @@ msgstr "出庫数量合計" #: field:stock.picking.in,backorder_id:0 #: field:stock.picking.out,backorder_id:0 msgid "Back Order of" -msgstr "バックオーダー" +msgstr "バックオーダ繰越元" #. module: stock #: model:ir.model,name:stock.model_action_traceability @@ -4013,7 +4013,7 @@ msgstr "この製品ラインの単位原価" #: view:report.stock.move:0 #: field:report.stock.move,categ_id:0 msgid "Product Category" -msgstr "製品分類" +msgstr "製品カテゴリ" #. module: stock #: view:stock.move:0 @@ -4321,7 +4321,7 @@ msgstr "これらの棚卸を統合しますか?" #. module: stock #: view:stock.picking.out:0 msgid "Date of Delivery" -msgstr "" +msgstr "配送日" #. module: stock #: field:stock.location,posy:0 @@ -4813,7 +4813,7 @@ msgstr "オプション:連鎖する場合の次の在庫移動" #. module: stock #: view:stock.picking.out:0 msgid "Print Delivery Slip" -msgstr "" +msgstr "配送伝票印刷" #. module: stock #: view:report.stock.inventory:0 diff --git a/addons/stock_location/i18n/sl.po b/addons/stock_location/i18n/sl.po index ca897e71ab0..892c0526a50 100644 --- a/addons/stock_location/i18n/sl.po +++ b/addons/stock_location/i18n/sl.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: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-11-21 11:37+0000\n" +"PO-Revision-Date: 2013-12-07 09:03+0000\n" "Last-Translator: Darja Zorman \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: 2013-11-22 06:03+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-12-08 05:46+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: stock_location #: help:product.pulled.flow,company_id:0 @@ -364,7 +364,7 @@ msgstr "" #. module: stock_location #: model:stock.location,name:stock_location.location_order msgid "Order Processing" -msgstr "" +msgstr "Procesiranje nalogov" #. module: stock_location #: field:stock.location.path,name:0 diff --git a/addons/web/i18n/et.po b/addons/web/i18n/et.po index d023c2cf08f..c0b83d8bd2f 100644 --- a/addons/web/i18n/et.po +++ b/addons/web/i18n/et.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openerp-web\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-04-25 14:18+0000\n" -"Last-Translator: Illimar Saatväli \n" +"PO-Revision-Date: 2013-11-25 22:46+0000\n" +"Last-Translator: Ott Maaten \n" "Language-Team: Estonian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-08 07:49+0000\n" -"X-Generator: Launchpad (build 16667)\n" +"X-Launchpad-Export-Date: 2013-11-26 06:07+0000\n" +"X-Generator: Launchpad (build 16840)\n" #. module: web #. openerp-web @@ -264,14 +264,14 @@ msgstr "Vidina tüüp '% s' ei ole rakendatud" #: code:addons/web/static/src/xml/base.xml:134 #, python-format msgid "e.g. mycompany" -msgstr "" +msgstr "näit minufirma" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_list_editable.js:793 #, python-format msgid "The form's data can not be discarded" -msgstr "" +msgstr "Vormi andmed tuleb salvestada" #. module: web #. openerp-web @@ -286,7 +286,7 @@ msgstr "Vorm" #: code:addons/web/static/src/xml/base.xml:1352 #, python-format msgid "(no string)" -msgstr "" +msgstr "(ei ole rida)" #. module: web #. openerp-web @@ -469,7 +469,7 @@ msgstr "Keeled" #: code:addons/web/static/src/js/view_form.js:2438 #, python-format msgid "Show the next month" -msgstr "" +msgstr "Näita järgmist kuud" #. module: web #. openerp-web diff --git a/addons/web/i18n/fi.po b/addons/web/i18n/fi.po index 58f0daeb8ba..c6cbeadf257 100644 --- a/addons/web/i18n/fi.po +++ b/addons/web/i18n/fi.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openerp-web\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-10-17 16:10+0000\n" -"Last-Translator: Miku Laitinen \n" +"PO-Revision-Date: 2013-12-06 16:04+0000\n" +"Last-Translator: Harri Luuppala \n" "Language-Team: Finnish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-10-18 06:11+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-12-07 06:32+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: web #. openerp-web @@ -36,7 +36,7 @@ msgstr "%d minuuttia sitten" #: code:addons/web/static/src/js/coresetup.js:620 #, python-format msgid "Still loading...
Please be patient." -msgstr "Ladataan...
Olkaa hyvä ja odottakaa." +msgstr "Ladataan edelleen...
Ole hyvä ja odota." #. module: web #. openerp-web @@ -66,6 +66,11 @@ msgid "" "created,\n" " you will be able to install your first application." msgstr "" +"Täytä tämä lomake luodaksesi OpenERP-tietokannan. Voit luoda\n" +" tietokantoja eri yrityksille tai eri tarpeisiin (testi, " +"tuotanto).\n" +" Kun tietokanta on luotu, voit asentaa ensimmäisen " +"sovelluksesi." #. module: web #. openerp-web @@ -88,7 +93,7 @@ msgstr "Vaihda pääsalasana" #: code:addons/web/static/src/js/view_form.js:2439 #, python-format msgid "Today" -msgstr "" +msgstr "Tänään" #. module: web #. openerp-web @@ -116,7 +121,7 @@ msgstr "Pääsy evätty" #: code:addons/web/static/src/js/view_form.js:2462 #, python-format msgid "Now" -msgstr "" +msgstr "Nyt" #. module: web #. openerp-web @@ -130,7 +135,7 @@ msgstr "noin tunti sitten" #: code:addons/web/static/src/js/view_form.js:2446 #, python-format msgid "Week of the year" -msgstr "" +msgstr "Viikkonumero" #. module: web #. openerp-web @@ -161,7 +166,7 @@ msgstr "\"%s\" ei ole kelvollinen päivämäärä" #: code:addons/web/static/src/js/view_form.js:2437 #, python-format msgid "Next>" -msgstr "" +msgstr "Seuraava >" #. module: web #. openerp-web @@ -219,7 +224,7 @@ msgstr "Valitse" #: code:addons/web/static/src/js/chrome.js:571 #, python-format msgid "Database restored successfully" -msgstr "Tietokanta palautettu" +msgstr "Tietokanta palautettu onnistuneesti" #. module: web #. openerp-web @@ -233,28 +238,28 @@ msgstr "Versio" #: code:addons/web/static/src/xml/base.xml:592 #, python-format msgid "Latest Modification Date:" -msgstr "Viimeisin muutospäivämäärä:" +msgstr "Viimeisin muokkauspäivä:" #. module: web #. openerp-web #: code:addons/web/static/src/js/search.js:1566 #, python-format msgid "M2O search fields do not currently handle multiple default values" -msgstr "Monesta yhteen hakukentät eivät salli useita oletusarvoja." +msgstr "Monesta-yhteen -hakukentät eivät salli useita oletusarvoja." #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:1241 #, python-format msgid "Widget type '%s' is not implemented" -msgstr "Pienohjelman tyyppiä '%s' ei ole asennettu" +msgstr "Sovelmatyyppiä \"%s\" ei ole asennettu" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:134 #, python-format msgid "e.g. mycompany" -msgstr "" +msgstr "esim. omayritys" #. module: web #. openerp-web @@ -425,14 +430,14 @@ msgstr "Ryhmä" #: code:addons/web/static/src/js/view_form.js:2445 #, python-format msgid "Wk" -msgstr "" +msgstr "Vko" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:949 #, python-format msgid "Unhandled widget" -msgstr "Käsittelemätön widgetti" +msgstr "Käsittelemätön sovelma" #. module: web #. openerp-web @@ -459,7 +464,7 @@ msgstr "Kielet" #: code:addons/web/static/src/js/view_form.js:2438 #, python-format msgid "Show the next month" -msgstr "" +msgstr "Näytä seuraava kuukausi" #. module: web #. openerp-web @@ -579,7 +584,7 @@ msgstr "alle minuutti sitten" #: code:addons/web/static/src/js/view_form.js:2453 #, python-format msgid "Select a date" -msgstr "" +msgstr "Valitse päivä" #. module: web #. openerp-web @@ -593,7 +598,7 @@ msgstr "Ehto:" #: code:addons/web/static/src/js/view_form.js:2458 #, python-format msgid "Time" -msgstr "" +msgstr "Aika" #. module: web #. openerp-web @@ -817,7 +822,7 @@ msgstr "Tallenna & Uusi" #: code:addons/web/static/src/js/view_form.js:2432 #, python-format msgid "Erase the current date" -msgstr "" +msgstr "Poista valittu päivä" #. module: web #. openerp-web @@ -832,7 +837,7 @@ msgstr "Tallenna nimellä" #: code:addons/web/static/src/xml/base.xml:109 #, python-format msgid "Create a New Database" -msgstr "" +msgstr "Luo uusi tietokanta" #. module: web #. openerp-web @@ -853,7 +858,7 @@ msgstr "päivä sitten" #: code:addons/web/static/src/xml/base.xml:138 #, python-format msgid "Load demonstration data:" -msgstr "" +msgstr "Lataa esittelydata:" #. module: web #. openerp-web @@ -894,7 +899,7 @@ msgstr "Etsi: " #: code:addons/web/static/src/xml/base.xml:141 #, python-format msgid "Check this box to evaluate OpenERP." -msgstr "" +msgstr "Valitse tämä valintaruutu koekäyttääksesi OpenERP:iä." #. module: web #. openerp-web @@ -981,7 +986,7 @@ msgstr "Asetukset" #: code:addons/web/static/src/xml/base.xml:1704 #, python-format msgid "Only export selection:" -msgstr "" +msgstr "Vaihtoehtona vain vie-valinta:" #. module: web #. openerp-web @@ -1072,14 +1077,14 @@ msgstr "Salasana vaihdettu" #: code:addons/web/static/src/js/view_form.js:2379 #, python-format msgid "Resource Error" -msgstr "" +msgstr "Resurssivirhe" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:2459 #, python-format msgid "Hour" -msgstr "" +msgstr "Tunti" #. module: web #. openerp-web @@ -1109,7 +1114,7 @@ msgstr "Poista" #: code:addons/web/static/src/xml/base.xml:425 #, python-format msgid "My OpenERP.com account" -msgstr "" +msgstr "Oma OpenERP.com -tilini" #. module: web #. openerp-web @@ -1195,14 +1200,14 @@ msgstr "Etsi" #: code:addons/web/static/src/js/view_form.js:2435 #, python-format msgid "\n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-11-21 03:38+0000\n" +"PO-Revision-Date: 2013-11-28 11:11+0000\n" "Last-Translator: Yoshi Tashiro \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: 2013-11-22 06:03+0000\n" -"X-Generator: Launchpad (build 16831)\n" +"X-Launchpad-Export-Date: 2013-11-29 05:30+0000\n" +"X-Generator: Launchpad (build 16847)\n" #. module: web #. openerp-web @@ -36,7 +36,7 @@ msgstr "%d分前" #: code:addons/web/static/src/js/coresetup.js:620 #, python-format msgid "Still loading...
Please be patient." -msgstr "ロード中です...
今しばらくお待ちください。" +msgstr "引き続き読込中...
今しばらくお待ちください。" #. module: web #. openerp-web @@ -530,7 +530,7 @@ msgstr "開発者モードを有効化" #: code:addons/web/static/src/js/chrome.js:341 #, python-format msgid "Loading (%d)" -msgstr "ロード中 (%d)" +msgstr "読込中(%d)" #. module: web #. openerp-web @@ -649,7 +649,7 @@ msgstr "は次ではない" #: code:addons/web/static/src/xml/base.xml:572 #, python-format msgid "Print Workflow" -msgstr "" +msgstr "印刷ワークフロー" #. module: web #. openerp-web @@ -670,7 +670,7 @@ msgstr "UTF-8" #: code:addons/web/static/src/xml/base.xml:443 #, python-format msgid "For more information visit" -msgstr "もっと詳しい情報はこちらへ" +msgstr "詳細の確認はこちらにて:" #. module: web #. openerp-web @@ -1082,7 +1082,7 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:555 #, python-format msgid "Debug View#" -msgstr "ビューをデバッグ" +msgstr "デバッグ対象ビュー#" #. module: web #. openerp-web @@ -1376,7 +1376,7 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:442 #, python-format msgid "Licenced under the terms of" -msgstr "ライセンスに準拠" +msgstr "準拠ライセンス:" #. module: web #. openerp-web @@ -2568,7 +2568,7 @@ msgstr "条件追加" #: code:addons/web/static/src/js/coresetup.js:619 #, python-format msgid "Still loading..." -msgstr "" +msgstr "引き続き読込..." #. module: web #. openerp-web diff --git a/addons/web/i18n/ro.po b/addons/web/i18n/ro.po index c8dc4ac66b4..561c4e71c06 100644 --- a/addons/web/i18n/ro.po +++ b/addons/web/i18n/ro.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openerp-web\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2013-04-17 17:57+0000\n" +"PO-Revision-Date: 2013-12-07 04:14+0000\n" "Last-Translator: Dorin \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-08 07:50+0000\n" -"X-Generator: Launchpad (build 16667)\n" +"X-Launchpad-Export-Date: 2013-12-08 05:46+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: web #. openerp-web @@ -88,7 +88,7 @@ msgstr "Schimbă parola principală" #: code:addons/web/static/src/js/view_form.js:2439 #, python-format msgid "Today" -msgstr "Astazi" +msgstr "Astăzi" #. module: web #. openerp-web @@ -130,7 +130,7 @@ msgstr "aproximativ o oră în urmă" #: code:addons/web/static/src/js/view_form.js:2446 #, python-format msgid "Week of the year" -msgstr "Saptamana din an" +msgstr "Saptămâna din an" #. module: web #. openerp-web @@ -161,7 +161,7 @@ msgstr "'%s' nu este o dată validă" #: code:addons/web/static/src/js/view_form.js:2437 #, python-format msgid "Next>" -msgstr "Urmator>" +msgstr "Următor>" #. module: web #. openerp-web @@ -212,7 +212,7 @@ msgstr "Parolă Administrator:" #: code:addons/web/static/src/xml/base.xml:1402 #, python-format msgid "Select" -msgstr "Selectează" +msgstr "Selectați" #. module: web #. openerp-web @@ -474,7 +474,7 @@ msgstr "...Descărcare în curs..." #: code:addons/web/static/src/xml/base.xml:1789 #, python-format msgid "Import" -msgstr "Importă" +msgstr "Importați" #. module: web #. openerp-web @@ -580,7 +580,7 @@ msgstr "cu mai puțin de un minut în urmă" #: code:addons/web/static/src/js/view_form.js:2453 #, python-format msgid "Select a date" -msgstr "Selectati o data" +msgstr "Selectați o data" #. module: web #. openerp-web @@ -834,7 +834,7 @@ msgstr "Salvează ca" #: code:addons/web/static/src/xml/base.xml:109 #, python-format msgid "Create a New Database" -msgstr "" +msgstr "Creează o Bază de Date Nouă" #. module: web #. openerp-web @@ -1664,7 +1664,7 @@ msgstr "nu conține" #: code:addons/web/static/src/xml/base.xml:1806 #, python-format msgid "Import Options" -msgstr "Importă Opțiuni" +msgstr "Opțiuni Import" #. module: web #. openerp-web @@ -1685,14 +1685,14 @@ msgstr "Inchideti fara modificari" #: code:addons/web/static/src/xml/base.xml:159 #, python-format msgid "Choose a password:" -msgstr "" +msgstr "Alegeți o parolă:" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:2451 #, python-format msgid "Select D, M d" -msgstr "Selectati ziua, luna, an" +msgstr "Selectați ziua, luna, an" #. module: web #. openerp-web @@ -1827,7 +1827,7 @@ msgstr "---Nu Importa ---" #: code:addons/web/static/src/xml/base.xml:1697 #, python-format msgid "Import-Compatible Export" -msgstr "Import-Export Compatibil" +msgstr "Compatibil Import-Export" #. module: web #. openerp-web @@ -2244,7 +2244,7 @@ msgstr "Ștergeți" #: code:addons/web/static/src/xml/base.xml:132 #, python-format msgid "Select a database name:" -msgstr "" +msgstr "Selectați numele bazei de date" #. module: web #. openerp-web @@ -2844,7 +2844,7 @@ msgstr "Elimină" #: code:addons/web/static/src/xml/base.xml:1090 #, python-format msgid "Select date" -msgstr "Selectează data" +msgstr "Selectați data" #. module: web #. openerp-web diff --git a/addons/web_gantt/i18n/lo.po b/addons/web_gantt/i18n/lo.po index 4ec9b70502b..e9f8bf9b6a7 100644 --- a/addons/web_gantt/i18n/lo.po +++ b/addons/web_gantt/i18n/lo.po @@ -8,25 +8,25 @@ msgstr "" "Project-Id-Version: openerp-web\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: Brice Muangkhot ສຸພາ ເມືອງໂຄຕ \n" +"PO-Revision-Date: 2013-11-25 04:29+0000\n" +"Last-Translator: Anousak \n" "Language-Team: Lao \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-08 07:50+0000\n" -"X-Generator: Launchpad (build 16667)\n" +"X-Launchpad-Export-Date: 2013-11-26 06:07+0000\n" +"X-Generator: Launchpad (build 16840)\n" #. module: web_gantt #. openerp-web #: code:addons/web_gantt/static/src/xml/web_gantt.xml:10 #, python-format msgid "Create" -msgstr "ສ້າງຂື້ນ" +msgstr "ເເກ້ນ" #. module: web_gantt #. openerp-web #: code:addons/web_gantt/static/src/js/gantt.js:11 #, python-format msgid "Gantt" -msgstr "ກັນຕໍ່" +msgstr "ເເກ້ນ" diff --git a/addons/web_kanban/i18n/ja.po b/addons/web_kanban/i18n/ja.po index 2bed7b24c18..d59fa62dcba 100644 --- a/addons/web_kanban/i18n/ja.po +++ b/addons/web_kanban/i18n/ja.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openerp-web\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:38+0000\n" -"PO-Revision-Date: 2013-11-10 05:14+0000\n" +"PO-Revision-Date: 2013-11-24 08:36+0000\n" "Last-Translator: Yoshi Tashiro \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: 2013-11-11 05:39+0000\n" -"X-Generator: Launchpad (build 16820)\n" +"X-Launchpad-Export-Date: 2013-11-25 06:01+0000\n" +"X-Generator: Launchpad (build 16831)\n" #. module: web_kanban #. openerp-web @@ -86,7 +86,7 @@ msgstr "カラムを追加" #: code:addons/web_kanban/static/src/xml/web_kanban.xml:45 #, python-format msgid "Fold" -msgstr "" +msgstr "折畳" #. module: web_kanban #. openerp-web @@ -114,7 +114,7 @@ msgstr "このレコードを削除しますか?" #: code:addons/web_kanban/static/src/js/kanban.js:680 #, python-format msgid "Unfold" -msgstr "" +msgstr "展開" #. module: web_kanban #. openerp-web diff --git a/addons/web_view_editor/i18n/nl.po b/addons/web_view_editor/i18n/nl.po index f6a17cf0d36..c339f47a6b3 100644 --- a/addons/web_view_editor/i18n/nl.po +++ b/addons/web_view_editor/i18n/nl.po @@ -8,21 +8,21 @@ msgstr "" "Project-Id-Version: openerp-web\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:38+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: Erwin van der Ploeg (Endian Solutions) \n" +"PO-Revision-Date: 2013-11-26 13:17+0000\n" +"Last-Translator: Jan Jurkus (GCE CAD-Service) \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-08 07:51+0000\n" -"X-Generator: Launchpad (build 16667)\n" +"X-Launchpad-Export-Date: 2013-11-27 05:39+0000\n" +"X-Generator: Launchpad (build 16845)\n" #. module: web_view_editor #. openerp-web #: code:addons/web_view_editor/static/src/js/view_editor.js:164 #, python-format msgid "The following fields are invalid :" -msgstr "De volgende velden zijn ongeldig." +msgstr "De volgende velden zijn ongeldig:" #. module: web_view_editor #. openerp-web @@ -129,7 +129,7 @@ msgstr "Kan huidige weergave declaratie niet vinden" #: code:addons/web_view_editor/static/src/js/view_editor.js:383 #, python-format msgid "Inherited View" -msgstr "Afgeleide weergave" +msgstr "Overerfde weergave" #. module: web_view_editor #. openerp-web diff --git a/openerp/addons/base/i18n/lv.po b/openerp/addons/base/i18n/lv.po index e590a43ae33..396435687cb 100644 --- a/openerp/addons/base/i18n/lv.po +++ b/openerp/addons/base/i18n/lv.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:35+0000\n" -"PO-Revision-Date: 2013-03-10 11:54+0000\n" -"Last-Translator: Arnis Putniņš \n" +"PO-Revision-Date: 2013-12-07 17:05+0000\n" +"Last-Translator: Normunds (Alistek) \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: 2013-10-08 06:13+0000\n" -"X-Generator: Launchpad (build 16799)\n" +"X-Launchpad-Export-Date: 2013-12-08 05:45+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -180,7 +180,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_analytic_plans msgid "Sales Analytic Distribution" -msgstr "" +msgstr "Pāŗdošanas Analītika" #. module: base #: model:ir.module.module,description:base.module_hr_timesheet_invoice @@ -307,7 +307,7 @@ msgstr "" #. module: base #: model:res.groups,name:base.group_multi_currency msgid "Multi Currencies" -msgstr "" +msgstr "MultiValūtas" #. module: base #: model:ir.module.module,description:base.module_l10n_cl @@ -433,7 +433,7 @@ msgstr "" #. module: base #: field:ir.module.category,child_ids:0 msgid "Child Applications" -msgstr "" +msgstr "Apakšaplikācijas" #. module: base #: field:res.partner,credit_limit:0 @@ -504,6 +504,7 @@ msgid "" "One of the records you are trying to modify has already been deleted " "(Document type: %s)." msgstr "" +"Kāds no ierakstiem, ko mēģināt labot ir jau dzēsts (Dokumenta Tips: %s)." #. module: base #: help:ir.actions.act_window,views:0 @@ -562,7 +563,7 @@ msgstr "" #. module: base #: view:workflow.transition:0 msgid "Workflow Transition" -msgstr "" +msgstr "Darbplūsmas Pāreja" #. module: base #: model:res.country,name:base.gf @@ -639,7 +640,7 @@ msgstr "Spāņu (VE) / Español (VE)" #. module: base #: model:ir.module.module,shortdesc:base.module_hr_timesheet_invoice msgid "Invoice on Timesheets" -msgstr "" +msgstr "Rēķinu piestādīšana pēc darba tabelēm" #. module: base #: view:base.module.upgrade:0 @@ -665,7 +666,7 @@ msgstr "Kolumbija" #. module: base #: model:res.partner.title,name:base.res_partner_title_mister msgid "Mister" -msgstr "" +msgstr "Kungs" #. module: base #: help:res.country,code:0 @@ -689,7 +690,7 @@ msgstr "Tirdzniecība un Iepirkumi" #. module: base #: view:res.partner:0 msgid "Put an internal note..." -msgstr "" +msgstr "Iekšējā piezīme..." #. module: base #: view:ir.translation:0 @@ -699,7 +700,7 @@ msgstr "Neiztulkots" #. module: base #: view:ir.mail_server:0 msgid "Outgoing Mail Server" -msgstr "" +msgstr "Izejošā Pasta Serveris" #. module: base #: help:ir.actions.act_window,context:0 @@ -787,6 +788,9 @@ msgid "" "Contains the installer for marketing-related modules.\n" " " msgstr "" +"\n" +"Izvēlne Mārketingam.\n" +" " #. module: base #: model:ir.module.module,description:base.module_web_linkedin @@ -847,7 +851,7 @@ msgstr "Automatizētas darbības" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_ro msgid "Romania - Accounting" -msgstr "" +msgstr "Rumānija - Grāmatvedība" #. module: base #: model:ir.model,name:base.model_res_config_settings @@ -881,7 +885,7 @@ msgstr "Drošība un Autentifikācija" #. module: base #: model:ir.module.module,shortdesc:base.module_web_calendar msgid "Web Calendar" -msgstr "" +msgstr "Web Kalendārs" #. module: base #: selection:base.language.install,lang:0 @@ -919,7 +923,7 @@ msgstr "Aizstāt Esošos Nosacījumus" #: code:addons/base/res/res_currency.py:52 #, python-format msgid "No currency rate associated for currency %d for the given period" -msgstr "" +msgstr "Valūtai %d nav kursa attiecīgajā periodā" #. module: base #: model:ir.module.module,description:base.module_hr_holidays @@ -979,12 +983,12 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_document_webdav msgid "Shared Repositories (WebDAV)" -msgstr "" +msgstr "Koplietošanas Krātuves (WebDAV)" #. module: base #: view:res.users:0 msgid "Email Preferences" -msgstr "" +msgstr "E-pasta Uzstādījumi" #. module: base #: code:addons/base/ir/ir_fields.py:195 @@ -1036,7 +1040,7 @@ msgstr "Moduļu atjaunināšana" #: view:res.partner.bank:0 #: view:res.users:0 msgid "ZIP" -msgstr "" +msgstr "PASTA KODS" #. module: base #: selection:base.language.install,lang:0 @@ -1056,7 +1060,7 @@ msgstr "Omāna" #. module: base #: model:ir.module.module,shortdesc:base.module_mrp msgid "MRP" -msgstr "" +msgstr "Ražošana" #. module: base #: model:ir.module.module,description:base.module_hr_attendance @@ -1078,7 +1082,7 @@ msgstr "Niue" #. module: base #: model:ir.module.module,shortdesc:base.module_membership msgid "Membership Management" -msgstr "" +msgstr "Biedru Pārvaldība" #. module: base #: selection:ir.module.module,license:0 @@ -1088,7 +1092,7 @@ msgstr "Cita OSI apstiprināta licence" #. module: base #: model:ir.module.module,shortdesc:base.module_web_gantt msgid "Web Gantt" -msgstr "" +msgstr "WWW Gant Diagramma" #. module: base #: model:ir.actions.act_window,name:base.act_menu_create @@ -1115,7 +1119,7 @@ msgstr "Google Lietotāji" #. module: base #: model:ir.module.module,shortdesc:base.module_fleet msgid "Fleet Management" -msgstr "" +msgstr "Autoparka Vadība" #. module: base #: help:ir.server.object.lines,value:0 @@ -1197,7 +1201,7 @@ msgstr "" #. module: base #: view:res.users:0 msgid "Change the user password." -msgstr "" +msgstr "Mainīt lietotāja paroli." #. module: base #: view:res.lang:0 @@ -1292,7 +1296,7 @@ msgstr "Valsts nosaukumam jābūt unikālam!" #. module: base #: field:ir.module.module,installed_version:0 msgid "Latest Version" -msgstr "" +msgstr "Jaunākā versija" #. module: base #: view:ir.rule:0 @@ -1339,7 +1343,7 @@ msgstr "" #: code:addons/orm.py:4920 #, python-format msgid "Record #%d of %s not found, cannot copy!" -msgstr "" +msgstr "Ieraksts #%d %s nav atrasts, nevar kopēt!" #. module: base #: field:ir.module.module,contributors:0 @@ -1359,7 +1363,7 @@ msgstr "Char" #. module: base #: field:ir.module.category,visible:0 msgid "Visible" -msgstr "" +msgstr "Redzams" #. module: base #: model:ir.actions.client,name:base.action_client_base_menu @@ -1409,7 +1413,7 @@ msgstr "Spāņu (GT) / Español (GT)" #. module: base #: field:ir.mail_server,smtp_port:0 msgid "SMTP Port" -msgstr "" +msgstr "SMTP Ports" #. module: base #: help:res.users,login:0 @@ -1441,7 +1445,7 @@ msgstr "" #: code:addons/base/module/wizard/base_language_install.py:53 #, python-format msgid "Language Pack" -msgstr "" +msgstr "Valodu Paka" #. module: base #: model:ir.module.module,shortdesc:base.module_web_tests @@ -1451,7 +1455,7 @@ msgstr "Pārbaudes" #. module: base #: field:ir.actions.report.xml,attachment:0 msgid "Save as Attachment Prefix" -msgstr "" +msgstr "Saglabāt kā pielikuma Prefiksu." #. module: base #: field:ir.ui.view_sc,res_id:0 @@ -1509,7 +1513,7 @@ msgstr "" #. module: base #: field:ir.module.category,parent_id:0 msgid "Parent Application" -msgstr "" +msgstr "Galvenā Aplikācija" #. module: base #: model:ir.actions.act_window,name:base.ir_action_wizard @@ -1527,12 +1531,12 @@ msgstr "Darbība atcelta" #. module: base #: model:ir.module.module,shortdesc:base.module_document msgid "Document Management System" -msgstr "" +msgstr "Dokumentu Pārvaldes Sistēma" #. module: base #: model:ir.module.module,shortdesc:base.module_crm_claim msgid "Claims Management" -msgstr "" +msgstr "Klientu pieteikumu Vadība" #. module: base #: model:ir.module.module,description:base.module_document_webdav @@ -2059,6 +2063,8 @@ msgstr "Kreisais vecāks" #: model:ir.module.module,shortdesc:base.module_project_mrp msgid "Create Tasks on SO" msgstr "" +"Veidot uzdevumus projektu vadības modulī, kas bāzēti uz tirdzniecības " +"pasūtījumiem" #. module: base #: code:addons/base/ir/ir_model.py:320 @@ -2069,7 +2075,7 @@ msgstr "" #. module: base #: field:res.partner.bank,footer:0 msgid "Display on Reports" -msgstr "" +msgstr "Attēlot Atskaitēs" #. module: base #: model:ir.module.module,description:base.module_project_timesheet @@ -2156,7 +2162,7 @@ msgstr "%s (kopēt)" #. module: base #: model:ir.module.module,shortdesc:base.module_account_chart msgid "Template of Charts of Accounts" -msgstr "" +msgstr "Kontu plānu veidne" #. module: base #: field:res.partner,type:0 @@ -2274,7 +2280,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_subscription msgid "Recurring Documents" -msgstr "" +msgstr "Dokumenti, kas periodiski atkārtojas" #. module: base #: model:res.country,name:base.bs @@ -2477,7 +2483,7 @@ msgstr "" #: code:addons/orm.py:3843 #, python-format msgid "A document was modified since you last viewed it (%s:%d)" -msgstr "" +msgstr "Dokuments ir modificēts, kopš pēdējās apskates (%s:%d)" #. module: base #: view:workflow:0 @@ -2546,7 +2552,7 @@ msgstr "Grupas (ja nav = globāla)" #. module: base #: view:ir.module.module:0 msgid "Extra" -msgstr "" +msgstr "Papildus" #. module: base #: model:res.country,name:base.st @@ -2725,12 +2731,12 @@ msgstr "Angilja" #. module: base #: model:ir.actions.report.xml,name:base.report_ir_model_overview msgid "Model Overview" -msgstr "" +msgstr "Modelis" #. module: base #: model:ir.module.module,shortdesc:base.module_product_margin msgid "Margins by Products" -msgstr "" +msgstr "Peļņa pēc Produktiem" #. module: base #: model:ir.ui.menu,name:base.menu_invoiced @@ -2823,7 +2829,7 @@ msgstr "" #: field:ir.translation,res_id:0 #: field:ir.values,res_id:0 msgid "Record ID" -msgstr "" +msgstr "Ieraksta ID" #. module: base #: field:ir.actions.server,email:0 @@ -3002,7 +3008,7 @@ msgstr "" #. module: base #: view:res.groups:0 msgid "Inherited" -msgstr "" +msgstr "Mantotais" #. module: base #: code:addons/base/ir/ir_fields.py:146 @@ -3283,7 +3289,7 @@ msgstr "Kuba" #: code:addons/report_sxw.py:443 #, python-format msgid "Unknown report type: %s" -msgstr "" +msgstr "Nezināms atskaites tips: %s" #. module: base #: model:ir.module.module,summary:base.module_hr_expense @@ -3480,7 +3486,7 @@ msgstr "" #. module: base #: model:res.groups,name:base.group_survey_user msgid "Survey / User" -msgstr "" +msgstr "Aptauja / Lietotājs" #. module: base #: view:ir.module.module:0 @@ -3536,7 +3542,7 @@ msgstr "Kontaktpersonu Uzrunas" #. module: base #: model:ir.module.module,shortdesc:base.module_product_manufacturer msgid "Products Manufacturers" -msgstr "" +msgstr "Produktu Ražotāji" #. module: base #: code:addons/base/ir/ir_mail_server.py:240 @@ -3783,7 +3789,7 @@ msgstr "Majota" #. module: base #: model:ir.module.module,shortdesc:base.module_crm_todo msgid "Tasks on CRM" -msgstr "" +msgstr "Uzdevumi bāzēti uz CRM" #. module: base #: model:ir.module.category,name:base.module_category_generic_modules_accounting @@ -3917,7 +3923,7 @@ msgstr "" #. module: base #: selection:ir.sequence,implementation:0 msgid "Standard" -msgstr "" +msgstr "Standarta" #. module: base #: model:res.country,name:base.ru @@ -4272,7 +4278,7 @@ msgstr "Portugāle" #. module: base #: model:ir.module.module,shortdesc:base.module_share msgid "Share any Document" -msgstr "" +msgstr "Koplietot jebkuru dokumentu" #. module: base #: field:workflow.transition,group_id:0 @@ -4343,7 +4349,7 @@ msgstr "Xor" #. module: base #: model:ir.module.category,name:base.module_category_localization_account_charts msgid "Account Charts" -msgstr "" +msgstr "Kontu Plāni" #. module: base #: model:ir.ui.menu,name:base.menu_event_main @@ -4445,7 +4451,7 @@ msgstr "Kopsavilkums" #. module: base #: model:ir.module.category,name:base.module_category_hidden_dependency msgid "Dependency" -msgstr "" +msgstr "Atkarīgie moduļi" #. module: base #: model:ir.module.module,description:base.module_portal @@ -4534,7 +4540,7 @@ msgstr "Darbību izraisošais Objekts" #. module: base #: sql_constraint:ir.sequence.type:0 msgid "`code` must be unique." -msgstr "" +msgstr "'kods' laukam jābūt unikālam." #. module: base #: code:addons/base/ir/workflow/workflow.py:99 @@ -4592,7 +4598,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_project_timesheet msgid "Bill Time on Tasks" -msgstr "" +msgstr "Izrakstīt rēķinus par patērēto laiku" #. module: base #: model:ir.module.category,name:base.module_category_marketing @@ -4888,7 +4894,7 @@ msgstr "" #. module: base #: model:ir.module.category,description:base.module_category_marketing msgid "Helps you manage your marketing campaigns step by step." -msgstr "" +msgstr "Palīdz pārvaldīt mārketinga kampaņas soli pa solim." #. module: base #: selection:base.language.install,lang:0 @@ -4940,7 +4946,7 @@ msgstr "Noteikumi" #. module: base #: field:ir.mail_server,smtp_host:0 msgid "SMTP Server" -msgstr "" +msgstr "SMTP serveris" #. module: base #: code:addons/base/module/module.py:320 @@ -4952,7 +4958,7 @@ msgstr "" #. module: base #: view:base.module.upgrade:0 msgid "The selected modules have been updated / installed !" -msgstr "" +msgstr "Izvēlētie moduļi ir atjaunināti / uzinstalēti!" #. module: base #: selection:base.language.install,lang:0 @@ -5106,7 +5112,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_crm_partner_assign msgid "Partners Geo-Localization" -msgstr "" +msgstr "Partneru Ģeo-lokācija" #. module: base #: model:res.country,name:base.ke @@ -5117,7 +5123,7 @@ msgstr "Kenija" #: model:ir.actions.act_window,name:base.action_translation #: model:ir.ui.menu,name:base.menu_action_translation msgid "Translated Terms" -msgstr "" +msgstr "Tulkotie Termini" #. module: base #: selection:base.language.install,lang:0 @@ -5184,7 +5190,7 @@ msgstr "Benina" #: model:ir.actions.act_window,name:base.action_res_partner_bank_type_form #: model:ir.ui.menu,name:base.menu_action_res_partner_bank_typeform msgid "Bank Account Types" -msgstr "" +msgstr "Bankas Kontu Tipi" #. module: base #: help:ir.sequence,suffix:0 @@ -5320,7 +5326,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_hr_recruitment msgid "Recruitment Process" -msgstr "" +msgstr "Darbā pieņemšanas Process" #. module: base #: model:res.country,name:base.br @@ -5904,7 +5910,7 @@ msgstr "Angļu (CA)" #. module: base #: model:ir.module.category,name:base.module_category_human_resources msgid "Human Resources" -msgstr "" +msgstr "Personāla Vadība" #. module: base #: model:ir.module.module,description:base.module_l10n_syscohada @@ -8735,7 +8741,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_warning msgid "Warning Messages and Alerts" -msgstr "" +msgstr "Brīdinājumi" #. module: base #: model:ir.actions.act_window,name:base.action_ui_view_custom @@ -10463,7 +10469,7 @@ msgstr "" #: view:base.module.upgrade:0 msgid "" "We suggest to reload the menu tab to see the new menus (Ctrl+T then Ctrl+R)." -msgstr "" +msgstr "Lai redzētu jaunās izvēlnes, pārlādējiet logus (Ctrl+T tad Ctrl+R)." #. module: base #: model:ir.actions.act_window,name:base.action_rule @@ -14932,7 +14938,7 @@ msgstr "" #. module: base #: model:ir.module.module,shortdesc:base.module_base_vat msgid "VAT Number Validation" -msgstr "" +msgstr "PVN numura pārbaude" #. module: base #: field:ir.model.fields,complete_name:0 diff --git a/openerp/addons/base/i18n/ro.po b/openerp/addons/base/i18n/ro.po index 7a6ff0b31a8..43b23fcfdcb 100644 --- a/openerp/addons/base/i18n/ro.po +++ b/openerp/addons/base/i18n/ro.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-07 19:35+0000\n" -"PO-Revision-Date: 2013-12-01 10:01+0000\n" +"PO-Revision-Date: 2013-12-07 04:09+0000\n" "Last-Translator: Dorin \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-12-02 05:51+0000\n" -"X-Generator: Launchpad (build 16856)\n" +"X-Launchpad-Export-Date: 2013-12-08 05:45+0000\n" +"X-Generator: Launchpad (build 16869)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -422,7 +422,7 @@ msgstr "" #. module: base #: sql_constraint:res.lang:0 msgid "The name of the language must be unique !" -msgstr "Numele limbii trebuie sa fie unic !" +msgstr "Numele limbii trebuie să fie unic !" #. module: base #: selection:res.request,state:0 @@ -5332,7 +5332,7 @@ msgstr "" #: model:ir.ui.menu,name:base.menu_res_lang_act_window #: view:res.lang:0 msgid "Languages" -msgstr "Limbi" +msgstr "Limba" #. module: base #: selection:workflow.activity,join_mode:0 @@ -9037,7 +9037,7 @@ msgstr "Cod judet" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_multilang msgid "Multi Language Chart of Accounts" -msgstr "Plan de Conturi multi limbi" +msgstr "Plan de Conturi multi limbă" #. module: base #: model:ir.module.module,description:base.module_l10n_gt @@ -9156,7 +9156,7 @@ msgstr "Contabilitate si Finante" #. module: base #: view:ir.module.module:0 msgid "Upgrade" -msgstr "Actualizare" +msgstr "Actualizați" #. module: base #: model:ir.module.module,description:base.module_base_action_rule @@ -9928,7 +9928,7 @@ msgstr "init" #: view:res.partner:0 #: field:res.partner,user_id:0 msgid "Salesperson" -msgstr "Agest de vanzari" +msgstr "Agent de vânzări" #. module: base #: view:res.lang:0 @@ -10869,7 +10869,7 @@ msgstr "" #. module: base #: model:ir.ui.menu,name:base.menu_view_base_module_update msgid "Update Modules List" -msgstr "Actualizati Lista de Module" +msgstr "Actualizați lista de module" #. module: base #: code:addons/base/module/module.py:359 @@ -11738,7 +11738,7 @@ msgstr "Tip de vizualizare" #. module: base #: model:ir.ui.menu,name:base.next_id_2 msgid "User Interface" -msgstr "Interfata Utilizator" +msgstr "Interfață utilizator" #. module: base #: model:ir.module.module,shortdesc:base.module_mrp_byproduct @@ -12789,7 +12789,7 @@ msgstr "Aceasta metoda nu mai exista" #: model:ir.actions.act_window,name:base.action_wizard_update_translations #: model:ir.ui.menu,name:base.menu_wizard_update_translations msgid "Synchronize Terms" -msgstr "Sincronizati Termenii" +msgstr "Sincronizați termenii" #. module: base #: field:res.lang,thousands_sep:0 @@ -13114,7 +13114,7 @@ msgstr "Conturile bancare asociate acestei companii" #: model:ir.ui.menu,name:base.menu_sales #: model:ir.ui.menu,name:base.next_id_64 msgid "Sales" -msgstr "Vanzari" +msgstr "Vânzări" #. module: base #: field:ir.actions.server,child_ids:0 @@ -15626,7 +15626,7 @@ msgstr "ir.valori" #. module: base #: model:ir.model,name:base.model_base_module_update msgid "Update Module" -msgstr "Actualizati Modulul" +msgstr "Actualizați modulul" #. module: base #: view:ir.model.fields:0 @@ -16228,7 +16228,7 @@ msgstr "Administrare" #. module: base #: view:base.module.update:0 msgid "Click on Update below to start the process..." -msgstr "Faceti click pe Actualizare pentru a porni procesul..." +msgstr "Faceți clic pe Actualizați pentru a porni procesul..." #. module: base #: model:res.country,name:base.ir @@ -16267,7 +16267,7 @@ msgstr "" #. module: base #: view:base.update.translations:0 msgid "Synchronize Translation" -msgstr "Sincronizati Traducerea" +msgstr "Sincronizați traducerea" #. module: base #: view:res.partner.bank:0 @@ -16555,7 +16555,7 @@ msgstr "" #. module: base #: field:ir.actions.act_window,auto_refresh:0 msgid "Auto-Refresh" -msgstr "Actualizare automata" +msgstr "Actualizare automată" #. module: base #: model:ir.module.module,description:base.module_product_expiry @@ -16839,7 +16839,7 @@ msgstr "Program de depistare Probleme" #: view:base.module.upgrade:0 #: view:base.update.translations:0 msgid "Update" -msgstr "Actualizare" +msgstr "Actualizați" #. module: base #: model:ir.module.module,description:base.module_plugin From 2382710f6f7324ec2989ea88b9629cb32d9a1413 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Mon, 9 Dec 2013 10:08:02 +0100 Subject: [PATCH 29/30] [REV] mail: removed some changes to be done in trunk, not in 7.0 bzr revid: tde@openerp.com-20131209090802-q8fzn88ia9w6o5pq --- addons/mail/mail_thread.py | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/addons/mail/mail_thread.py b/addons/mail/mail_thread.py index a8755cd1abd..04385c75a59 100644 --- a/addons/mail/mail_thread.py +++ b/addons/mail/mail_thread.py @@ -238,21 +238,16 @@ class mail_thread(osv.AbstractModel): if context is None: context = {} - # subscribe uid unless asked not to - if not context.get('mail_create_nosubscribe'): - pid = self.pool['res.users'].browse(cr, SUPERUSER_ID, uid).partner_id.id - message_follower_ids = values.get('message_follower_ids') - if message_follower_ids is False or message_follower_ids is None: # web client seems to send False as message_follower_ids value - message_follower_ids = [] - message_follower_ids.append([4, pid]) - values['message_follower_ids'] = message_follower_ids - thread_id = super(mail_thread, self).create(cr, uid, values, context=context) # automatic logging unless asked not to (mainly for various testing purpose) if not context.get('mail_create_nolog'): self.message_post(cr, uid, thread_id, body=_('%s created') % (self._description), context=context) + # subscribe uid unless asked not to + if not context.get('mail_create_nosubscribe'): + self.message_subscribe_users(cr, uid, [thread_id], [uid], context=context) + # auto_subscribe: take values and defaults into account create_values = dict(values) for key, val in context.iteritems(): From 3be327c0aef39ce2dfbdd312a9ff1e4488cbf452 Mon Sep 17 00:00:00 2001 From: Denis Ledoux Date: Mon, 9 Dec 2013 15:56:52 +0100 Subject: [PATCH 30/30] [FIX] point_of_sale: ignore TOTAlY returns Returns were partially ignored when typing keystrokes, thanks to a return; when event which equaled 13, but the default behaviour (press on the focused input/button) was not prevented. This is now the case thanks to preventDefault. For instance, just after a discount set, the focused input was pressed and the associated value was added when scanning a new product with the scanner. Therefore, if we entered a discount of 30%, scanning a new product added '0', the last pushed button, to the discount, and then added the product. bzr revid: dle@openerp.com-20131209145652-3g9rgnfz1w8k0whw --- addons/point_of_sale/static/src/js/devices.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/addons/point_of_sale/static/src/js/devices.js b/addons/point_of_sale/static/src/js/devices.js index 0326d71d792..cdd24156c30 100644 --- a/addons/point_of_sale/static/src/js/devices.js +++ b/addons/point_of_sale/static/src/js/devices.js @@ -438,6 +438,10 @@ function openerp_pos_devices(instance,module){ //module is instance.point_of_sal // The barcode readers acts as a keyboard, we catch all keyup events and try to find a // barcode sequence in the typed keys, then act accordingly. this.handler = function(e){ + if(e.which === 13){ //ignore returns + e.preventDefault(); + return; + } //We only care about numbers if (e.which >= 48 && e.which < 58){