From 23ec2a738311826639c42d2896d9525e5d34a704 Mon Sep 17 00:00:00 2001 From: Christophe Matthieu Date: Wed, 17 Apr 2013 15:23:39 +0200 Subject: [PATCH 01/13] [IMP] ir_ui_menu: trunk to 7.0 dynamic counters bzr revid: chm@openerp.com-20130417132339-1d1xkb1lriuvkx9m --- openerp/addons/base/ir/ir_ui_menu.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/openerp/addons/base/ir/ir_ui_menu.py b/openerp/addons/base/ir/ir_ui_menu.py index 5da85c43577..b8786810a12 100644 --- a/openerp/addons/base/ir/ir_ui_menu.py +++ b/openerp/addons/base/ir/ir_ui_menu.py @@ -299,7 +299,24 @@ class ir_ui_menu(osv.osv): the action domain """ res = {} + menu_ids = [] for menu in self.browse(cr, uid, ids, context=context): + menu_ids.append(menu.id) + ctx = None + if menu.action and menu.action.type in ('ir.actions.act_window', 'ir.actions.client') and menu.action.context: + ctx = eval(menu.action.context, context) or None + menu_ref = ctx and ctx.get('needaction_menu_ref') + if menu_ref: + if not isinstance(menu_ref, list): + menu_ref = [menu_ref] + model_data_obj = self.pool.get('ir.model.data') + for menu_data in menu_ref: + model, id = model_data_obj.get_object_reference(cr, uid, menu_data.split('.')[0], menu_data.split('.')[1]) + if (model == 'ir.ui.menu'): + menu_ids.append(id) + menu_ids = list(set(menu_ids)) + + for menu in self.browse(cr, uid, menu_ids, context=context): res[menu.id] = { 'needaction_enabled': False, 'needaction_counter': False, From 14493f56ce5c2d3b21d795b68e63dd0dd1efb738 Mon Sep 17 00:00:00 2001 From: Christophe Matthieu Date: Wed, 17 Apr 2013 15:32:05 +0200 Subject: [PATCH 02/13] [IMP] ir_ui_menu: trunk to 7.0 dynamic counters bzr revid: chm@openerp.com-20130417133205-lx4lh53y6ak29cjc --- addons/crm/crm_lead_menu.xml | 8 +++++- addons/mail/mail_message.py | 8 ++++-- addons/mail/mail_thread_view.xml | 7 +++-- addons/mail/static/src/js/mail.js | 48 +++++++++++++++---------------- addons/sale_crm/sale_crm_view.xml | 5 ++++ 5 files changed, 46 insertions(+), 30 deletions(-) diff --git a/addons/crm/crm_lead_menu.xml b/addons/crm/crm_lead_menu.xml index 8c38ed41a1c..4a75f5e3729 100644 --- a/addons/crm/crm_lead_menu.xml +++ b/addons/crm/crm_lead_menu.xml @@ -9,7 +9,13 @@ ['|', ('type','=','lead'), ('type','=',False)] - {'default_type':'lead', 'stage_type':'lead'} + { + 'default_type':'lead', + 'stage_type':'lead', + 'search_default_unassigned':1, + 'needaction_menu_ref': 'crm.menu_crm_opportunities', + } +

Click to create an unqualified lead. diff --git a/addons/mail/mail_message.py b/addons/mail/mail_message.py index 8261ca35635..914889579a1 100644 --- a/addons/mail/mail_message.py +++ b/addons/mail/mail_message.py @@ -233,6 +233,8 @@ class mail_message(osv.Model): :param bool read: set notification as (un)read :param bool create_missing: create notifications for missing entries (i.e. when acting on displayed messages not notified) + + :return number of message mark as read """ notification_obj = self.pool.get('mail.notification') user_pid = self.pool.get('res.users').read(cr, uid, uid, ['partner_id'], context=context)['partner_id'][0] @@ -243,14 +245,16 @@ class mail_message(osv.Model): # all message have notifications: already set them as (un)read if len(notif_ids) == len(msg_ids) or not create_missing: - return notification_obj.write(cr, uid, notif_ids, {'read': read}, context=context) + notification_obj.write(cr, uid, notif_ids, {'read': read}, context=context) + return len(notif_ids) # some messages do not have notifications: find which one, create notification, update read status notified_msg_ids = [notification.message_id.id for notification in notification_obj.browse(cr, uid, notif_ids, context=context)] to_create_msg_ids = list(set(msg_ids) - set(notified_msg_ids)) for msg_id in to_create_msg_ids: notification_obj.create(cr, uid, {'partner_id': user_pid, 'read': read, 'message_id': msg_id}, context=context) - return notification_obj.write(cr, uid, notif_ids, {'read': read}, context=context) + notification_obj.write(cr, uid, notif_ids, {'read': read}, context=context) + return len(notif_ids) def set_message_starred(self, cr, uid, msg_ids, starred, create_missing=True, context=None): """ Set messages as (un)starred. Technically, the notifications related diff --git a/addons/mail/mail_thread_view.xml b/addons/mail/mail_thread_view.xml index 75c86e4645d..80dac297175 100644 --- a/addons/mail/mail_thread_view.xml +++ b/addons/mail/mail_thread_view.xml @@ -8,6 +8,7 @@ { 'default_model': 'res.users', 'default_res_id': uid, + 'needaction_menu_ref': ['mail.mail_tomefeeds', 'mail.mail_starfeeds'] } { 'default_model': 'res.users', 'default_res_id': uid, - 'search_default_message_unread': True + 'search_default_message_unread': True, + 'needaction_menu_ref': ['mail.mail_starfeeds', 'mail.mail_inboxfeeds'] } mail.wall { 'default_model': 'res.users', - 'default_res_id': uid + 'default_res_id': uid, + 'needaction_menu_ref': ['mail.mail_tomefeeds', 'mail.mail_starfeeds', 'mail.mail_inboxfeeds'] } + + + {'stage_type': 'opportunity', 'default_type': 'opportunity', 'default_user_id': uid, 'needaction_menu_ref': 'sale.menu_sale_quotations'} + + sale.order.inherit sale.order From 027bf19a7ada495ad0bbef58cbe22bee6f21bdc3 Mon Sep 17 00:00:00 2001 From: Christophe Matthieu Date: Wed, 17 Apr 2013 15:34:38 +0200 Subject: [PATCH 03/13] [IMP] ir_ui_menu: trunk to 7.0 dynamic counters bzr revid: chm@openerp.com-20130417133438-1g8h8hezbn1vtjj1 --- addons/web/static/src/js/chrome.js | 42 ++++++++++++++++++++++----- addons/web/static/src/js/view_form.js | 3 ++ addons/web/static/src/js/views.js | 9 ++++-- 3 files changed, 45 insertions(+), 9 deletions(-) diff --git a/addons/web/static/src/js/chrome.js b/addons/web/static/src/js/chrome.js index ef045f07931..dd3ccfe2722 100644 --- a/addons/web/static/src/js/chrome.js +++ b/addons/web/static/src/js/chrome.js @@ -861,9 +861,7 @@ instance.web.Menu = instance.web.Widget.extend({ self.reflow(); // launch the fetch of needaction counters, asynchronous if (!_.isEmpty(menu_data.all_menu_ids)) { - this.rpc("/web/menu/load_needaction", {menu_ids: menu_data.all_menu_ids}).done(function(r) { - self.on_needaction_loaded(r); - }); + this.do_load_needaction(menu_data.all_menu_ids); } }); var lazyreflow = _.debounce(this.reflow.bind(this), 200); @@ -885,19 +883,24 @@ instance.web.Menu = instance.web.Widget.extend({ }); }, menu_loaded: function(data) { - var self = this; this.data = {data: data}; this.renderElement(); this.$secondary_menus.html(QWeb.render("Menu.secondary", { widget : this })); - this.$el.on('click', 'a[data-menu]', this.on_menu_click); + this.$el.on('click', 'a[data-menu]', this.on_top_menu_click); // Hide second level submenus this.$secondary_menus.find('.oe_menu_toggler').siblings('.oe_secondary_submenu').hide(); - if (self.current_menu) { - self.open_menu(self.current_menu); + if (this.current_menu) { + this.open_menu(this.current_menu); } this.trigger('menu_loaded', data); this.has_been_loaded.resolve(); }, + do_load_needaction: function (menu_ids) { + var self = this; + return this.rpc("/web/menu/load_needaction", {'menu_ids': menu_ids}).done(function(r) { + self.on_needaction_loaded(r); + }); + }, on_needaction_loaded: function(data) { var self = this; this.needaction_data = data; @@ -1029,11 +1032,36 @@ instance.web.Menu = instance.web.Widget.extend({ } this.open_menu(id); }, + do_reload_needaction: function () { + var self = this; + self.do_load_needaction([self.current_menu]).then(function () { + self.trigger("need_action_reloaded"); + }); + }, /** * Jquery event handler for menu click * * @param {Event} ev the jquery event */ + on_top_menu_click: function(ev) { + var self = this; + var id = $(ev.currentTarget).data('menu'); + var menu_ids = [id]; + var menu = _.filter(this.data.data.children, function (menu) {return menu.id == id;})[0]; + function add_menu_ids (menu) { + if (menu.children) { + _.each(menu.children, function (menu) { + menu_ids.push(menu.id); + add_menu_ids(menu); + }); + } + }; + add_menu_ids(menu); + self.do_load_needaction(menu_ids).then(function () { + self.trigger("need_action_reloaded"); + }); + this.on_menu_click(ev); + }, on_menu_click: function(ev) { ev.preventDefault(); var needaction = $(ev.target).is('div.oe_menu_counter'); diff --git a/addons/web/static/src/js/view_form.js b/addons/web/static/src/js/view_form.js index 7a853a579cb..b9dfa8e284a 100644 --- a/addons/web/static/src/js/view_form.js +++ b/addons/web/static/src/js/view_form.js @@ -91,6 +91,7 @@ instance.web.FormView = instance.web.View.extend(instance.web.form.FieldManagerM init: function(parent, dataset, view_id, options) { var self = this; this._super(parent); + this.ViewManager = parent; this.set_default_options(options); this.dataset = dataset; this.model = dataset.model; @@ -720,6 +721,8 @@ instance.web.FormView = instance.web.View.extend(instance.web.form.FieldManagerM return this.save().done(function(result) { self.trigger("save", result); self.to_view_mode(); + }).then(function(result) { + self.ViewManager.ActionManager.__parentedParent.menu.do_reload_needaction(); }); }, on_button_cancel: function(event) { diff --git a/addons/web/static/src/js/views.js b/addons/web/static/src/js/views.js index 0a7250397f7..eb4d4bb0b11 100644 --- a/addons/web/static/src/js/views.js +++ b/addons/web/static/src/js/views.js @@ -521,6 +521,7 @@ instance.web.ViewManager = instance.web.Widget.extend({ return x; } }); + this.ActionManager = parent; this.views = {}; this.flags = flags || {}; this.registry = instance.web.views; @@ -1259,6 +1260,7 @@ instance.web.View = instance.web.Widget.extend({ view_type: undefined, init: function(parent, dataset, view_id, options) { this._super(parent); + this.ViewManager = parent; this.dataset = dataset; this.view_id = view_id; this.set_default_options(options); @@ -1330,7 +1332,6 @@ instance.web.View = instance.web.Widget.extend({ } }; var context = new instance.web.CompoundContext(dataset.get_context(), action_data.context || {}); - var handler = function (action) { if (action && action.constructor == Object) { var ncontext = new instance.web.CompoundContext(context); @@ -1367,7 +1368,11 @@ instance.web.View = instance.web.Widget.extend({ } } args.push(context); - return dataset.call_button(action_data.name, args).then(handler); + return dataset.call_button(action_data.name, args).then(handler).then(function () { + if (self.ViewManager.ActionManager) { + self.ViewManager.ActionManager.__parentedParent.menu.do_reload_needaction(); + } + }); } else if (action_data.type=="action") { return this.rpc('/web/action/load', { action_id: action_data.name, From 5f76e998a52b93f0ba1a8bf42fca42815a51bdab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Thu, 25 Apr 2013 16:28:01 +0200 Subject: [PATCH 04/13] [CLEAN] cleaning: set(list), use directly a set bzr revid: tde@openerp.com-20130425142801-gwk9xsnhb3r20jji --- openerp/addons/base/ir/ir_ui_menu.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/openerp/addons/base/ir/ir_ui_menu.py b/openerp/addons/base/ir/ir_ui_menu.py index b8786810a12..647f714fd81 100644 --- a/openerp/addons/base/ir/ir_ui_menu.py +++ b/openerp/addons/base/ir/ir_ui_menu.py @@ -299,9 +299,9 @@ class ir_ui_menu(osv.osv): the action domain """ res = {} - menu_ids = [] + menu_ids = set() for menu in self.browse(cr, uid, ids, context=context): - menu_ids.append(menu.id) + menu_ids.add(menu.id) ctx = None if menu.action and menu.action.type in ('ir.actions.act_window', 'ir.actions.client') and menu.action.context: ctx = eval(menu.action.context, context) or None @@ -313,8 +313,8 @@ class ir_ui_menu(osv.osv): for menu_data in menu_ref: model, id = model_data_obj.get_object_reference(cr, uid, menu_data.split('.')[0], menu_data.split('.')[1]) if (model == 'ir.ui.menu'): - menu_ids.append(id) - menu_ids = list(set(menu_ids)) + menu_ids.add(id) + menu_ids = list(menu_ids) for menu in self.browse(cr, uid, menu_ids, context=context): res[menu.id] = { From 9c88589286a6827c09ebea836891913bc61e35c5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Thu, 25 Apr 2013 16:38:07 +0200 Subject: [PATCH 05/13] [FIX] project_gtd: added missing 'message_unread' filter to use in conjunction with the needaction counter. bzr revid: tde@openerp.com-20130425143807-h94ivrj0eftvakte --- addons/project_gtd/project_gtd_view.xml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/project_gtd/project_gtd_view.xml b/addons/project_gtd/project_gtd_view.xml index 1467ce55fab..4bfd5b783c7 100644 --- a/addons/project_gtd/project_gtd_view.xml +++ b/addons/project_gtd/project_gtd_view.xml @@ -106,6 +106,8 @@ + + From 4e50f6861f9119167b005e9d208d3595fb80ecdf Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Fri, 26 Apr 2013 06:23:50 +0000 Subject: [PATCH 06/13] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20130426062350-ld4zwiqlk38jvfw1 --- openerp/addons/base/i18n/et.po | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/openerp/addons/base/i18n/et.po b/openerp/addons/base/i18n/et.po index 8c36410cd28..1fccb19092f 100644 --- a/openerp/addons/base/i18n/et.po +++ b/openerp/addons/base/i18n/et.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-server\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-03-07 08:36+0000\n" -"PO-Revision-Date: 2012-12-26 19:26+0000\n" -"Last-Translator: Ahti Hinnov \n" +"PO-Revision-Date: 2013-04-25 15:21+0000\n" +"Last-Translator: Illimar Saatväli \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-03-08 05:17+0000\n" -"X-Generator: Launchpad (build 16523)\n" +"X-Launchpad-Export-Date: 2013-04-26 06:23+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -39,7 +39,7 @@ msgstr "Saint Helena" #. module: base #: view:ir.actions.report.xml:0 msgid "Other Configuration" -msgstr "" +msgstr "Muu Konfiguratsioon" #. module: base #: selection:ir.property,type:0 @@ -90,7 +90,7 @@ msgstr "" #. module: base #: model:ir.module.module,summary:base.module_point_of_sale msgid "Touchscreen Interface for Shops" -msgstr "" +msgstr "Puutetundlik liides kauplustele" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_in_hr_payroll @@ -106,7 +106,7 @@ msgstr "" #. module: base #: view:ir.module.module:0 msgid "Created Views" -msgstr "Loodud vaated" +msgstr "Loodud Vaated" #. module: base #: model:ir.module.module,description:base.module_product_manufacturer @@ -127,7 +127,7 @@ msgstr "" #. module: base #: field:ir.actions.client,params:0 msgid "Supplementary arguments" -msgstr "" +msgstr "Täiendavad argumendid" #. module: base #: model:ir.module.module,description:base.module_google_base_account From 7561f48578199a242da052401318055130752c12 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Fri, 26 Apr 2013 06:24:16 +0000 Subject: [PATCH 07/13] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20130426062412-awemubat7ag9ji19 bzr revid: launchpad_translations_on_behalf_of_openerp-20130426062416-6321y5y98sute3k0 --- addons/account/i18n/es_MX.po | 2 +- addons/mail/i18n/fr.po | 8 ++-- addons/sale/i18n/hu.po | 60 +++++++++++++-------------- addons/stock/i18n/tr.po | 8 +++- addons/web/i18n/et.po | 68 +++++++++++++++---------------- addons/web_calendar/i18n/et.po | 10 ++--- addons/web_diagram/i18n/et.po | 17 ++++---- addons/web_graph/i18n/et.po | 12 +++--- addons/web_kanban/i18n/et.po | 28 +++++++------ addons/web_view_editor/i18n/et.po | 10 ++--- 10 files changed, 117 insertions(+), 106 deletions(-) diff --git a/addons/account/i18n/es_MX.po b/addons/account/i18n/es_MX.po index dbf386fa704..0fa44286eec 100644 --- a/addons/account/i18n/es_MX.po +++ b/addons/account/i18n/es_MX.po @@ -14,7 +14,7 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-25 06:05+0000\n" +"X-Launchpad-Export-Date: 2013-04-26 06:23+0000\n" "X-Generator: Launchpad (build 16580)\n" #. module: account diff --git a/addons/mail/i18n/fr.po b/addons/mail/i18n/fr.po index 99208756505..ff0bc16325e 100644 --- a/addons/mail/i18n/fr.po +++ b/addons/mail/i18n/fr.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-04-23 12:15+0000\n" -"Last-Translator: Gilles Major (OpenERP) \n" +"PO-Revision-Date: 2013-04-25 15:46+0000\n" +"Last-Translator: WANTELLET Sylvain \n" "Language-Team: French \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-24 05:28+0000\n" +"X-Launchpad-Export-Date: 2013-04-26 06:24+0000\n" "X-Generator: Launchpad (build 16580)\n" #. module: mail @@ -551,7 +551,7 @@ msgstr "ce document" #: view:mail.compose.message:0 #, python-format msgid "Send" -msgstr "Envoyé" +msgstr "Envoyer" #. module: mail #. openerp-web diff --git a/addons/sale/i18n/hu.po b/addons/sale/i18n/hu.po index 7de1afd677e..c79b5073772 100644 --- a/addons/sale/i18n/hu.po +++ b/addons/sale/i18n/hu.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-04-11 23:17+0000\n" +"PO-Revision-Date: 2013-04-25 06:59+0000\n" "Last-Translator: Krisztian Eyssen \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-12 06:05+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-04-26 06:24+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: sale #: model:ir.model,name:sale.model_mail_compose_message @@ -249,7 +249,7 @@ msgstr "Árajánlat megerősítve" #: selection:sale.order,state:0 #: selection:sale.report,state:0 msgid "Invoice Exception" -msgstr "Számlázási hiba" +msgstr "Számlázási kivétel" #. module: sale #: view:sale.order:0 @@ -259,7 +259,7 @@ msgstr "Árajánlat " #. module: sale #: selection:sale.order,state:0 msgid "Draft Quotation" -msgstr "Árajánlat sablon" +msgstr "Árajánlat tervezet" #. module: sale #: field:sale.order,partner_shipping_id:0 @@ -281,7 +281,7 @@ msgstr "Engedélyezi a köteg számlázást a megrendeléseken a naplók alapjá #. module: sale #: field:sale.order.line,price_subtotal:0 msgid "Subtotal" -msgstr "Részösszeg" +msgstr "Nettó érték" #. module: sale #: view:sale.report:0 @@ -334,12 +334,12 @@ msgstr "Lehetővé teszi a megrendelés soraihoz árengedmény alkalmazását" #. module: sale #: view:sale.order.line:0 msgid "Sales Order Lines that are in 'done' state" -msgstr "Megrendelés sorai melyek 'elvégezve' állapotúak" +msgstr "'Elvégzett' állapotú megrendelési sorok" #. module: sale #: selection:sale.order.line,type:0 msgid "on order" -msgstr "Megendelésre" +msgstr "megrendelésre" #. module: sale #: field:sale.order,message_ids:0 @@ -360,12 +360,12 @@ msgstr "Adók" #. module: sale #: field:sale.order,amount_untaxed:0 msgid "Untaxed Amount" -msgstr "Nettó érték" +msgstr "Nettó összeg" #. module: sale #: field:sale.config.settings,module_project:0 msgid "Project" -msgstr "Projekt" +msgstr "" #. module: sale #: code:addons/sale/sale.py:185 @@ -381,7 +381,7 @@ msgstr "Hiba!" #. module: sale #: report:sale.order:0 msgid "Net Total :" -msgstr "Nettó ár:" +msgstr "Nettó érték :" #. module: sale #: help:sale.order.line,type:0 @@ -390,9 +390,9 @@ msgid "" "replenishment.\n" "On order: When needed, the product is purchased or produced." msgstr "" -"Raktárról: Ha kell, a terméket a raktárról vesszük vagy várunk az alkatrész " -"feltöltésre.\n" -"Megrendelve: Ha kell, a terméket megvásároljuk vagy legyártjuk." +"Raktárról: Ha szükség van rá, a terméket a raktárról vesszük vagy várunk az " +"alkatrész feltöltésre.\n" +"Megrendelve: Ha szükség van rá, a terméket megvásároljuk vagy legyártjuk." #. module: sale #: help:sale.config.settings,module_analytic_user_function:0 @@ -419,7 +419,7 @@ msgstr "" #: selection:sale.order.line,state:0 #: selection:sale.report,state:0 msgid "Cancelled" -msgstr "Visszavonva" +msgstr "Érvénytelenített" #. module: sale #: view:sale.order.line:0 @@ -491,11 +491,11 @@ msgid "" msgstr "" "Használja mindet a végszámla elkészítéséhez.\n" " Használjon százalékot a teljes mennyiség bizonyos " -"százalékának szálázásához.\n" +"százalékának számlázásához.\n" " Használjon fix árat egy bizonyos mennyiség díjbekérőjéhez / " "előlegéhez.\n" " Használjon egyes megrendelés sorokat a kiválasztott " -"megrendelés sorainak számlázásáahoz." +"megrendelés sorainak számlázásához." #. module: sale #: view:sale.make.invoice:0 @@ -506,7 +506,7 @@ msgstr "Számlák létrehozása" #. module: sale #: report:sale.order:0 msgid "Tax" -msgstr "ÁFA" +msgstr "Adó" #. module: sale #: code:addons/sale/sale.py:278 @@ -531,7 +531,7 @@ msgstr "" "elvégzésekkor egy számla érvényesítésekor (Számla kizárás) " "vagy a kiválogatási lista műveletekben (Szállítási kizárás).\n" "A 'Ütemezésre várakozás' állapot lesz beállítva, ha a számla megerősített " -" de vár egy, a megrendelés dátumára futó ütemezésre." +" de vár egy, a megrendelés dátumán futó ütemezésre." #. module: sale #: field:sale.report,date_confirm:0 @@ -542,7 +542,7 @@ msgstr "Megerősítés dátuma" #: view:sale.report:0 #: field:sale.report,nbr:0 msgid "# of Lines" -msgstr "Sorok száma" +msgstr "# sorok száma" #. module: sale #: help:sale.order,message_summary:0 @@ -557,7 +557,7 @@ msgstr "" #: help:sale.order.line,sequence:0 msgid "Gives the sequence order when displaying a list of sales order lines." msgstr "" -"A megrendelés sorrendet adja ha a megrendelési sorok listáját jelzi ki." +"A megrendelés sorrendet adja a megrendelési sorok listájának kijelzésekor." #. module: sale #: view:sale.report:0 @@ -582,7 +582,7 @@ msgstr "" #. module: sale #: view:sale.order:0 msgid "(update)" -msgstr "(Frissítés)" +msgstr "(frissítés)" #. module: sale #: model:ir.model,name:sale.model_res_partner @@ -608,7 +608,7 @@ msgstr "Szerződés tulajdonságai" #: selection:sale.order,state:0 #, python-format msgid "Sales Order" -msgstr "Értékesítési megbízás" +msgstr "Vevői megrendelés" #. module: sale #: model:res.groups,name:sale.group_invoice_so_lines @@ -618,7 +618,7 @@ msgstr "Megrendelés sorai számlázásának engedélyezése" #. module: sale #: model:ir.model,name:sale.model_sale_order_line msgid "Sales Order Line" -msgstr "Értékesítési megbízási sor" +msgstr "Vevői megrendelés sor" #. module: sale #: field:sale.advance.payment.inv,amount:0 @@ -628,7 +628,7 @@ msgstr "Előleg összege" #. module: sale #: help:sale.order,invoice_exists:0 msgid "It indicates that sales order has at least one invoice." -msgstr "Ez mutatja, hogy a megrendelének legalább egy számlája van." +msgstr "Ez mutatja, hogy a megrendelésnek legalább egy számlája van." #. module: sale #: help:sale.config.settings,group_sale_pricelist:0 @@ -643,7 +643,7 @@ msgstr "" #. module: sale #: field:sale.config.settings,module_analytic_user_function:0 msgid "One employee can have different roles per contract" -msgstr "Egy munkavállalónak különböző funkciója lehet egy szerződésen belül" +msgstr "Egy alkalmazottnak különböző funkciója lehet egy szerződésen belül" #. module: sale #: selection:sale.advance.payment.inv,advance_payment_method:0 @@ -658,19 +658,19 @@ msgstr "Alapértelmezett fizetési feltétel" #. module: sale #: model:process.transition.action,name:sale.process_transition_action_confirm0 msgid "Confirm" -msgstr "Megerősítés" +msgstr "Jóváhagyás" #. module: sale #: field:sale.config.settings,timesheet:0 msgid "Prepare invoices based on timesheets" -msgstr "Az időkimutatások alapján készítsen elő számlát" +msgstr "Az időkimutatások alapján készítsen elő, számlát" #. module: sale #: code:addons/sale/sale.py:820 #, python-format msgid "You cannot cancel a sales order line that has already been invoiced." msgstr "" -"Nem tud olyan megrendelési sort visszavonni amelyik már számlázva volt." +"Nem tud olyan vevői megrendelési sort visszavonni amelyik már számlázva volt." #. module: sale #: view:account.invoice.report:0 @@ -719,7 +719,7 @@ msgstr "Megrendelés száma" #: view:sale.order:0 #: field:sale.order,order_line:0 msgid "Order Lines" -msgstr "Megrendelési tételek" +msgstr "Megrendelés sorok" #. module: sale #: report:sale.order:0 diff --git a/addons/stock/i18n/tr.po b/addons/stock/i18n/tr.po index 44337f5b311..1e5da83fd8a 100644 --- a/addons/stock/i18n/tr.po +++ b/addons/stock/i18n/tr.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-04-22 19:01+0000\n" +"PO-Revision-Date: 2013-04-25 14:31+0000\n" "Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-23 06:10+0000\n" +"X-Launchpad-Export-Date: 2013-04-26 06:24+0000\n" "X-Generator: Launchpad (build 16580)\n" #. module: stock @@ -4096,6 +4096,10 @@ msgid "" "default value for all products in this category. It can also directly be set " "on each product" msgstr "" +"Gerçek-zamanlı envanter değerlemesi yaparken, hedef konuma özel bir " +"değerleme hesabı ayarlanmadıkça, çıkan tüm stok hareketlerinin günlük " +"öğeleri bu hesaba işlenecektir. Bu, bu kategorideki tüm ürünler için " +"varsayılan değerdir. Aynı zamanda her ürünü de doğrudan ayarlanabilir." #. module: stock #: field:stock.picking,message_ids:0 diff --git a/addons/web/i18n/et.po b/addons/web/i18n/et.po index 604ca8af8bc..34cce36cad7 100644 --- a/addons/web/i18n/et.po +++ b/addons/web/i18n/et.po @@ -8,28 +8,38 @@ msgstr "" "Project-Id-Version: openerp-web\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-03-07 08:39+0000\n" -"PO-Revision-Date: 2013-01-06 20:00+0000\n" -"Last-Translator: Ahti Hinnov \n" +"PO-Revision-Date: 2013-04-25 14:18+0000\n" +"Last-Translator: Illimar Saatväli \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-03-29 05:09+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-04-26 06:24+0000\n" +"X-Generator: Launchpad (build 16580)\n" + +#. module: web +#. openerp-web +#: code:addons/web/static/src/js/view_form.js:4168 +#: code:addons/web/static/src/js/view_form.js:4329 +#: code:addons/web/static/src/xml/base.xml:1416 +#: code:addons/web/static/src/xml/base.xml:1703 +#, python-format +msgid "Add" +msgstr "Lisa" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:133 #, python-format msgid "Default language:" -msgstr "Vaikimisi keel" +msgstr "Vaikimisi keel:" #. module: web #. openerp-web #: code:addons/web/static/src/js/coresetup.js:588 #, python-format msgid "%d minutes ago" -msgstr "%d minuti eest" +msgstr "%d minutit tagasi" #. module: web #. openerp-web @@ -75,7 +85,7 @@ msgstr "Ülemsalasõna" #: code:addons/web/static/src/xml/base.xml:274 #, python-format msgid "Change Master Password" -msgstr "Ülemsalasõna Muutmine" +msgstr "Muuda ülemsalasõna" #. module: web #. openerp-web @@ -126,7 +136,7 @@ msgstr "Andmebaasi Varundamine" #: code:addons/web/static/src/js/views.js:507 #, python-format msgid "%(view_type)s view" -msgstr "" +msgstr "%(view_type)s vaade" #. module: web #. openerp-web @@ -141,7 +151,7 @@ msgstr "%s ei ole kehtiv kuupäev" #: code:addons/web/static/src/xml/base.xml:1835 #, python-format msgid "Here is a preview of the file we could not import:" -msgstr "" +msgstr "Siin on ülevaade failist mida me ei saa importida:" #. module: web #. openerp-web @@ -213,14 +223,14 @@ msgstr "Viimase muudatuse kuupäev:" #: code:addons/web/static/src/js/search.js:1558 #, python-format msgid "M2O search fields do not currently handle multiple default values" -msgstr "" +msgstr "M2O otsing väljad ei saa hetkel hakkama mitme vaikeväärtused" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:1227 #, python-format msgid "Widget type '%s' is not implemented" -msgstr "" +msgstr "Vidina tüüp '% s' ei ole rakendatud" #. module: web #. openerp-web @@ -249,7 +259,7 @@ msgstr "" #: code:addons/web/static/src/js/formats.js:286 #, python-format msgid "'%s' is not a correct time" -msgstr "" +msgstr "'% s' ei ole õige aeg" #. module: web #. openerp-web @@ -277,7 +287,7 @@ msgstr "Manus:" #: code:addons/web/static/src/xml/base.xml:1689 #, python-format msgid "Fields to export" -msgstr "" +msgstr "Väljad eksportimiseks" #. module: web #. openerp-web @@ -305,7 +315,7 @@ msgstr "umbes kuu eest" #: code:addons/web/static/src/xml/base.xml:1598 #, python-format msgid "Custom Filters" -msgstr "" +msgstr "Kohandatud Filtrid" #. module: web #. openerp-web @@ -355,7 +365,7 @@ msgstr "Muuda Salasõna" #: code:addons/web/static/src/js/view_form.js:3445 #, python-format msgid "View type '%s' is not supported in One2Many." -msgstr "" +msgstr "Vaate tüüp '% s' ei ole toetatud One2Manys." #. module: web #. openerp-web @@ -363,7 +373,7 @@ msgstr "" #: code:addons/web/static/src/js/view_list.js:2209 #, python-format msgid "Download" -msgstr "" +msgstr "Lae alla" #. module: web #. openerp-web @@ -384,7 +394,7 @@ msgstr "Grupp" #: code:addons/web/static/src/xml/base.xml:930 #, python-format msgid "Unhandled widget" -msgstr "" +msgstr "Töötlemata vidin" #. module: web #. openerp-web @@ -418,7 +428,7 @@ msgstr "...Toimub üleslaadimine..." #: code:addons/web/static/src/xml/base.xml:1766 #, python-format msgid "Import" -msgstr "Import" +msgstr "Impordi" #. module: web #. openerp-web @@ -439,7 +449,7 @@ msgstr "Faili üleslaadimine" #: code:addons/web/static/src/js/view_form.js:3838 #, python-format msgid "Action Button" -msgstr "" +msgstr "Tegevus Nupp" #. module: web #. openerp-web @@ -503,7 +513,7 @@ msgstr "Vaata Logi (perm_read)" #: code:addons/web/static/src/js/view_form.js:1057 #, python-format msgid "Set Default" -msgstr "" +msgstr "Määra vaikimisi" #. module: web #. openerp-web @@ -573,7 +583,7 @@ msgstr "" #: code:addons/web/static/src/js/view_form.js:2359 #, python-format msgid "Resource error" -msgstr "" +msgstr "Ressurss vigane" #. module: web #. openerp-web @@ -587,7 +597,7 @@ msgstr "ei ole" #: code:addons/web/static/src/xml/base.xml:553 #, python-format msgid "Print Workflow" -msgstr "" +msgstr "Trüki Töövoog" #. module: web #. openerp-web @@ -647,7 +657,7 @@ msgstr "" #: code:addons/web/static/src/js/search.js:2137 #, python-format msgid "is set" -msgstr "" +msgstr "on määratud" #. module: web #. openerp-web @@ -846,17 +856,7 @@ msgstr "Filtri nimi" #: code:addons/web/static/src/xml/base.xml:1471 #, python-format msgid "-- Actions --" -msgstr "" - -#. module: web -#. openerp-web -#: code:addons/web/static/src/js/view_form.js:4168 -#: code:addons/web/static/src/js/view_form.js:4329 -#: code:addons/web/static/src/xml/base.xml:1416 -#: code:addons/web/static/src/xml/base.xml:1703 -#, python-format -msgid "Add" -msgstr "Lisa" +msgstr "-- Toimingud --" #. module: web #. openerp-web diff --git a/addons/web_calendar/i18n/et.po b/addons/web_calendar/i18n/et.po index dbf900dfc91..1dc1ceb4017 100644 --- a/addons/web_calendar/i18n/et.po +++ b/addons/web_calendar/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-03-07 08:39+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: Ahti Hinnov \n" +"PO-Revision-Date: 2013-04-25 12:51+0000\n" +"Last-Translator: Illimar Saatväli \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-03-29 05:10+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-04-26 06:24+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: web_calendar #. openerp-web @@ -36,7 +36,7 @@ msgstr "Üksikasjad" #: code:addons/web_calendar/static/src/js/calendar.js:487 #, python-format msgid "Edit: %s" -msgstr "" +msgstr "Muuda: %s" #. module: web_calendar #. openerp-web diff --git a/addons/web_diagram/i18n/et.po b/addons/web_diagram/i18n/et.po index d025ca77d25..e6bf80357b4 100644 --- a/addons/web_diagram/i18n/et.po +++ b/addons/web_diagram/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-03-07 08:39+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: Ahti Hinnov \n" +"PO-Revision-Date: 2013-04-25 14:34+0000\n" +"Last-Translator: Illimar Saatväli \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-03-29 05:10+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-04-26 06:24+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: web_diagram #. openerp-web @@ -23,7 +23,7 @@ msgstr "" #: code:addons/web_diagram/static/src/js/diagram.js:317 #, python-format msgid "Open: " -msgstr "" +msgstr "Avatud: " #. module: web_diagram #. openerp-web @@ -49,7 +49,7 @@ msgstr "Uus sõlm" #: code:addons/web_diagram/static/src/js/diagram.js:329 #, python-format msgid "Transition" -msgstr "" +msgstr "Üleminek" #. module: web_diagram #. openerp-web @@ -64,7 +64,7 @@ msgstr "Diagramm" #: code:addons/web_diagram/static/src/js/diagram.js:278 #, python-format msgid "Activity" -msgstr "" +msgstr "Tegevus" #. module: web_diagram #. openerp-web @@ -97,3 +97,6 @@ msgid "" "\n" "Are you sure ?" msgstr "" +"Peale kustutamist ei saa seda tagasi võtta.\n" +"\n" +"Oled sa kindel?" diff --git a/addons/web_graph/i18n/et.po b/addons/web_graph/i18n/et.po index 30a7fd6c7eb..7a6dd250f5d 100644 --- a/addons/web_graph/i18n/et.po +++ b/addons/web_graph/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-03-07 08:39+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: Ahti Hinnov \n" +"PO-Revision-Date: 2013-04-25 14:41+0000\n" +"Last-Translator: Illimar Saatväli \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-03-29 05:10+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-04-26 06:24+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: web_graph #. openerp-web @@ -64,7 +64,7 @@ msgstr "Sektor" #: code:addons/web_graph/static/src/xml/web_graph.xml:28 #, python-format msgid "Actions" -msgstr "Toimingud" +msgstr "Tegevused" #. module: web_graph #. openerp-web @@ -92,7 +92,7 @@ msgstr "Lae alla PNG" #: code:addons/web_graph/static/src/xml/web_graph.xml:26 #, python-format msgid "Top" -msgstr "Üleval" +msgstr "Üles" #. module: web_graph #. openerp-web diff --git a/addons/web_kanban/i18n/et.po b/addons/web_kanban/i18n/et.po index 7984ff53852..f39dd6c8625 100644 --- a/addons/web_kanban/i18n/et.po +++ b/addons/web_kanban/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-03-07 08:39+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: Ahti Hinnov \n" +"PO-Revision-Date: 2013-04-25 14:53+0000\n" +"Last-Translator: Illimar Saatväli \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-03-29 05:10+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-04-26 06:24+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: web_kanban #. openerp-web @@ -29,7 +29,7 @@ msgstr "Muuda veergu" #: code:addons/web_kanban/static/src/xml/web_kanban.xml:80 #, python-format msgid "Show more... (" -msgstr "" +msgstr "Näita rohkem ... (" #. module: web_kanban #. openerp-web @@ -50,7 +50,7 @@ msgstr "Määramata" #: code:addons/web_kanban/static/src/js/kanban.js:705 #, python-format msgid "Are you sure to remove this column ?" -msgstr "" +msgstr "Kas oled kindel, et soovid seda veergu eemaldada ?" #. module: web_kanban #. openerp-web @@ -86,7 +86,7 @@ msgstr "Lisa uus veerg" #: code:addons/web_kanban/static/src/xml/web_kanban.xml:45 #, python-format msgid "Fold" -msgstr "" +msgstr "Voldi" #. module: web_kanban #. openerp-web @@ -100,21 +100,21 @@ msgstr "Lisa" #: code:addons/web_kanban/static/src/xml/web_kanban.xml:35 #, python-format msgid "Quick create" -msgstr "" +msgstr "Kiirloomine" #. module: web_kanban #. openerp-web #: code:addons/web_kanban/static/src/js/kanban.js:918 #, python-format msgid "Are you sure you want to delete this record ?" -msgstr "" +msgstr "Kas oled kindel, et soovd selle kirje kustutada?" #. module: web_kanban #. openerp-web #: code:addons/web_kanban/static/src/js/kanban.js:677 #, python-format msgid "Unfold" -msgstr "" +msgstr "Voldi lahti" #. module: web_kanban #. openerp-web @@ -128,14 +128,14 @@ msgstr "Loobu" #: code:addons/web_kanban/static/src/xml/web_kanban.xml:80 #, python-format msgid "remaining)" -msgstr "" +msgstr "ülejäänud)" #. module: web_kanban #. openerp-web #: code:addons/web_kanban/static/src/js/kanban.js:421 #, python-format msgid "An error has occured while moving the record to this group: " -msgstr "" +msgstr "Tekkis viga selle kirje kolimisel sellesse gruppi: " #. module: web_kanban #. openerp-web @@ -159,3 +159,7 @@ msgstr "99+" #, python-format msgid "Delete" msgstr "Eemalda" + +#, python-format +#~ msgid "An error has occured while moving the record to this group." +#~ msgstr "Tekkis viga selle kirje kolimisel sellesse gruppi." diff --git a/addons/web_view_editor/i18n/et.po b/addons/web_view_editor/i18n/et.po index 3474e7e195e..0c01a5becf5 100644 --- a/addons/web_view_editor/i18n/et.po +++ b/addons/web_view_editor/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-03-07 08:39+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: Ahti Hinnov \n" +"PO-Revision-Date: 2013-04-25 15:00+0000\n" +"Last-Translator: Illimar Saatväli \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-03-29 05:10+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-04-26 06:24+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: web_view_editor #. openerp-web @@ -122,7 +122,7 @@ msgstr "Muuda" #: code:addons/web_view_editor/static/src/js/view_editor.js:14 #, python-format msgid "Could not find current view declaration" -msgstr "" +msgstr "Ei leia praeguse vaate deklaratsiooni" #. module: web_view_editor #. openerp-web From c625881c1f6ad97b55b61c6fa5dd9a5a38a1e541 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Fri, 26 Apr 2013 09:56:38 +0200 Subject: [PATCH 08/13] [REV] Removed change not related to this branch. bzr revid: tde@openerp.com-20130426075638-ofea10g8ll0z2h64 --- addons/crm/crm_lead_menu.xml | 1 - 1 file changed, 1 deletion(-) diff --git a/addons/crm/crm_lead_menu.xml b/addons/crm/crm_lead_menu.xml index 4a75f5e3729..13bef31399b 100644 --- a/addons/crm/crm_lead_menu.xml +++ b/addons/crm/crm_lead_menu.xml @@ -12,7 +12,6 @@ { 'default_type':'lead', 'stage_type':'lead', - 'search_default_unassigned':1, 'needaction_menu_ref': 'crm.menu_crm_opportunities', } From 1088554b40640ba3e81d25e19bfe49607a92c28a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thibault=20Delavall=C3=A9e?= Date: Fri, 26 Apr 2013 09:56:50 +0200 Subject: [PATCH 09/13] [REV] Removed code changed not related to this branch. bzr revid: tde@openerp.com-20130426075650-jxzw3h52idj2zp7y --- addons/web/static/src/js/chrome.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/addons/web/static/src/js/chrome.js b/addons/web/static/src/js/chrome.js index 69c26049a2e..e6870b82629 100644 --- a/addons/web/static/src/js/chrome.js +++ b/addons/web/static/src/js/chrome.js @@ -885,14 +885,15 @@ instance.web.Menu = instance.web.Widget.extend({ }); }, menu_loaded: function(data) { + var self = this; this.data = {data: data}; this.renderElement(); this.$secondary_menus.html(QWeb.render("Menu.secondary", { widget : this })); this.$el.on('click', 'a[data-menu]', this.on_top_menu_click); // Hide second level submenus this.$secondary_menus.find('.oe_menu_toggler').siblings('.oe_secondary_submenu').hide(); - if (this.current_menu) { - this.open_menu(this.current_menu); + if (self.current_menu) { + self.open_menu(self.current_menu); } this.trigger('menu_loaded', data); this.has_been_loaded.resolve(); From 2f0ac65b59cdbbee9f1a48f667b6b7540df4ce3e Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Fri, 26 Apr 2013 18:11:06 +0200 Subject: [PATCH 10/13] [FIX] rml2pdf: more incorrect license headers in some source files, reported by Alec Leamas Mixing LGPL 2.1 and AGPL 3.0 in the same source file is incorrect, and the AGPLv3 license was added by mistake: keep only LGPL license and preserve copypright info. lp bug: https://launchpad.net/bugs/1167034 fixed bzr revid: odo@openerp.com-20130426161106-wdb2mw4u541zfwfy --- openerp/report/render/rml2pdf/utils.py | 22 +++------------------- 1 file changed, 3 insertions(+), 19 deletions(-) diff --git a/openerp/report/render/rml2pdf/utils.py b/openerp/report/render/rml2pdf/utils.py index 273d5815609..79ae31ea755 100644 --- a/openerp/report/render/rml2pdf/utils.py +++ b/openerp/report/render/rml2pdf/utils.py @@ -1,26 +1,8 @@ # -*- coding: utf-8 -*- ############################################################################## # -# OpenERP, Open Source Management Solution -# Copyright (C) 2004-2009 Tiny SPRL (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as -# published by the Free Software Foundation, either version 3 of the -# License, or (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . -# -############################################################################## - -# trml2pdf - An RML to PDF converter # Copyright (C) 2003, Fabien Pinckaers, UCL, FSA +# Copyright (C) 2004-2009 Tiny SPRL (). # # This library is free software; you can redistribute it and/or # modify it under the terms of the GNU Lesser General Public @@ -35,6 +17,8 @@ # You should have received a copy of the GNU Lesser General Public # License along with this library; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +# +############################################################################## import copy import locale From df64fbd27649441653aaf1ca7a813cf401509192 Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Fri, 26 Apr 2013 18:13:16 +0200 Subject: [PATCH 11/13] [FIX] base_report_designer: more incorrect license headers in some source files, reported and contributed by Alec Leamas Mixing LGPL 2.1 and AGPL 3.0 in the same source file is incorrect, and the AGPLv3 license was added by mistake: keep only LGPL license and preserve copypright info. lp bug: https://launchpad.net/bugs/1167034 fixed bzr revid: odo@openerp.com-20130426161316-hox8tnep8gl4xa1n --- .../bin/script/lib/actions.py | 52 +++++-------------- .../bin/script/lib/error.py | 52 +++++-------------- .../bin/script/lib/functions.py | 52 +++++-------------- .../bin/script/lib/gui.py | 52 +++++-------------- 4 files changed, 56 insertions(+), 152 deletions(-) diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/actions.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/actions.py index 8511bb8343d..03c632aeaa9 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/actions.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/actions.py @@ -1,47 +1,23 @@ ########################################################################## # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. # -# -# and other portions are under the following copyright and license: -# -# -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 OpenERP SA (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # +# See: http://www.gnu.org/licenses/lgpl.html # ############################################################################## diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/error.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/error.py index cb86f5f429a..fd2bd7d2195 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/error.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/error.py @@ -1,47 +1,23 @@ ########################################################################## # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. # -# -# and other portions are under the following copyright and license: -# -# -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 OpenERP SA (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # +# See: http://www.gnu.org/licenses/lgpl.html # ############################################################################## diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/functions.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/functions.py index 1d10f0f6a4c..4b863405a4d 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/functions.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/functions.py @@ -1,47 +1,23 @@ ########################################################################## # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. # -# -# and other portions are under the following copyright and license: -# -# -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 OpenERP SA (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # +# See: http://www.gnu.org/licenses/lgpl.html # ############################################################################## diff --git a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/gui.py b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/gui.py index d75469ca658..6c3b7d4c11d 100644 --- a/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/gui.py +++ b/addons/base_report_designer/plugin/openerp_report_designer/bin/script/lib/gui.py @@ -1,47 +1,23 @@ ########################################################################## # -# Portions of this file are under the following copyright and license: +# Copyright (c) 2003-2004 Danny Brewer d29583@groovegarden.com +# Copyright (C) 2004-2010 OpenERP SA (). # +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. # -# Copyright (c) 2003-2004 Danny Brewer -# d29583@groovegarden.com -# -# This library is free software; you can redistribute it and/or -# modify it under the terms of the GNU Lesser General Public -# License as published by the Free Software Foundation; either -# version 2.1 of the License, or (at your option) any later version. -# -# This library is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -# Lesser General Public License for more details. -# -# You should have received a copy of the GNU Lesser General Public -# License along with this library; if not, write to the Free Software -# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -# -# See: http://www.gnu.org/licenses/lgpl.html +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. # -# -# and other portions are under the following copyright and license: -# -# -# OpenERP, Open Source Management Solution>.. -# Copyright (C) 2004-2010 OpenERP SA (). -# -# This program is free software: you can redistribute it and/or modify -# it under the terms of the GNU Affero General Public License as published by -# the Free Software Foundation, either version 3 of the License, or -# (at your option) any later version. -# -# This program is distributed in the hope that it will be useful, -# but WITHOUT ANY WARRANTY; without even the implied warranty of -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -# GNU Affero General Public License for more details. -# -# You should have received a copy of the GNU Affero General Public License -# along with this program. If not, see . +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA # +# See: http://www.gnu.org/licenses/lgpl.html # ############################################################################## From 3536f6596715d08247264a10426dee359373b8bf Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Mon, 29 Apr 2013 06:04:57 +0000 Subject: [PATCH 12/13] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20130427063440-bmcyenjvm2fm94ck bzr revid: launchpad_translations_on_behalf_of_openerp-20130428054142-1k74s6tp0zv4aeu5 bzr revid: launchpad_translations_on_behalf_of_openerp-20130429060457-72jpzgm0ky022n8u --- addons/account/i18n/et.po | 16 +- addons/account/i18n/nl.po | 18 +- addons/account/i18n/tr.po | 8 +- addons/account_voucher/i18n/nl.po | 12 +- addons/account_voucher/i18n/sl.po | 7 +- addons/email_template/i18n/nl_BE.po | 494 ++++++++++++++++++++++++++ addons/fleet/i18n/tr.po | 33 +- addons/google_base_account/i18n/tr.po | 10 +- addons/l10n_multilang/i18n/hu.po | 8 +- addons/mail/i18n/tr.po | 8 +- addons/portal_sale/i18n/tr.po | 206 ++++++++++- addons/product_expiry/i18n/tr.po | 26 +- addons/project/i18n/pl.po | 12 +- addons/project/i18n/sl.po | 22 +- addons/project/i18n/tr.po | 33 +- addons/project_issue/i18n/tr.po | 103 ++++-- addons/purchase/i18n/sl.po | 12 +- addons/sale/i18n/hu.po | 16 +- addons/sale/i18n/pl.po | 8 +- addons/sale/i18n/tr.po | 6 +- addons/stock/i18n/sl.po | 20 +- addons/stock/i18n/tr.po | 6 +- 22 files changed, 938 insertions(+), 146 deletions(-) create mode 100644 addons/email_template/i18n/nl_BE.po diff --git a/addons/account/i18n/et.po b/addons/account/i18n/et.po index 4f225345481..623a0753d79 100644 --- a/addons/account/i18n/et.po +++ b/addons/account/i18n/et.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-01-20 09:01+0000\n" -"Last-Translator: Ahti Hinnov \n" +"PO-Revision-Date: 2013-04-28 09:09+0000\n" +"Last-Translator: Illimar Saatväli \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-03-28 05:22+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-04-29 06:04+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -79,7 +79,7 @@ msgstr "Impordi arvetest või maksetest" #: code:addons/account/account_move_line.py:1213 #, python-format msgid "Bad Account!" -msgstr "" +msgstr "Vigane konto!" #. module: account #: view:account.move:0 @@ -103,7 +103,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_reconciliation.xml:30 #, python-format msgid "Reconcile" -msgstr "Võrdlus" +msgstr "Võrdle" #. module: account #: field:account.bank.statement,name:0 @@ -123,8 +123,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the payment " "term without removing it." msgstr "" -"Kui aktiivne ala on väärne ( False ), siis see võimaldab teil peita/varjata " -"maksetähtaeg seda kustutamata." +"Kui aktiivne ala on väär, siis see võimaldab teil peita maksetähtaega seda " +"kustutamata." #. module: account #: code:addons/account/account.py:641 diff --git a/addons/account/i18n/nl.po b/addons/account/i18n/nl.po index ea215b2a9e8..b4425ae8f39 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-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-04-17 19:01+0000\n" +"PO-Revision-Date: 2013-04-27 19:45+0000\n" "Last-Translator: Erwin van der Ploeg (Endian 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-04-18 06:05+0000\n" -"X-Generator: Launchpad (build 16567)\n" +"X-Launchpad-Export-Date: 2013-04-28 05:41+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -1694,7 +1694,7 @@ msgstr "Aantal items" #. module: account #: field:account.automatic.reconcile,max_amount:0 msgid "Maximum write-off amount" -msgstr "Maximaal af te boeken bedrag" +msgstr "Maximaal afschrijf bedrag" #. module: account #. openerp-web @@ -3235,7 +3235,7 @@ msgstr "" #. module: account #: field:account.move.line.reconcile,writeoff:0 msgid "Write-Off amount" -msgstr "Af te boeken bedrag" +msgstr "Afschrijf bedrag" #. module: account #: field:account.bank.statement,message_unread:0 @@ -5046,7 +5046,7 @@ msgstr "Grondslag" msgid "" "You have to provide an account for the write off/exchange difference entry." msgstr "" -"U dient ene rekening op te geven voor boeken van het betaal- en/of " +"U dient een rekening op te geven voor het boeken van het betaal- en/of " "koersverschil." #. module: account @@ -6521,7 +6521,7 @@ msgstr "Rekening automatisch afletteren" #: view:account.move:0 #: view:account.move.line:0 msgid "Journal Item" -msgstr "Journaal item" +msgstr "Boeking" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close @@ -6568,7 +6568,7 @@ msgstr "Mutatienaam (id): %s (%s)" #: code:addons/account/account_move_line.py:882 #, python-format msgid "Write-Off" -msgstr "Boek af" +msgstr "Afschrijving" #. module: account #: view:account.entries.report:0 @@ -11316,7 +11316,7 @@ msgstr "Ga naar volgende relatie" #: view:account.automatic.reconcile:0 #: view:account.move.line.reconcile.writeoff:0 msgid "Write-Off Move" -msgstr "Afboekingen" +msgstr "Afschrijvingen" #. module: account #: model:process.node,note:account.process_node_paidinvoice0 diff --git a/addons/account/i18n/tr.po b/addons/account/i18n/tr.po index 4784dd9d075..1ed5a2dced8 100644 --- a/addons/account/i18n/tr.po +++ b/addons/account/i18n/tr.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-04-21 01:20+0000\n" +"PO-Revision-Date: 2013-04-28 07:29+0000\n" "Last-Translator: Ayhan KIZILTAN \n" "Language-Team: OpenERP Türkiye Yerelleştirmesi\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-23 06:09+0000\n" +"X-Launchpad-Export-Date: 2013-04-29 06:04+0000\n" "X-Generator: Launchpad (build 16580)\n" "Language: tr\n" @@ -4155,9 +4155,9 @@ msgstr "" "

\n" " OpenERP'nin elektronik faturalama özelliği müşteri " "ödemelerinin\n" -" kolay ve hızlı bir şekilde tahsil edilmesine olanak verir.\n" +" kolay ve hızlı bir şekilde tahsil edilmesine olanak sağlar.\n" " Müşterileriniz faturaları e-posta olarak alıp, online olarak " -"ödeyip \n" +"ödeyerek \n" " kendi sistemlerine aktarabilirler.\n" "

\n" " Müşterilerinizle yaptığınız mesajlaşmalar otomatik olarak " diff --git a/addons/account_voucher/i18n/nl.po b/addons/account_voucher/i18n/nl.po index 55f65275f75..1b7dad67778 100644 --- a/addons/account_voucher/i18n/nl.po +++ b/addons/account_voucher/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-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-04-12 21:26+0000\n" +"PO-Revision-Date: 2013-04-27 19:45+0000\n" "Last-Translator: Erwin van der Ploeg (Endian 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-04-13 06:31+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-04-28 05:41+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -31,7 +31,7 @@ msgstr "account.config.settings" #: code:addons/account_voucher/account_voucher.py:369 #, python-format msgid "Write-Off" -msgstr "Boek af" +msgstr "Afschrijving" #. module: account_voucher #: view:account.voucher:0 @@ -78,7 +78,7 @@ msgstr "Rekening betaling" #: view:account.statement.from.invoice.lines:0 #: model:ir.actions.act_window,name:account_voucher.action_view_account_statement_from_invoice_lines msgid "Import Entries" -msgstr "Importeer invoerregels" +msgstr "Importeer boekingen" #. module: account_voucher #: view:account.voucher:0 @@ -235,7 +235,7 @@ msgstr "Aankoopbewijs" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 msgid "Journal Item" -msgstr "Journaal item" +msgstr "Boeking" #. module: account_voucher #: code:addons/account_voucher/account_voucher.py:508 diff --git a/addons/account_voucher/i18n/sl.po b/addons/account_voucher/i18n/sl.po index 06a6a49c561..1eeafc2d843 100644 --- a/addons/account_voucher/i18n/sl.po +++ b/addons/account_voucher/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-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-04-01 12:43+0000\n" +"PO-Revision-Date: 2013-04-27 12:51+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-04-02 05:48+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-04-28 05:41+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -60,6 +60,7 @@ msgid "" "Computed as the difference between the amount stated in the voucher and the " "sum of allocation on the voucher lines." msgstr "" +"Razlika med zneskom v glavi in vsemi razporejenimi zneski na postavkah." #. module: account_voucher #: view:account.voucher:0 diff --git a/addons/email_template/i18n/nl_BE.po b/addons/email_template/i18n/nl_BE.po new file mode 100644 index 00000000000..028a2a35867 --- /dev/null +++ b/addons/email_template/i18n/nl_BE.po @@ -0,0 +1,494 @@ +# Dutch (Belgium) translation for openobject-addons +# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013 +# This file is distributed under the same license as the openobject-addons package. +# FIRST AUTHOR , 2013. +# +msgid "" +msgstr "" +"Project-Id-Version: openobject-addons\n" +"Report-Msgid-Bugs-To: FULL NAME \n" +"POT-Creation-Date: 2013-03-07 08:38+0000\n" +"PO-Revision-Date: 2013-04-26 16:28+0000\n" +"Last-Translator: FULL NAME \n" +"Language-Team: Dutch (Belgium) \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Launchpad-Export-Date: 2013-04-27 06:34+0000\n" +"X-Generator: Launchpad (build 16580)\n" + +#. module: email_template +#: field:email.template,email_from:0 +#: field:email_template.preview,email_from:0 +msgid "From" +msgstr "Van" + +#. module: email_template +#: field:mail.compose.message,template_id:0 +msgid "Template" +msgstr "Sjabloon" + +#. module: email_template +#: help:email.template,ref_ir_value:0 +#: help:email_template.preview,ref_ir_value:0 +msgid "Sidebar button to open the sidebar action" +msgstr "" + +#. module: email_template +#: field:res.partner,opt_out:0 +msgid "Opt-Out" +msgstr "Uitschrijven" + +#. module: email_template +#: view:email.template:0 +msgid "Email contents (in raw HTML format)" +msgstr "" + +#. module: email_template +#: field:email.template,email_to:0 +#: field:email_template.preview,email_to:0 +msgid "To (Emails)" +msgstr "Naar (E-mails)" + +#. module: email_template +#: field:email.template,mail_server_id:0 +#: field:email_template.preview,mail_server_id:0 +msgid "Outgoing Mail Server" +msgstr "Uitgaande mailserver" + +#. module: email_template +#: help:email.template,ref_ir_act_window:0 +#: help:email_template.preview,ref_ir_act_window:0 +msgid "" +"Sidebar action to make this template available on records of the related " +"document model" +msgstr "" + +#. module: email_template +#: field:email.template,model_object_field:0 +#: field:email_template.preview,model_object_field:0 +msgid "Field" +msgstr "Veld" + +#. module: email_template +#: help:email.template,email_from:0 +#: help:email_template.preview,email_from:0 +msgid "Sender address (placeholders may be used here)" +msgstr "" +"Adres van de afzender (variabele aanduidingen kunnen hier worden gebruikt)" + +#. module: email_template +#: view:email.template:0 +msgid "Remove context action" +msgstr "Contextactie verwijderen" + +#. module: email_template +#: help:email.template,mail_server_id:0 +#: help:email_template.preview,mail_server_id:0 +msgid "" +"Optional preferred server for outgoing mails. If not set, the highest " +"priority one will be used." +msgstr "" + +#. module: email_template +#: field:email.template,report_name:0 +#: field:email_template.preview,report_name:0 +msgid "Report Filename" +msgstr "" + +#. module: email_template +#: view:email.template:0 +msgid "Preview" +msgstr "" + +#. module: email_template +#: field:email.template,reply_to:0 +#: field:email_template.preview,reply_to:0 +msgid "Reply-To" +msgstr "" + +#. module: email_template +#: view:mail.compose.message:0 +msgid "Use template" +msgstr "" + +#. module: email_template +#: field:email.template,body_html:0 +#: field:email_template.preview,body_html:0 +msgid "Body" +msgstr "" + +#. module: email_template +#: code:addons/email_template/email_template.py:244 +#, python-format +msgid "%s (copy)" +msgstr "" + +#. module: email_template +#: help:email.template,user_signature:0 +#: help:email_template.preview,user_signature:0 +msgid "" +"If checked, the user's signature will be appended to the text version of the " +"message" +msgstr "" + +#. module: email_template +#: view:email.template:0 +msgid "SMTP Server" +msgstr "" + +#. module: email_template +#: view:mail.compose.message:0 +msgid "Save as new template" +msgstr "" + +#. module: email_template +#: help:email.template,sub_object:0 +#: help:email_template.preview,sub_object:0 +msgid "" +"When a relationship field is selected as first field, this field shows the " +"document model the relationship goes to." +msgstr "" + +#. module: email_template +#: model:ir.model,name:email_template.model_email_template +msgid "Email Templates" +msgstr "" + +#. module: email_template +#: help:email.template,report_name:0 +#: help:email_template.preview,report_name:0 +msgid "" +"Name to use for the generated report file (may contain placeholders)\n" +"The extension can be omitted and will then come from the report type." +msgstr "" + +#. module: email_template +#: field:email.template,ref_ir_act_window:0 +#: field:email_template.preview,ref_ir_act_window:0 +msgid "Sidebar action" +msgstr "" + +#. module: email_template +#: help:email.template,lang:0 +#: help:email_template.preview,lang:0 +msgid "" +"Optional translation language (ISO code) to select when sending out an " +"email. If not set, the english version will be used. This should usually be " +"a placeholder expression that provides the appropriate language code, e.g. " +"${object.partner_id.lang.code}." +msgstr "" + +#. module: email_template +#: field:email_template.preview,res_id:0 +msgid "Sample Document" +msgstr "" + +#. module: email_template +#: help:email.template,model_object_field:0 +#: help:email_template.preview,model_object_field:0 +msgid "" +"Select target field from the related document model.\n" +"If it is a relationship field you will be able to select a target field at " +"the destination of the relationship." +msgstr "" + +#. module: email_template +#: view:email.template:0 +msgid "Dynamic Value Builder" +msgstr "" + +#. module: email_template +#: model:ir.actions.act_window,name:email_template.wizard_email_template_preview +msgid "Template Preview" +msgstr "" + +#. module: email_template +#: view:mail.compose.message:0 +msgid "Save as a new template" +msgstr "" + +#. module: email_template +#: view:email.template:0 +msgid "" +"Display an option on related documents to open a composition wizard with " +"this template" +msgstr "" + +#. module: email_template +#: help:email.template,email_cc:0 +#: help:email_template.preview,email_cc:0 +msgid "Carbon copy recipients (placeholders may be used here)" +msgstr "" + +#. module: email_template +#: help:email.template,email_to:0 +#: help:email_template.preview,email_to:0 +msgid "Comma-separated recipient addresses (placeholders may be used here)" +msgstr "" + +#. module: email_template +#: view:email.template:0 +msgid "Advanced" +msgstr "" + +#. module: email_template +#: view:email_template.preview:0 +msgid "Preview of" +msgstr "" + +#. module: email_template +#: view:email_template.preview:0 +msgid "Using sample document" +msgstr "" + +#. module: email_template +#: view:email.template:0 +#: model:ir.actions.act_window,name:email_template.action_email_template_tree_all +#: model:ir.ui.menu,name:email_template.menu_email_templates +msgid "Templates" +msgstr "" + +#. module: email_template +#: field:email.template,name:0 +#: field:email_template.preview,name:0 +msgid "Name" +msgstr "" + +#. module: email_template +#: field:email.template,lang:0 +#: field:email_template.preview,lang:0 +msgid "Language" +msgstr "" + +#. module: email_template +#: model:ir.model,name:email_template.model_email_template_preview +msgid "Email Template Preview" +msgstr "" + +#. module: email_template +#: view:email_template.preview:0 +msgid "Email Preview" +msgstr "" + +#. module: email_template +#: view:email.template:0 +msgid "" +"Remove the contextual action to use this template on related documents" +msgstr "" + +#. module: email_template +#: field:email.template,copyvalue:0 +#: field:email_template.preview,copyvalue:0 +msgid "Placeholder Expression" +msgstr "" + +#. module: email_template +#: field:email.template,sub_object:0 +#: field:email_template.preview,sub_object:0 +msgid "Sub-model" +msgstr "" + +#. module: email_template +#: help:email.template,subject:0 +#: help:email_template.preview,subject:0 +msgid "Subject (placeholders may be used here)" +msgstr "" + +#. module: email_template +#: help:email.template,reply_to:0 +#: help:email_template.preview,reply_to:0 +msgid "Preferred response address (placeholders may be used here)" +msgstr "" + +#. module: email_template +#: field:email.template,ref_ir_value:0 +#: field:email_template.preview,ref_ir_value:0 +msgid "Sidebar Button" +msgstr "" + +#. module: email_template +#: field:email.template,report_template:0 +#: field:email_template.preview,report_template:0 +msgid "Optional report to print and attach" +msgstr "" + +#. module: email_template +#: help:email.template,null_value:0 +#: help:email_template.preview,null_value:0 +msgid "Optional value to use if the target field is empty" +msgstr "" + +#. module: email_template +#: view:email.template:0 +msgid "Model" +msgstr "" + +#. module: email_template +#: model:ir.model,name:email_template.model_mail_compose_message +msgid "Email composition wizard" +msgstr "" + +#. module: email_template +#: view:email.template:0 +msgid "Add context action" +msgstr "" + +#. module: email_template +#: help:email.template,model_id:0 +#: help:email_template.preview,model_id:0 +msgid "The kind of document with with this template can be used" +msgstr "" + +#. module: email_template +#: field:email.template,email_recipients:0 +#: field:email_template.preview,email_recipients:0 +msgid "To (Partners)" +msgstr "" + +#. module: email_template +#: field:email.template,auto_delete:0 +#: field:email_template.preview,auto_delete:0 +msgid "Auto Delete" +msgstr "" + +#. module: email_template +#: help:email.template,copyvalue:0 +#: help:email_template.preview,copyvalue:0 +msgid "" +"Final placeholder expression, to be copy-pasted in the desired template " +"field." +msgstr "" + +#. module: email_template +#: field:email.template,model:0 +#: field:email_template.preview,model:0 +msgid "Related Document Model" +msgstr "" + +#. module: email_template +#: view:email.template:0 +msgid "Addressing" +msgstr "" + +#. module: email_template +#: help:email.template,email_recipients:0 +#: help:email_template.preview,email_recipients:0 +msgid "" +"Comma-separated ids of recipient partners (placeholders may be used here)" +msgstr "" + +#. module: email_template +#: field:email.template,attachment_ids:0 +#: field:email_template.preview,attachment_ids:0 +msgid "Attachments" +msgstr "" + +#. module: email_template +#: code:addons/email_template/email_template.py:231 +#, python-format +msgid "Deletion of the action record failed." +msgstr "" + +#. module: email_template +#: field:email.template,email_cc:0 +#: field:email_template.preview,email_cc:0 +msgid "Cc" +msgstr "" + +#. module: email_template +#: field:email.template,model_id:0 +#: field:email_template.preview,model_id:0 +msgid "Applies to" +msgstr "" + +#. module: email_template +#: field:email.template,sub_model_object_field:0 +#: field:email_template.preview,sub_model_object_field:0 +msgid "Sub-field" +msgstr "" + +#. module: email_template +#: view:email.template:0 +msgid "Email Details" +msgstr "" + +#. module: email_template +#: code:addons/email_template/email_template.py:196 +#, python-format +msgid "Send Mail (%s)" +msgstr "" + +#. module: email_template +#: help:res.partner,opt_out:0 +msgid "" +"If checked, this partner will not receive any automated email notifications, " +"such as the availability of invoices." +msgstr "" + +#. module: email_template +#: help:email.template,auto_delete:0 +#: help:email_template.preview,auto_delete:0 +msgid "Permanently delete this email after sending it, to save space" +msgstr "" + +#. module: email_template +#: view:email.template:0 +msgid "Group by..." +msgstr "" + +#. module: email_template +#: help:email.template,sub_model_object_field:0 +#: help:email_template.preview,sub_model_object_field:0 +msgid "" +"When a relationship field is selected as first field, this field lets you " +"select the target field within the destination document model (sub-model)." +msgstr "" + +#. module: email_template +#: code:addons/email_template/email_template.py:231 +#, python-format +msgid "Warning" +msgstr "" + +#. module: email_template +#: field:email.template,user_signature:0 +#: field:email_template.preview,user_signature:0 +msgid "Add Signature" +msgstr "" + +#. module: email_template +#: model:ir.model,name:email_template.model_res_partner +msgid "Partner" +msgstr "" + +#. module: email_template +#: field:email.template,null_value:0 +#: field:email_template.preview,null_value:0 +msgid "Default Value" +msgstr "" + +#. module: email_template +#: help:email.template,attachment_ids:0 +#: help:email_template.preview,attachment_ids:0 +msgid "" +"You may attach files to this template, to be added to all emails created " +"from this template" +msgstr "" + +#. module: email_template +#: help:email.template,body_html:0 +#: help:email_template.preview,body_html:0 +msgid "Rich-text/HTML version of the message (placeholders may be used here)" +msgstr "" + +#. module: email_template +#: view:email.template:0 +msgid "Contents" +msgstr "" + +#. module: email_template +#: field:email.template,subject:0 +#: field:email_template.preview,subject:0 +msgid "Subject" +msgstr "" diff --git a/addons/fleet/i18n/tr.po b/addons/fleet/i18n/tr.po index fe2f1be9f49..c545422218f 100644 --- a/addons/fleet/i18n/tr.po +++ b/addons/fleet/i18n/tr.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-03-07 08:39+0000\n" -"PO-Revision-Date: 2013-04-16 19:13+0000\n" +"PO-Revision-Date: 2013-04-26 19:36+0000\n" "Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-17 05:57+0000\n" -"X-Generator: Launchpad (build 16567)\n" +"X-Launchpad-Export-Date: 2013-04-27 06:34+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 @@ -1236,6 +1236,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Yeni bir araç eklemek için tıklayın. \n" +"

\n" +" Filonuzu her araçla ilgili sözleşmelerin, hizmetlerin, " +"sabit\n" +" ve yinelenen maliyetlerin, odyometrelerin ve yakıt " +"fişlerinin\n" +" kayıtlarını tutarak yönetebileceksiniz.\n" +"

\n" +" OpenERP sözleşmelerinizin ve hizmetlerinizin yenilenmesi\n" +" gerektiğinde sizi uyaracaktır.\n" +"

\n" +" " #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_13 @@ -1270,6 +1283,20 @@ msgid "" " \n" " " msgstr "" +"
\n" +"

\n" +" Filo panosu boştur.\n" +"

\n" +" İlk raporunuzu bu panoya eklemek için, herhangi bir\n" +" menüye gidin, liste ya da grafik görünümüne geçin ve\n" +" ve genişletilmiş arama seçeneklerinde 'Panoya\n" +" Ekle' ye tıklayın.\n" +"

\n" +" Arama seçeneklerini kullanarak, panoya eklemeden\n" +" önce verileri süzebilir ve gruplandırabilirsiniz.\n" +"

\n" +"
\n" +" " #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_12 diff --git a/addons/google_base_account/i18n/tr.po b/addons/google_base_account/i18n/tr.po index 8d053826b04..d807c592852 100644 --- a/addons/google_base_account/i18n/tr.po +++ b/addons/google_base_account/i18n/tr.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-03-07 08:38+0000\n" -"PO-Revision-Date: 2013-02-06 23:02+0000\n" -"Last-Translator: Ahmet Altınışık \n" +"PO-Revision-Date: 2013-04-26 19:28+0000\n" +"Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-28 05:39+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-04-27 06:34+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: google_base_account #: field:res.users,gmail_user:0 @@ -78,7 +78,7 @@ msgstr "Kimlik doğrulama hatası. Kullanıcı adı ve şifreyi kontrol edin." #. module: google_base_account #: view:google.login:0 msgid "e.g. user@gmail.com" -msgstr "" +msgstr "örn. kullanici@gmail.com" #. module: google_base_account #: code:addons/google_base_account/wizard/google_login.py:29 diff --git a/addons/l10n_multilang/i18n/hu.po b/addons/l10n_multilang/i18n/hu.po index 8bff81b755c..e9d0176893a 100644 --- a/addons/l10n_multilang/i18n/hu.po +++ b/addons/l10n_multilang/i18n/hu.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-02-08 01:06+0000\n" -"PO-Revision-Date: 2013-02-28 07:37+0000\n" +"PO-Revision-Date: 2013-04-26 13:29+0000\n" "Last-Translator: krnkris \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-28 05:47+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-04-27 06:34+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template @@ -149,7 +149,7 @@ msgstr "A napló kódjának egyedinek kell lennie mindegyik vállalathoz!" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position msgid "Fiscal Position" -msgstr "Költségvetési pozíció" +msgstr "ÁFA pozíció" #. module: l10n_multilang #: constraint:account.account:0 diff --git a/addons/mail/i18n/tr.po b/addons/mail/i18n/tr.po index 59009e7af48..6a76f4b58a1 100644 --- a/addons/mail/i18n/tr.po +++ b/addons/mail/i18n/tr.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-04-13 18:07+0000\n" +"PO-Revision-Date: 2013-04-26 19:11+0000\n" "Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-14 05:50+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-04-27 06:34+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: mail #: view:mail.followers:0 @@ -396,7 +396,7 @@ msgstr "Orta boyutlu fotoğraf" #: model:ir.actions.client,name:mail.action_mail_to_me_feeds #: model:ir.ui.menu,name:mail.mail_tomefeeds msgid "To: me" -msgstr "Kime:" +msgstr "Kime: bana" #. module: mail #: field:mail.message.subtype,name:0 diff --git a/addons/portal_sale/i18n/tr.po b/addons/portal_sale/i18n/tr.po index 520cee3afa9..99bad7df000 100644 --- a/addons/portal_sale/i18n/tr.po +++ b/addons/portal_sale/i18n/tr.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-03-07 08:38+0000\n" -"PO-Revision-Date: 2013-04-07 19:44+0000\n" +"PO-Revision-Date: 2013-04-27 15:57+0000\n" "Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-08 06:20+0000\n" -"X-Generator: Launchpad (build 16550)\n" +"X-Launchpad-Export-Date: 2013-04-28 05:41+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: portal_sale #: model:ir.model,name:portal_sale.model_account_config_settings @@ -187,6 +187,109 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Sayın ${object.partner_id.name},

\n" +" \n" +"

${object.company_id.name} firmasından istemiş olduğunuz " +"${object.state in ('draft', 'sent') and 'quotation' or 'order confirmation'} " +"aşağıdadır :

\n" +"\n" +"

\n" +"   REFERENCES
\n" +"   Sipariş Numarası: ${object.name}
\n" +"   Sipariş toplamı: ${object.amount_total} " +"${object.pricelist_id.currency_id.name}
\n" +"   Sipariş tarihi: ${object.date_order}
\n" +" % if object.origin:\n" +"   Sipariş referansı: ${object.origin}
\n" +" % endif\n" +" % if object.client_order_ref:\n" +"   Referansınız: ${object.client_order_ref}
\n" +" % endif\n" +" % if object.user_id:\n" +"   İlgiliniz: ${object.user_id.name}\n" +" % endif\n" +"

\n" +"\n" +" <% set signup_url = object.get_signup_url() %>\n" +" % if signup_url:\n" +"

\n" +" Müşteri Portalımızdan bu belgeye erişebilir ve çevrimiçi ödeme " +"yapabilirsiniz:\n" +"

\n" +" View ${object.state in ('draft', 'sent') " +"and 'Quotation' or 'Order'}\n" +" % endif\n" +"\n" +" % if object.paypal_url:\n" +"
\n" +"

Paypal ile doğrudan da ödeme yapabilirsiniz:

\n" +" \n" +" \n" +" \n" +" % endif\n" +"\n" +"
\n" +"

Herhangi bir sorunuz olursa bize danışmakta tereddüt etmeyiniz.

\n" +"

Firmamız ${object.company_id.name or 'us'}ni seçtiğiniz için teşekkür " +"ederiz!

\n" +"
\n" +"
\n" +"
\n" +"

\n" +" ${object.company_id.name}

\n" +"
\n" +"
\n" +" \n" +" % if object.company_id.street:\n" +" ${object.company_id.street}
\n" +" % endif\n" +" % if object.company_id.street2:\n" +" ${object.company_id.street2}
\n" +" % endif\n" +" % if object.company_id.city or object.company_id.zip:\n" +" ${object.company_id.zip} ${object.company_id.city}
\n" +" % endif\n" +" % if object.company_id.country_id:\n" +" ${object.company_id.state_id and ('%s, ' % " +"object.company_id.state_id.name) or ''} ${object.company_id.country_id.name " +"or ''}
\n" +" % endif\n" +"
\n" +" % if object.company_id.phone:\n" +"
\n" +" Phone:  ${object.company_id.phone}\n" +"
\n" +" % endif\n" +" % if object.company_id.website:\n" +"
\n" +" Web : ${object.company_id.website}\n" +"
\n" +" % endif\n" +"

\n" +"
\n" +"
\n" +" " #. module: portal_sale #: model:email.template,report_name:portal_sale.email_template_edi_invoice @@ -345,6 +448,103 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Sayın ${object.partner_id.name},

\n" +"\n" +"

Yeni bir faturanız bulunmaktadır:

\n" +" \n" +"

\n" +"   REFERENCES
\n" +"   Fatura numarası: ${object.number}
\n" +"   Fatura toplamı: ${object.amount_total} " +"${object.currency_id.name}
\n" +"   Fatura tarihi: ${object.date_invoice}
\n" +" % if object.origin:\n" +"   Fatura referansı: ${object.origin}
\n" +" % endif\n" +" % if object.user_id:\n" +"   İlgiliniz: ${object.user_id.name}\n" +" % endif\n" +"

\n" +"\n" +" <% set signup_url = object.get_signup_url() %>\n" +" % if signup_url:\n" +"

\n" +" Müşteri Portalımızdan faturanıza erişebilir ve çevrimiçi ödeme " +"yapabilirsiniz:\n" +"

\n" +" Faturayı göster\n" +" % endif\n" +" \n" +" % if object.paypal_url:\n" +"
\n" +"

Paypal ile doğrudan da ödeme yapabilirsiniz:

\n" +" \n" +" \n" +" \n" +" % endif\n" +" \n" +"
\n" +"

Herhangi bir sorunuz olursa bize danışmakta tereddüt etmeyiniz.

\n" +"

Firmamız ${object.company_id.name or 'us'}ni seçtiğiniz için teşekkür " +"ederiz!

\n" +"
\n" +"
\n" +"
\n" +"

\n" +" ${object.company_id.name}

\n" +"
\n" +"
\n" +" \n" +" % if object.company_id.street:\n" +" ${object.company_id.street}
\n" +" % endif\n" +" % if object.company_id.street2:\n" +" ${object.company_id.street2}
\n" +" % endif\n" +" % if object.company_id.city or object.company_id.zip:\n" +" ${object.company_id.zip} ${object.company_id.city}
\n" +" % endif\n" +" % if object.company_id.country_id:\n" +" ${object.company_id.state_id and ('%s, ' % " +"object.company_id.state_id.name) or ''} ${object.company_id.country_id.name " +"or ''}
\n" +" % endif\n" +"
\n" +" % if object.company_id.phone:\n" +"
\n" +" Phone:  ${object.company_id.phone}\n" +"
\n" +" % endif\n" +" % if object.company_id.website:\n" +"
\n" +" Web : ${object.company_id.website}\n" +"
\n" +" % endif\n" +"

\n" +"
\n" +"
\n" +" " #. module: portal_sale #: model:ir.actions.act_window,help:portal_sale.action_orders_portal diff --git a/addons/product_expiry/i18n/tr.po b/addons/product_expiry/i18n/tr.po index bb38164a634..6da1675acde 100644 --- a/addons/product_expiry/i18n/tr.po +++ b/addons/product_expiry/i18n/tr.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-03-07 08:38+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-04-27 16:09+0000\n" +"Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-28 05:55+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-04-28 05:41+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: product_expiry #: model:product.template,name:product_expiry.product_product_from_product_template @@ -37,7 +37,7 @@ msgstr "Ürünün ömrü" msgid "" "This is the date on which the goods with this Serial Number should be " "removed from the stock." -msgstr "" +msgstr "Bu Seri Numaralı malların stoktan kaldırılması gereken tarihtir." #. module: product_expiry #: help:product.product,removal_time:0 @@ -45,6 +45,8 @@ msgid "" "When a new a Serial Number is issued, this is the number of days before the " "goods should be removed from the stock." msgstr "" +"Yeni bir seri Numarası verildiğinde malların stoktan kaldırılmadan önceki " +"gerekli gün sayısıdır." #. module: product_expiry #: field:product.product,use_time:0 @@ -62,6 +64,8 @@ msgid "" "When a new a Serial Number is issued, this is the number of days before the " "goods starts deteriorating, without being dangerous yet." msgstr "" +"Yeni bir Seri Numarası verildiğinde malların bozulmaya başlamasından önceki, " +"henüz tehlikeli değilken, gerekli gün sayısıdır." #. module: product_expiry #: field:product.product,removal_time:0 @@ -73,12 +77,12 @@ msgstr "Ürün Kaldırma Süresi" msgid "" "This is the date on which an alert should be notified about the goods with " "this Serial Number." -msgstr "" +msgstr "Bu Seri Numaralı mallar için uyarı verilmesi gereken tarihtir." #. module: product_expiry #: model:ir.model,name:product_expiry.model_stock_production_lot msgid "Serial Number" -msgstr "" +msgstr "Seri Numarası" #. module: product_expiry #: help:product.product,alert_time:0 @@ -86,6 +90,8 @@ msgid "" "When a new a Serial Number is issued, this is the number of days before an " "alert should be notified." msgstr "" +"Yeni bir seri Numarası verildiğinde bir uyarı verilmeden önceki gün " +"sayısıdır." #. module: product_expiry #: field:stock.production.lot,removal_date:0 @@ -123,6 +129,8 @@ msgid "" "When a new a Serial Number is issued, this is the number of days before the " "goods may become dangerous and must not be consumed." msgstr "" +"Yeni bir seri Numarası verildiğinde malların tehlikeli olacağı ve " +"tüketilmemesi gereken duruma gelmeden önceki gün sayısıdır." #. module: product_expiry #: field:stock.production.lot,alert_date:0 @@ -135,6 +143,8 @@ msgid "" "This is the date on which the goods with this Serial Number start " "deteriorating, without being dangerous yet." msgstr "" +"Bu Seri Numaralı malların bozulmaya başlamasından önceki, henüz tehlikeli " +"değilken, gerekli tarihtir." #. module: product_expiry #: help:stock.production.lot,life_date:0 @@ -142,6 +152,8 @@ msgid "" "This is the date on which the goods with this Serial Number may become " "dangerous and must not be consumed." msgstr "" +"Bu Seri Numaralı malların tehlikeli olacağı ve tüketilmemesi gereken " +"durumdaki tarihtir." #. module: product_expiry #: field:product.product,alert_time:0 diff --git a/addons/project/i18n/pl.po b/addons/project/i18n/pl.po index 286d2766373..62338f50f25 100644 --- a/addons/project/i18n/pl.po +++ b/addons/project/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-03-07 08:37+0000\n" -"PO-Revision-Date: 2012-12-21 23:00+0000\n" -"Last-Translator: FULL NAME \n" +"PO-Revision-Date: 2013-04-26 19:03+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-03-28 05:56+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-04-27 06:34+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: project #: view:project.project:0 @@ -124,7 +124,7 @@ msgstr "Konto analityczne" #. module: project #: field:project.config.settings,group_time_work_estimation_tasks:0 msgid "Manage time estimation on tasks" -msgstr "Szacowanie czas zadań" +msgstr "Szacowanie czasu zadań" #. module: project #: help:project.project,message_summary:0 @@ -2031,7 +2031,7 @@ msgstr "Stan Kanban" #. module: project #: field:project.config.settings,module_project_timesheet:0 msgid "Record timesheet lines per tasks" -msgstr "Rejestruj pozycje karto czasu pracy na zadania" +msgstr "Rejestruj pozycje kart czasu pracy wg zadań" #. module: project #: model:ir.model,name:project.model_report_project_task_user diff --git a/addons/project/i18n/sl.po b/addons/project/i18n/sl.po index 7f7620e5ee4..73f3fa1e5c1 100644 --- a/addons/project/i18n/sl.po +++ b/addons/project/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-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-04-09 15:55+0000\n" +"PO-Revision-Date: 2013-04-27 09:06+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-04-10 05:54+0000\n" -"X-Generator: Launchpad (build 16550)\n" +"X-Launchpad-Export-Date: 2013-04-28 05:41+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: project #: view:project.project:0 @@ -1239,6 +1239,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Nova faza\n" +"

\n" +" " #. module: project #: help:project.task,total_hours:0 @@ -1429,7 +1433,7 @@ msgstr "" msgid "" "Computed as difference between planned hours by the project manager and the " "total hours of the task." -msgstr "" +msgstr "Razlika med načrtovanimi in dejanskimi urami." #. module: project #: view:project.config.settings:0 @@ -1482,7 +1486,7 @@ msgstr "Odpri" #. module: project #: field:project.project,privacy_visibility:0 msgid "Privacy / Visibility" -msgstr "" +msgstr "Zasebno/Javno" #. module: project #: view:project.task:0 @@ -1619,7 +1623,7 @@ msgstr "Potrebne ure za zaključek naloge" msgid "" "This stage is not visible, for example in status bar or kanban view, when " "there are no records in that stage to display." -msgstr "" +msgstr "Ta faza ni vidna v pregledih, če v njej ni nalog." #. module: project #: view:project.task:0 @@ -1952,7 +1956,7 @@ msgstr "" #. module: project #: help:project.task.delegate,planned_hours:0 msgid "Estimated time to close this task by the delegated user" -msgstr "" +msgstr "Predvideni čas do zaključka delegirane naloge." #. module: project #: model:project.category,name:project.project_category_03 @@ -2091,7 +2095,7 @@ msgstr "Maj" msgid "" "If you check this field, this stage will be proposed by default on each new " "project. It will not assign this stage to existing projects." -msgstr "" +msgstr "Če označite, bo ta faza uporabljena na novih projektih." #. module: project #: field:project.task,partner_id:0 @@ -2178,7 +2182,7 @@ msgstr "Delo na nalogi" msgid "" "Estimated time for you to validate the work done by the user to whom you " "delegate this task" -msgstr "" +msgstr "Predviden čas za pregled opravljene , delegirane naloge." #. module: project #: view:report.project.task.user:0 diff --git a/addons/project/i18n/tr.po b/addons/project/i18n/tr.po index c4d09b1cb4c..039da46afbb 100644 --- a/addons/project/i18n/tr.po +++ b/addons/project/i18n/tr.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-04-18 19:25+0000\n" +"PO-Revision-Date: 2013-04-28 07:41+0000\n" "Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-19 06:17+0000\n" -"X-Generator: Launchpad (build 16567)\n" +"X-Launchpad-Export-Date: 2013-04-29 06:04+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: project #: view:project.project:0 @@ -114,7 +114,7 @@ msgstr "Yanlış" #. module: project #: model:project.task.type,name:project.project_tt_testing msgid "Testing" -msgstr "Sınanıyor" +msgstr "Deneniyor" #. module: project #: model:ir.model,name:project.model_account_analytic_account @@ -688,14 +688,18 @@ msgstr "" " Yeni bir proje başlatmak için tıklayın.\n" "

\n" " Projeler etkinliklerinizi düzenlemek için kullanılır; " -"planı \n" -" görevleri, sorunları izleme, fatura çizelgeleri. Sen " -"tanımlayabilirsiniz\n" -" dahili projeler (R&D, Satış Sürecini geliştirin),\n" -" özel projeler (My Todos)veya bir müşteri ile.\n" +"görevler \n" +" planlayın, sorunları izleyin, zaman çizelgelerini " +"faturalayın. İç\n" +" projeler (R&D, Satış Sürecini Geliştirin), özel " +"projeler\n" +" (Yapacaklarım) ya da müşteri projeleri " +"tanımlayabilirsiniz.\n" "

\n" -" dahili kullanıcıların ile işbirliği mümkün olacak\n" -" müşterilerini proje veya faaliyetleri paylaşmaya davetet.\n" +" Projelerde iç kullanıcılar ile işbirliği yapabilirsiniz ya " +"da\n" +" etkinliklerinizi paylaşmak üzere müşterilerinizi davet " +"edebilirsiniz.\n" "

\n" " " @@ -1612,6 +1616,9 @@ msgid "" "boolean 'active' field: if the task is linked to a template or unactivated " "project, it will be hidden unless specifically asked." msgstr "" +"Bu alan otomatik olarak hesaplanır ve mantıksal 'etkin' alanı ile aynı " +"davranışı gösterir: eğer görev bir şablona ya da etkin olmayan bir projeye " +"bağlantılı ise özellikle sorulana kadar gizlenecektir." #. module: project #: model:res.request.link,name:project.req_link_task @@ -1631,6 +1638,10 @@ msgid "" " (by default, http://ietherpad.com/).\n" " This installs the module pad." msgstr "" +"Şirketin hangi Ped kurulumunun yeni pedlere bağlantılanmasını " +"özelleştirmesini sağlar\n" +" (varsayılan olarak, http://ietherpad.com/).\n" +" Bu, pad modülünü kurara." #. module: project #: field:project.task,id:0 diff --git a/addons/project_issue/i18n/tr.po b/addons/project_issue/i18n/tr.po index eca36722751..2b56ac9d5b9 100644 --- a/addons/project_issue/i18n/tr.po +++ b/addons/project_issue/i18n/tr.po @@ -7,14 +7,14 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-04-13 18:18+0000\n" +"PO-Revision-Date: 2013-04-28 19:51+0000\n" "Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-14 05:50+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-04-29 06:04+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_03 @@ -27,11 +27,13 @@ msgid "" "Allows you to configure your incoming mail server, and create issues from " "incoming emails." msgstr "" +"Gelen eposta sunucunuzu yapılandırmanızı ve gelen epostalardan sorunlar " +"oluşturmanızı sağlar." #. module: project_issue #: field:project.issue.report,delay_open:0 msgid "Avg. Delay to Open" -msgstr "" +msgstr "Açmak için Gerekli Süre" #. module: project_issue #: view:project.issue:0 @@ -42,7 +44,7 @@ msgstr "Grupla İle..." #. module: project_issue #: field:project.issue,working_hours_open:0 msgid "Working Hours to Open the Issue" -msgstr "" +msgstr "Sorunun Açılması için Gerekli Çalışam Süresi" #. module: project_issue #: model:mail.message.subtype,description:project_issue.mt_issue_started @@ -85,7 +87,7 @@ msgstr "Firma" #. module: project_issue #: field:project.issue,email_cc:0 msgid "Watchers Emails" -msgstr "" +msgstr "İzleyici Epostaları" #. module: project_issue #: help:project.issue,kanban_state:0 @@ -96,21 +98,26 @@ msgid "" " * Ready for next stage indicates the issue is ready to be pulled to the " "next stage" msgstr "" +"Bir sorunun kanban durumu özel durumların sorunu etkilediğini belirtir:\n" +" * Normal, varsayılan durumdur\n" +" * Engelli, bir şeyin bu sorunla ilgili işlemleri engellediğini belirtir\n" +" * Sonraki aşama için Hazır, sorunun bir sonraki aşamaya geçirilmeye hazır " +"olduğunu belirtir" #. module: project_issue #: help:project.issue,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "İşaretliyse yeni mesajlar ilginizi gerektirir." #. module: project_issue #: help:account.analytic.account,use_issues:0 msgid "Check this field if this project manages issues" -msgstr "" +msgstr "Bu projede sorunlar yürütülüyorsa bu alanı işaretleyin" #. module: project_issue #: field:project.issue,day_open:0 msgid "Days to Open" -msgstr "" +msgstr "Açılış için Gün Sayısı" #. module: project_issue #: code:addons/project_issue/project_issue.py:473 @@ -119,22 +126,24 @@ msgid "" "You cannot escalate this issue.\n" "The relevant Project has not configured the Escalation Project!" msgstr "" +"Bu sorunu yükseltemezsiniz.\n" +"İlgili Proje Yükseltme Projesini henüz yapılandırmamıştır!" #. module: project_issue #: constraint:project.project:0 msgid "Error! You cannot assign escalation to the same project!" -msgstr "" +msgstr "Hata! Aynı projeye yükselme atayamazsınız!" #. module: project_issue #: selection:project.issue,priority:0 #: selection:project.issue.report,priority:0 msgid "Highest" -msgstr "" +msgstr "En yüksek" #. module: project_issue #: help:project.issue,inactivity_days:0 msgid "Difference in days between last action and current date" -msgstr "" +msgstr "Son işlem tarihi ve geçerli tarih arasındaki fark" #. module: project_issue #: view:project.issue.report:0 @@ -145,7 +154,7 @@ msgstr "Gün" #. module: project_issue #: field:project.issue,days_since_creation:0 msgid "Days since creation date" -msgstr "" +msgstr "Oluşturma tarihinden bugüne kadar ki gün sayısı" #. module: project_issue #: field:project.issue,task_id:0 @@ -167,7 +176,7 @@ msgstr "Mesajlar" #. module: project_issue #: field:project.issue,inactivity_days:0 msgid "Days since last action" -msgstr "" +msgstr "Son işlemden bu güne kadar ki gün sayısı" #. module: project_issue #: model:ir.model,name:project_issue.model_project_project @@ -191,6 +200,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Yeni bir sorun bildirmek için tıklayın.\n" +"

\n" +" OpenERP sorun izleyicisi, iç istekler, yazılım geliştirme " +"hataları,\n" +" müşteri şikayetleri, proje zorlukları, malzeme hataları gibi\n" +" şeyleri etkili bir şeklide yönetmenizi sağlar.\n" +"

\n" +" " #. module: project_issue #: selection:project.issue,state:0 @@ -206,7 +224,7 @@ msgstr "Özel Not" #. module: project_issue #: field:project.issue.report,date_closed:0 msgid "Date of Closing" -msgstr "" +msgstr "Kapatma için gerekli Gün sayısı" #. module: project_issue #: view:project.issue:0 @@ -221,7 +239,7 @@ msgstr "Renk İndeksi" #. module: project_issue #: field:project.issue.report,working_hours_open:0 msgid "Avg. Working Hours to Open" -msgstr "" +msgstr "Açmak için gerekli Ort. Çalışma Süresi" #. module: project_issue #: model:ir.model,name:project_issue.model_account_analytic_account @@ -234,6 +252,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 "" +"Sohbetçi özetini (mesaj sayısı, ...) barındırır. Bu özet kanban " +"görünümlerine eklenmek üzere doğrudan html biçimindedir." #. module: project_issue #: help:project.project,project_escalation_id:0 @@ -241,6 +261,8 @@ msgid "" "If any issue is escalated from the current Project, it will be listed under " "the project selected here." msgstr "" +"Geçerli Projeden herhangi bir soru yükseltilirse, burada seçilen projelerde " +"listelenecektir." #. module: project_issue #: view:project.issue:0 @@ -316,7 +338,7 @@ msgstr "Yeni" #. module: project_issue #: view:project.project:0 msgid "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" -msgstr "" +msgstr "{'invisible': [('use_tasks', '=', False),('use_issues','=',False)]}" #. module: project_issue #: field:project.issue,email_from:0 @@ -362,12 +384,12 @@ msgstr "Versiyon" #. module: project_issue #: view:project.issue:0 msgid "To Do Issues" -msgstr "" +msgstr "Yapılacak Sorunlar" #. module: project_issue #: model:ir.model,name:project_issue.model_project_issue_version msgid "project.issue.version" -msgstr "" +msgstr "project.issue.version" #. module: project_issue #: field:project.config.settings,fetchmail_issue:0 @@ -394,6 +416,10 @@ msgid "" "analyse the time required to open or close an issue, the number of email to " "exchange and the time spent on average by issues." msgstr "" +"Proje sorunlarındaki bu rapor destek ve satış sonrası hizmetlerinizin " +"kalitesini incelemenizi sağlar. Her aşamadaki sorunları izleyebilirsiniz. " +"Bir sorunu açıp kapatmak için gerekli süreyi, karşılıklı gönderilecek eposta " +"sayısını ve sorunların tükettiği süreyi inceleyebilirsiniz." #. module: project_issue #: view:project.issue:0 @@ -523,6 +549,8 @@ msgid "" "outbound emails for this record before being sent. Separate multiple email " "addresses with a comma" msgstr "" +"Bu eposta adresleri gönderilmeden önce bütün gelen ve giden epostaların CC " +"satırına eklenecektir. Birden fazla eposta adresini virgül ile ayırınız." #. module: project_issue #: selection:project.issue.report,state:0 @@ -616,6 +644,10 @@ msgid "" "the case needs to be reviewed then the status is set " "to 'Pending'." msgstr "" +"Bir durum oluşturulduğunda durum 'Taslak' olarak ayarlanır. Durum sürmekte " +"ise 'Açık' olarak ayarlanır. Durum bittiğinde, durum 'Yapıldı' olarak " +"ayarlanır. Eğer durumun incelenmesi gerekiyorsa durum 'Bekliyor' olarak " +"ayarlanır." #. module: project_issue #: field:project.issue,active:0 @@ -632,7 +664,7 @@ msgstr "Kasım" #: code:addons/project_issue/project_issue.py:492 #, python-format msgid "Customer Email" -msgstr "" +msgstr "Müşteri Epostası" #. module: project_issue #: view:project.issue.report:0 @@ -657,12 +689,12 @@ msgstr "Ocak" #. module: project_issue #: view:project.issue:0 msgid "Feature Tracker Tree" -msgstr "" +msgstr "Sonraki İzleme Ağacı" #. module: project_issue #: help:project.issue,email_from:0 msgid "These people will receive email." -msgstr "" +msgstr "Bu kişiler eposta alacaktır" #. module: project_issue #: field:project.issue,message_summary:0 @@ -743,12 +775,12 @@ msgstr "Proje Sorun" #. module: project_issue #: view:project.issue:0 msgid "Add an internal note..." -msgstr "" +msgstr "Bir iç not ekle..." #. module: project_issue #: view:project.issue:0 msgid "Cancel Issue" -msgstr "" +msgstr "Sorun İptal et" #. module: project_issue #: help:project.issue,progress:0 @@ -758,7 +790,7 @@ msgstr "Hesapla : Haracan Zaman / Toplam Süre." #. module: project_issue #: field:project.project,issue_count:0 msgid "Unclosed Issues" -msgstr "" +msgstr "Kapatılmamış Sorunlar" #. module: project_issue #: view:project.issue:0 @@ -794,12 +826,12 @@ msgstr "Sorun" #. module: project_issue #: model:project.category,name:project_issue.project_issue_category_02 msgid "PBCK" -msgstr "" +msgstr "PBCK" #. module: project_issue #: view:project.issue:0 msgid "Feature Tracker Search" -msgstr "" +msgstr "Sonraki İzleme Araması" #. module: project_issue #: view:project.issue:0 @@ -819,7 +851,7 @@ msgstr "Mayıs" #. module: project_issue #: model:ir.model,name:project_issue.model_project_config_settings msgid "project.config.settings" -msgstr "" +msgstr "project.config.settings" #. module: project_issue #: model:mail.message.subtype,name:project_issue.mt_issue_closed @@ -843,7 +875,7 @@ msgstr "Sorun Oluşturdu" #: code:addons/project_issue/project_issue.py:490 #, python-format msgid "Customer" -msgstr "" +msgstr "Müşteri" #. module: project_issue #: selection:project.issue.report,month:0 @@ -878,6 +910,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Yeni bir sürüm eklemek için tıklayın.\n" +"

\n" +" Burada, sorunlarınız üzerinde çalışacağınız ürünlerinize\n" +" farklı sürümler tanımlayın.\n" +"

\n" +" " #. module: project_issue #: help:project.issue,section_id:0 @@ -885,6 +924,8 @@ msgid "" "Sales team to which Case belongs to. Define " "Responsible user and Email account for mail gateway." msgstr "" +"Durumun ait olduğu satış takımı. Posta ağgeçidi için Sorumlu kullanıcı ve " +"Eposta hesabı tanımlayın." #. module: project_issue #: view:board.board:0 @@ -894,7 +935,7 @@ msgstr "Sorunlarım" #. module: project_issue #: help:project.issue.report,delay_open:0 msgid "Number of Days to open the project issue." -msgstr "" +msgstr "Proje sorununu açmak için gerekli Gün Sayısı." #. module: project_issue #: selection:project.issue.report,month:0 @@ -929,7 +970,7 @@ msgstr "Sorun engellendi" #. module: project_issue #: model:ir.model,name:project_issue.model_project_issue_report msgid "project.issue.report" -msgstr "" +msgstr "project.issue.report" #. module: project_issue #: help:project.issue.report,delay_close:0 diff --git a/addons/purchase/i18n/sl.po b/addons/purchase/i18n/sl.po index fbfc5e5dbc8..27108716e79 100644 --- a/addons/purchase/i18n/sl.po +++ b/addons/purchase/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-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-02-24 22:47+0000\n" +"PO-Revision-Date: 2013-04-27 12:56+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-03-28 05:58+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-04-28 05:41+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: purchase #: model:res.groups,name:purchase.group_analytic_accounting @@ -70,7 +70,7 @@ msgstr "Dan" #. module: purchase #: view:purchase.order:0 msgid "Cancel Order" -msgstr "" +msgstr "Prekliči nalog" #. module: purchase #: view:purchase.report:0 @@ -770,7 +770,7 @@ msgstr "Zahteva za ponudbo" #. module: purchase #: view:purchase.order:0 msgid "Send by Email" -msgstr "" +msgstr "Pošlji po e-pošti" #. module: purchase #: report:purchase.order:0 @@ -1307,7 +1307,7 @@ msgstr "Izdelki" #. module: purchase #: view:purchase.order:0 msgid "Terms and conditions..." -msgstr "" +msgstr "Pravila in pogoji..." #. module: purchase #: model:ir.model,name:purchase.model_stock_move diff --git a/addons/sale/i18n/hu.po b/addons/sale/i18n/hu.po index c79b5073772..6a8871ed131 100644 --- a/addons/sale/i18n/hu.po +++ b/addons/sale/i18n/hu.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-04-25 06:59+0000\n" -"Last-Translator: Krisztian Eyssen \n" +"PO-Revision-Date: 2013-04-26 13:30+0000\n" +"Last-Translator: krnkris \n" "Language-Team: Hungarian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-26 06:24+0000\n" +"X-Launchpad-Export-Date: 2013-04-27 06:34+0000\n" "X-Generator: Launchpad (build 16580)\n" #. module: sale @@ -748,7 +748,7 @@ msgstr "Összérték" #: help:account.config.settings,group_analytic_account_for_sales:0 msgid "Allows you to specify an analytic account on sales orders." msgstr "" -"Lehetővé teszi az analitikus/elemző könyvelés meghatározását a " +"Lehetővé teszi az analitikus/elemző könyvelés gyűjtőkód meghatározását a " "megrendeléseken." #. module: sale @@ -786,7 +786,7 @@ msgstr "Óra" #. module: sale #: field:res.partner,sale_order_count:0 msgid "# of Sales Order" -msgstr "# megrendelésből" +msgstr "# megrendelésszámból" #. module: sale #: help:sale.config.settings,timesheet:0 @@ -817,7 +817,7 @@ msgstr "Számlázandó" #. module: sale #: help:sale.order,partner_invoice_id:0 msgid "Invoice address for current sales order." -msgstr "Az aktuális értékesítési megbízás számlázási címe." +msgstr "Az aktuális megrendelés számlázási címe." #. module: sale #: selection:sale.order,invoice_quantity:0 @@ -844,7 +844,7 @@ msgstr "Mennyiség" #. module: sale #: report:sale.order:0 msgid "Total :" -msgstr "Bruttó ár:" +msgstr "Összesen :" #. module: sale #: view:sale.order.line:0 @@ -921,7 +921,7 @@ msgstr "Beállítási hiba!" #. module: sale #: field:account.config.settings,group_analytic_account_for_sales:0 msgid "Analytic accounting for sales" -msgstr "Analitikus/elemző könyvelés az értékesítésekhez" +msgstr "Analitikus/elemző könyvelési gyűjtőkód az értékesítésekhez" #. module: sale #: view:sale.order:0 diff --git a/addons/sale/i18n/pl.po b/addons/sale/i18n/pl.po index 07ae2faf989..248d5cbc6e9 100644 --- a/addons/sale/i18n/pl.po +++ b/addons/sale/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-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-02-23 18:47+0000\n" +"PO-Revision-Date: 2013-04-26 19:08+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-03-28 06:00+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-04-27 06:34+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: sale #: model:res.groups,name:sale.group_analytic_accounting @@ -1000,7 +1000,7 @@ msgstr "Utwórz fakturę od nowa" #. module: sale #: field:sale.config.settings,module_warning:0 msgid "Allow configuring alerts by customer or products" -msgstr "Pozwala ustawić powiadomienia dotyczące klienta lub produktół" +msgstr "Pozwala ustawić powiadomienia dotyczące klienta lub produktów" #. module: sale #: field:sale.shop,name:0 diff --git a/addons/sale/i18n/tr.po b/addons/sale/i18n/tr.po index c00d049b955..055ab382e0c 100644 --- a/addons/sale/i18n/tr.po +++ b/addons/sale/i18n/tr.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-04-24 21:14+0000\n" +"PO-Revision-Date: 2013-04-26 19:02+0000\n" "Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-25 06:06+0000\n" +"X-Launchpad-Export-Date: 2013-04-27 06:34+0000\n" "X-Generator: Launchpad (build 16580)\n" #. module: sale @@ -1849,7 +1849,7 @@ msgstr "" "
\n" "\n" -"

Hello ${object.partner_id.name},

\n" +"

Sayın ${object.partner_id.name},

\n" " \n" "

Firmamız ${object.company_id.name}nden istemiş olduğunuz " "${object.state in ('draft', 'sent') and 'quotation' or 'order confirmation'} " diff --git a/addons/stock/i18n/sl.po b/addons/stock/i18n/sl.po index 52445f6bec9..a7565fe8208 100644 --- a/addons/stock/i18n/sl.po +++ b/addons/stock/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-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-04-01 12:30+0000\n" +"PO-Revision-Date: 2013-04-27 13:04+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-04-02 05:48+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-04-28 05:41+0000\n" +"X-Generator: Launchpad (build 16580)\n" #. module: stock #: field:stock.inventory.line.split,line_exist_ids:0 @@ -2870,7 +2870,7 @@ msgstr "Zaloge po serijskih številkah" #. module: stock #: view:stock.picking:0 msgid "Cancel Transfer" -msgstr "" +msgstr "Preklic dobave" #. module: stock #: selection:report.stock.inventory,month:0 @@ -4002,7 +4002,7 @@ msgstr "" #. module: stock #: view:stock.production.lot.revision:0 msgid "Serial Number Revisions" -msgstr "" +msgstr "Revizija serijskih številk" #. module: stock #: model:ir.actions.act_window,name:stock.action_picking_tree @@ -4054,7 +4054,7 @@ msgstr "Lokacija azaloge" #: help:stock.location,scrap_location:0 msgid "" "Check this box to allow using this location to put scrapped/damaged goods." -msgstr "" +msgstr "Označite , če želite to lokacijo uporabljati za izmet." #. module: stock #: field:stock.picking,message_follower_ids:0 @@ -4238,7 +4238,7 @@ msgstr "Samodejna knjižba" #. module: stock #: field:stock.location,stock_virtual_value:0 msgid "Virtual Stock Value" -msgstr "" +msgstr "Vrednost virtualne zaloge" #. module: stock #: view:stock.picking.in:0 @@ -4345,7 +4345,7 @@ msgstr "Zadnji pričakovani datum" #: field:stock.picking.in,auto_picking:0 #: field:stock.picking.out,auto_picking:0 msgid "Auto-Picking" -msgstr "" +msgstr "Samodejni prevzem" #. module: stock #: report:stock.picking.list:0 @@ -4425,7 +4425,7 @@ msgstr "" #: code:addons/stock/product.py:96 #, python-format msgid "Specify valuation Account for Product Category: %s." -msgstr "" +msgstr "Določite konto vrednotenja za skupino izdelka:%s" #. module: stock #: help:stock.config.settings,module_claim_from_delivery:0 @@ -4708,7 +4708,7 @@ msgstr "Dostava" #. module: stock #: view:stock.fill.inventory:0 msgid "Import the current inventory" -msgstr "" +msgstr "Importieren Sie die aktuelle Währung." #. module: stock #: model:ir.actions.act_window,name:stock.action5 diff --git a/addons/stock/i18n/tr.po b/addons/stock/i18n/tr.po index 1e5da83fd8a..37718edc333 100644 --- a/addons/stock/i18n/tr.po +++ b/addons/stock/i18n/tr.po @@ -8,13 +8,13 @@ msgstr "" "Project-Id-Version: openobject-addons\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-03-07 08:37+0000\n" -"PO-Revision-Date: 2013-04-25 14:31+0000\n" +"PO-Revision-Date: 2013-04-26 18:58+0000\n" "Last-Translator: Ayhan KIZILTAN \n" "Language-Team: Turkish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-26 06:24+0000\n" +"X-Launchpad-Export-Date: 2013-04-27 06:34+0000\n" "X-Generator: Launchpad (build 16580)\n" #. module: stock @@ -5166,6 +5166,8 @@ msgid "" "By default, the pack reference is generated following the sscc standard. " "(Serial number + 1 check digit)" msgstr "" +"Varsayılan olarak, paket referansı sscc standartı izlenerek oluşturulur. " +"(Seri numarası + 1 ondalık işareti)" #. module: stock #: model:ir.model,name:stock.model_stock_inventory From 56dbd6078e24aafce61153f144934b40bcd930a3 Mon Sep 17 00:00:00 2001 From: Olivier Dony Date: Mon, 29 Apr 2013 12:54:58 +0200 Subject: [PATCH 13/13] [FIX] sale: safer inheritance of res.partner form view + no hiding of use_parent_address field The use_parent_address field is not directly related to the address type field and was not really meant to be hidden along with it. In addition, the div[@name=div_type] and the corresponding label[@for=type] were duplicated in the embedded form view inside the `child_ids` field, but that happened later in the 7.0 series. As a consequence the inherited view must not rely on the presence of the latter, since some users may install sales on top of an older version of the base views. The XPath expressions were therefore modified to match the first occurrence of these elements in the original res.partner view, and to match *only* the second occurrence in the new version of the view. This works via a dirty hack relying on the fact that the `use_parent_address` field is present in the first occurrence of the div in the original view, but not in the newer view, so the XPath expression can be made to match only *one* element in each version of the view. (Keep in mind that XPath evaluation will always return results in the order of the document being looked up, and the ORM only uses the first match. So matching both nodes was not an option.) bzr revid: odo@openerp.com-20130429105458-r89mnkx8okdxsdld --- addons/sale/res_partner_view.xml | 24 ++++++------------------ 1 file changed, 6 insertions(+), 18 deletions(-) diff --git a/addons/sale/res_partner_view.xml b/addons/sale/res_partner_view.xml index 40ac119fdee..5107f0c17af 100644 --- a/addons/sale/res_partner_view.xml +++ b/addons/sale/res_partner_view.xml @@ -69,27 +69,15 @@ False sale.group_delivery_invoice_address - + + False sale.group_delivery_invoice_address - - False - sale.group_delivery_invoice_address - - - False - sale.group_delivery_invoice_address - - - False - sale.group_delivery_invoice_address - - - False - sale.group_delivery_invoice_address - - + False sale.group_delivery_invoice_address